{
  "openapi": "3.1.0",
  "info": {
    "title": "in-co-sandbox-it-report",
    "version": "1.0"
  },
  "servers": [
    {
      "url": "https://test-api.sandbox.co.in",
      "description": "test"
    },
    {
      "url": "https://api.sandbox.co.in",
      "description": "prod"
    }
  ],
  "components": {
    "securitySchemes": {}
  },
  "security": [
    {}
  ],
  "paths": {
    "/it/reports/capital-gains/securities/domestic": {
      "post": {
        "summary": "Submit Job",
        "parameters": [
          {
            "name": "input",
            "in": "query",
            "required": true,
            "description": "Type of input file. Allowed values: tradewise_settlement or tradebook.",
            "deprecated": false,
            "schema": {
              "type": "string",
              "enum": [
                "tradebook",
                "tradewise_settlement"
              ]
            },
            "example": "tradewise_settlement"
          },
          {
            "name": "financial_year",
            "in": "query",
            "required": true,
            "description": "Financial year for which the report is generated. Use format FY 20XX-XX (e.g., FY 2024-25).",
            "deprecated": false,
            "schema": {
              "type": "string",
              "pattern": "^FY (19|20)\\d{2}-\\d{2}$",
              "default": "FY 2025-26"
            },
            "example": "FY 2025-26"
          },
          {
            "name": "x-accept-type",
            "in": "header",
            "required": false,
            "description": "Specifies the response format expected from the API. Use application/json for JSON responses or application/xlsx for Excel file downloads.",
            "deprecated": false,
            "schema": {},
            "example": "application/xlsx"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Bearer token for user-level authorization. Typically passed as Bearer {{access_token}}.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          }
        ],
        "responses": {
          "200": {
            "description": "200",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer"
                    },
                    "timestamp": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "created_at": {
                          "type": "integer"
                        },
                        "updated_at": {
                          "type": "integer"
                        },
                        "@entity": {
                          "type": "string"
                        },
                        "security_type": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string",
                          "format": "uri"
                        },
                        "status": {
                          "type": "string"
                        },
                        "job_id": {
                          "type": "string"
                        }
                      }
                    },
                    "transaction_id": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "code": 200,
                  "timestamp": 1747891175423,
                  "data": {
                    "created_at": 1747891176339,
                    "updated_at": 1747891176339,
                    "@entity": "in.co.sandbox.it.reports.tax_pnl.securities.job",
                    "security_type": "domestic",
                    "url": "https://in-co-sandbox-it-reports-tax-pnl-sec-dev.s3.ap-south-1.amazonaws.com/domestic/9c6846f0-92db-4da3-b982-1b97967c320e/workbook.input?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=EXAMPLEACCESSKEY%2F20250522%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20250522T051936Z&X-Amz-Expires=86400&X-Amz-Signature=EXAMPLE_SIGNATURE&X-Amz-SignedHeaders=host&x-amz-checksum-crc32=AAAAAA%3D%3D&x-amz-sdk-checksum-algorithm=CRC32&x-id=PutObject",
                    "status": "created",
                    "job_id": "9c6846f0-92db-4da3-b982-1b97967c320e"
                  },
                  "transaction_id": "9c6846f0-92db-4da3-b982-1b97967c320e"
                }
              }
            }
          }
        },
        "tags": [
          "tax-pnl",
          "securities",
          "domestic",
          "capital gains"
        ]
      },
      "get": {
        "summary": "Get Job",
        "parameters": [
          {
            "name": "job_id",
            "in": "query",
            "required": true,
            "description": "Unique identifier of the job whose processing status you want to fetch. Returned in the response when a tax P&L job is created.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{tax_pnl_job_id}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Bearer token for user-level authorization. Typically passed as Bearer {{access_token}}.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "transaction_id": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "string",
                      "format": "utc-millisec"
                    }
                  }
                },
                "example": {
                  "transaction_id": "f3dcdd8e-6226-4198-b0c2-a4d98b3477a7",
                  "code": 200,
                  "data": {
                    "status": "created"
                  },
                  "timestamp": "1695117924000"
                }
              }
            }
          },
          "400": {
            "description": "Invalid Param",
            "headers": {
              "Date": {
                "schema": {
                  "type": "string"
                },
                "example": "Tue, 19 Sep 2023 10:03:45 GMT"
              },
              "Content-Length": {
                "schema": {
                  "type": "integer"
                },
                "example": "60"
              },
              "Connection": {
                "schema": {
                  "type": "string"
                },
                "example": "keep-alive"
              },
              "x-amzn-RequestId": {
                "schema": {
                  "type": "string"
                },
                "example": "79005d16-9807-4898-9c96-f58f38e393fc"
              },
              "x-amzn-ErrorType": {
                "schema": {
                  "type": "string"
                },
                "example": "BadRequestException"
              },
              "x-amz-apigw-id": {
                "schema": {
                  "type": "string"
                },
                "example": "Lf7APGRMhcwFoyg="
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string",
                      "format": "style"
                    }
                  }
                },
                "example": {
                  "message": "Missing required request parameters: [job_id]"
                }
              }
            }
          }
        },
        "tags": [
          "tax-pnl",
          "securities",
          "domestic",
          "capital gains"
        ]
      }
    },
    "/it/reports/tax-pnl/securities/domestic": {
      "get": {
        "operationId": "getTaxPnlSecuritiesDomesticJob",
        "summary": "Get Job",
        "description": "Check the status of a domestic securities Tax P&L report job. Pass the job_id returned from the job creation endpoint to poll for completion status. Part of the job-based async workflow.",
        "externalDocs": {
          "description": "Job-Based API Workflow Guide",
          "url": "/guides/developer-resources/job_based_apis"
        },
        "parameters": [
          {
            "name": "job_id",
            "in": "query",
            "required": true,
            "description": "Unique identifier of the job whose processing status you want to fetch. Returned in the response when a tax P&L job is created.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{tax_pnl_job_id}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Bearer token for user-level authorization. Typically passed as Bearer {{access_token}}.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          }
        ],
        "responses": {
          "200": {
            "description": "Job status retrieved successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "transaction_id": {
                      "type": "string",
                      "description": "Unique identifier for tracking the request across systems"
                    },
                    "code": {
                      "type": "integer",
                      "description": "HTTP status code"
                    },
                    "data": {
                      "type": "object",
                      "description": "Response payload containing job status details",
                      "properties": {
                        "status": {
                          "type": "string",
                          "description": "Current processing status of the job (e.g., created, processing, completed, failed)"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "string",
                      "format": "utc-millisec",
                      "description": "Unix timestamp (in milliseconds) indicating when the server generated the response"
                    }
                  }
                },
                "example": {
                  "transaction_id": "f3dcdd8e-6226-4198-b0c2-a4d98b3477a7",
                  "code": 200,
                  "data": {
                    "status": "created"
                  },
                  "timestamp": "1695117924000"
                }
              }
            }
          },
          "400": {
            "description": "Invalid Param",
            "headers": {
              "Date": {
                "schema": {
                  "type": "string"
                },
                "example": "Tue, 19 Sep 2023 10:03:45 GMT"
              },
              "Content-Length": {
                "schema": {
                  "type": "integer"
                },
                "example": "60"
              },
              "Connection": {
                "schema": {
                  "type": "string"
                },
                "example": "keep-alive"
              },
              "x-amzn-RequestId": {
                "schema": {
                  "type": "string"
                },
                "example": "79005d16-9807-4898-9c96-f58f38e393fc"
              },
              "x-amzn-ErrorType": {
                "schema": {
                  "type": "string"
                },
                "example": "BadRequestException"
              },
              "x-amz-apigw-id": {
                "schema": {
                  "type": "string"
                },
                "example": "Lf7APGRMhcwFoyg="
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string",
                      "format": "style"
                    }
                  }
                },
                "example": {
                  "message": "Missing required request parameters: [job_id]"
                }
              }
            }
          }
        },
        "tags": [
          "tax-pnl",
          "securities",
          "domestic"
        ]
      },
      "post": {
        "operationId": "createTaxPnlSecuritiesDomesticJob",
        "summary": "Submit Job",
        "description": "Submit a job to generate a Tax P&L report for domestic securities. This endpoint initiates an asynchronous job-based workflow and returns a presigned URL for uploading the tradebook or tradewise settlement data.",
        "externalDocs": {
          "description": "Job-Based API Workflow Guide",
          "url": "/guides/developer-resources/job_based_apis"
        },
        "parameters": [
          {
            "name": "input",
            "in": "query",
            "required": true,
            "description": "Type of input file. Allowed values: tradewise_settlement or tradebook.",
            "deprecated": false,
            "schema": {
              "type": "string",
              "enum": [
                "tradebook",
                "tradewise_settlement"
              ]
            },
            "example": "tradewise_settlement"
          },
          {
            "name": "financial_year",
            "in": "query",
            "required": true,
            "description": "Financial year for which the report is generated. Use format FY 20XX-XX (e.g., FY 2024-25).",
            "deprecated": false,
            "schema": {
              "type": "string",
              "pattern": "^FY (19|20)\\d{2}-\\d{2}$",
              "default": "FY 2025-26"
            },
            "example": "FY 2025-26"
          },
          {
            "name": "x-accept-type",
            "in": "header",
            "required": true,
            "description": "Specifies the response format expected from the API. Use application/json for JSON responses or application/xlsx for Excel file downloads.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "application/xlsx"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Bearer token for user-level authorization. Typically passed as Bearer {{access_token}}.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          }
        ],
        "responses": {
          "200": {
            "description": "Job created successfully, presigned URL provided for payload upload",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer",
                      "description": "HTTP status code"
                    },
                    "timestamp": {
                      "type": "integer",
                      "description": "Unix timestamp (in milliseconds) indicating when the server generated the response"
                    },
                    "data": {
                      "type": "object",
                      "description": "Response payload containing job details and presigned URL",
                      "properties": {
                        "created_at": {
                          "type": "integer",
                          "description": "Unix timestamp (in milliseconds) when the job was created"
                        },
                        "updated_at": {
                          "type": "integer",
                          "description": "Unix timestamp (in milliseconds) when the job was last updated"
                        },
                        "@entity": {
                          "type": "string"
                        },
                        "security_type": {
                          "type": "string",
                          "description": "Type of securities being processed (domestic or international)"
                        },
                        "url": {
                          "type": "string",
                          "format": "uri",
                          "description": "Temporary AWS S3 presigned URL for uploading the tradebook workbook via HTTP PUT. Valid for 24 hours."
                        },
                        "status": {
                          "type": "string",
                          "description": "Current processing status of the job (e.g., created, processing, completed, failed)"
                        },
                        "job_id": {
                          "type": "string",
                          "description": "Unique identifier for this job. Use this to poll job status and retrieve results."
                        }
                      }
                    },
                    "transaction_id": {
                      "type": "string",
                      "description": "Unique identifier for tracking the request across systems"
                    }
                  }
                },
                "example": {
                  "code": 200,
                  "timestamp": 1747891175423,
                  "data": {
                    "created_at": 1747891176339,
                    "updated_at": 1747891176339,
                    "@entity": "in.co.sandbox.it.reports.tax_pnl.securities.job",
                    "security_type": "domestic",
                    "url": "https://in-co-sandbox-it-reports-tax-pnl-sec-dev.s3.ap-south-1.amazonaws.com/domestic/9c6846f0-92db-4da3-b982-1b97967c320e/workbook.input?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=EXAMPLEACCESSKEY%2F20250522%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20250522T051936Z&X-Amz-Expires=86400&X-Amz-Signature=EXAMPLE_SIGNATURE&X-Amz-SignedHeaders=host&x-amz-checksum-crc32=AAAAAA%3D%3D&x-amz-sdk-checksum-algorithm=CRC32&x-id=PutObject",
                    "status": "created",
                    "job_id": "9c6846f0-92db-4da3-b982-1b97967c320e"
                  },
                  "transaction_id": "9c6846f0-92db-4da3-b982-1b97967c320e"
                }
              }
            }
          }
        },
        "tags": [
          "tax-pnl",
          "securities",
          "domestic"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "@entity": {
                    "type": "string"
                  },
                  "sheets": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "@entity": {
                          "type": "string"
                        },
                        "blocks": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string"
                              },
                              "@entity": {
                                "type": "string"
                              },
                              "header": {
                                "type": "array",
                                "items": {
                                  "type": "string"
                                }
                              },
                              "rows": {
                                "type": "array",
                                "items": {
                                  "type": "array",
                                  "items": {
                                    "type": "string"
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              },
              "example": {
                "name": "tradebook_workbook",
                "@entity": "workbook",
                "sheets": [
                  {
                    "name": "stock_sheet",
                    "@entity": "sheet",
                    "blocks": [
                      {
                        "name": "stock_tradebook_table",
                        "@entity": "table",
                        "header": [
                          "trade_id",
                          "isin",
                          "symbol",
                          "is_listed",
                          "is_stt_paid",
                          "quantity",
                          "date",
                          "price",
                          "transaction_type",
                          "fmv",
                          "brokerage",
                          "clearing_charges",
                          "exchange_transaction_charges",
                          "sebi_turnover_fees",
                          "stt",
                          "stamp_duty",
                          "sgst",
                          "cgst",
                          "igst",
                          "other_transfer_expenses",
                          "label",
                          "product_type"
                        ],
                        "rows": [
                          [
                            "SUNMAQYIBRDSM4Y2TVW9",
                            "INE462A01022",
                            "BAYERCROP",
                            true,
                            true,
                            25,
                            1718582400000,
                            4203.45,
                            "buy",
                            4199.55,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "CJ1CLC4YCBFEZ4CVDNMH",
                            "INE002A01018",
                            "AJANTAPHARMA",
                            true,
                            true,
                            1590,
                            1463356800000,
                            136,
                            "buy",
                            438,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "PEB6U5ERJBDTNFSLPOI2",
                            "INE462A01022",
                            "BAYERCROP",
                            true,
                            true,
                            37,
                            1482451200000,
                            4089,
                            "buy",
                            4199.55,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "KZUG2ZMGMH4WFE2C9RMG",
                            "INE03Q201024",
                            "GLS",
                            true,
                            true,
                            50,
                            1499644800000,
                            5000,
                            "buy",
                            5500,
                            21.5,
                            22.6,
                            23.5,
                            58,
                            67,
                            21.5,
                            21.5,
                            21.5,
                            21.5,
                            21.5,
                            null,
                            "delivery"
                          ],
                          [
                            "VTHPFZ7KXVG5LMNZNBHT",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            1540,
                            1592611200000,
                            189,
                            "buy",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "YKSLVQ6HJEUROPF8Z7TL",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            435,
                            1602547200000,
                            209,
                            "buy",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "KQN4SO7YRL1T1YKS8XSO",
                            "INE01C001018",
                            "ADANIPORTS",
                            true,
                            true,
                            348,
                            1631145600000,
                            270,
                            "buy",
                            137,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "XEPL8VAO3PWPBVZRBSCE",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            200,
                            1631923200000,
                            221,
                            "buy",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "XEPL8VAO3PWPBVZRBSCE",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            85,
                            1632009600000,
                            225,
                            "buy",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "ZVQAT2PZ1RSLYWWYZTXP",
                            "INE767A01016",
                            "ADANIENT",
                            true,
                            true,
                            57,
                            1710288000000,
                            1950,
                            "buy",
                            1260,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "YYUFIXODHUCNJPZL0TB1",
                            "INE767A01016",
                            "ADANIENT",
                            true,
                            true,
                            23,
                            1745884800000,
                            2016,
                            "buy",
                            1260,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "ZR0GPABQCZJDEBAVL85E",
                            "INE462A01022",
                            "BAYERCROP",
                            true,
                            true,
                            29,
                            1746921600000,
                            4198.05,
                            "buy",
                            4199.55,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "ZDUUQFIZKFI1LPZJIGC1",
                            "INE364U01010",
                            "ADANIGREEN",
                            true,
                            true,
                            47,
                            1749340800000,
                            310,
                            "buy",
                            127,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "J9SYLEPLST8YFGPUOFCG",
                            "INE002A01018",
                            "AJANTAPHARMA",
                            true,
                            true,
                            145,
                            1749945600000,
                            578,
                            "buy",
                            438,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "KZ4XUMQL7O4OL1T0NWLW",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            140,
                            1750032000000,
                            327,
                            "buy",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "G3NSSV7XHVFUJ8BTPBIR",
                            "INE462A01022",
                            "BAYERCROP",
                            true,
                            true,
                            29,
                            1752364800000,
                            4221,
                            "buy",
                            4199.55,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "JOQYLFGNAJXEBBANLTJ9",
                            "INE364U01010",
                            "ADANIGREEN",
                            true,
                            true,
                            20,
                            1752710400000,
                            290,
                            "buy",
                            127,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "ABHV4GJO8FEWYZYYZXJ9",
                            "INE01C001018",
                            "ADANIPORTS",
                            true,
                            true,
                            20,
                            1721174400000,
                            429,
                            "buy",
                            137,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "8BARHLFV3FZVGYTSJ012",
                            "INE03Q201024",
                            "GLS",
                            true,
                            true,
                            50,
                            1752312475956,
                            5000,
                            "sell",
                            5500,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "CYX9TQSTWUYK8C9Z7BCE",
                            "INE002A01018",
                            "AJANTAPHARMA",
                            true,
                            true,
                            645,
                            1769642020179,
                            580,
                            "sell",
                            438,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "K0TMWRLU5HDBSNDITGWA",
                            "INE01C001018",
                            "ADANIPORTS",
                            true,
                            true,
                            256,
                            1748898675819,
                            409,
                            "sell",
                            137,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "NJK6VY186PT29EQOL5ZS",
                            "INE767A01016",
                            "ADANIENT",
                            true,
                            true,
                            60,
                            1773604877992,
                            2300,
                            "sell",
                            1260,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "DPB5UCBWCTWCCZQZAECT",
                            "INE767A01016",
                            "ADANIENT",
                            true,
                            true,
                            20,
                            1773830433667,
                            2456,
                            "sell",
                            1260,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "OCFAGNA9WLZOS2GPVEWY",
                            "INE364U01010",
                            "ADANIGREEN",
                            true,
                            true,
                            40,
                            1763130929850,
                            365,
                            "sell",
                            127,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "USTNCKBL23ZGYFBS1FWW",
                            "INE01C001018",
                            "ADANIPORTS",
                            true,
                            true,
                            44,
                            1774199712397,
                            418,
                            "sell",
                            137,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "G4FILRR9JSAWETX5BFEG",
                            "INE01C001018",
                            "ADANIPORTS",
                            true,
                            true,
                            58,
                            1773283556238,
                            447,
                            "sell",
                            137,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "3S1E2CVMTK3I115OG5IT",
                            "INE002A01018",
                            "AJANTAPHARMA",
                            true,
                            true,
                            900,
                            1758080507721,
                            618,
                            "sell",
                            438,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "HJWC2DJPNJV7KBYAVLMP",
                            "INE002A01018",
                            "AJANTAPHARMA",
                            true,
                            true,
                            190,
                            1747474320748,
                            689,
                            "sell",
                            438,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "8LWK9OAGZ64HKNYHYX6H",
                            "INE462A01022",
                            "BAYERCROP",
                            true,
                            true,
                            31,
                            1758132355304,
                            4217.67,
                            "sell",
                            4199.55,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "ROJM9PXLTVRGADTWZXMX",
                            "INE462A01022",
                            "BAYERCROP",
                            true,
                            true,
                            10,
                            1761069806897,
                            4228,
                            "sell",
                            4199.55,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "ROJM9PXLTVRGADTWZXMX",
                            "INE462A01022",
                            "BAYERCROP",
                            true,
                            true,
                            9,
                            1752202262858,
                            4249,
                            "sell",
                            4199.55,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "1JQ2PDASHYXZCVH6IFTC",
                            "INE462A01022",
                            "BAYERCROP",
                            true,
                            true,
                            70,
                            1774247525697,
                            4278.08,
                            "sell",
                            4199.55,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "IAVLRAW3OKLIHPD0DLKQ",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            640,
                            1751356488905,
                            265,
                            "sell",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "YHEZMWYMV85DIO52CY1B",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            110,
                            1768648883439,
                            257,
                            "sell",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "7UBKDTDSUWJEWXI71MB5",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            250,
                            1744248500579,
                            317,
                            "sell",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "SVYLOESSMFAWL2P1V4YN",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            260,
                            1773069853789,
                            334,
                            "sell",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "T2D14C472FNCQD8A9SEL",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            730,
                            1758219413841,
                            339,
                            "sell",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "IHQR3WDABXX5LWECAVD4",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            349,
                            1768900564083,
                            345,
                            "sell",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ],
                          [
                            "ZJZZOQLJZWYQRMSHK2E3",
                            "INE00E101023",
                            "BIKAJI",
                            true,
                            true,
                            321,
                            1756389295773,
                            370,
                            "sell",
                            0,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            45.6,
                            null,
                            "delivery"
                          ]
                        ]
                      }
                    ]
                  },
                  {
                    "name": "future_sheet",
                    "@entity": "sheet",
                    "blocks": [
                      {
                        "name": "future_tradebook_table",
                        "@entity": "table",
                        "header": [
                          "trade_id",
                          "isin",
                          "contract_name",
                          "asset_class",
                          "quantity",
                          "date",
                          "price",
                          "transaction_type",
                          "brokerage",
                          "clearing_charges",
                          "exchange_transaction_charges",
                          "sebi_turnover_fees",
                          "stt",
                          "stamp_duty",
                          "sgst",
                          "cgst",
                          "igst",
                          "other_transfer_expenses",
                          "label"
                        ],
                        "rows": [
                          [
                            "GGFCHMYLKDQYZRRINTEE",
                            "INE914J01012",
                            "BANKNIFTY01Jun2023FUT",
                            "equity",
                            45,
                            1711756800000,
                            363.1,
                            "buy",
                            51,
                            98,
                            75,
                            55,
                            32,
                            219,
                            11,
                            142,
                            55,
                            36,
                            null
                          ],
                          [
                            "AUGUWEK01EI4YOIMH7RK",
                            "INE519I01013",
                            "BANKNIFTY15Jun2023FUT",
                            "equity",
                            50,
                            1714176000000,
                            363.15,
                            "buy",
                            7,
                            56,
                            55,
                            223,
                            245,
                            330,
                            106,
                            144,
                            103,
                            9,
                            null
                          ],
                          [
                            "55MCNYCUWJO7C3ZAXWIX",
                            "INE512D09106",
                            "FUTCOMCRUDEOIL16OCT2022",
                            "commodity",
                            100,
                            1727731200000,
                            415,
                            "buy",
                            107,
                            8,
                            114,
                            111,
                            90,
                            43,
                            36,
                            48,
                            119,
                            21,
                            null
                          ],
                          [
                            "JDNI9UJFKN2PGFJZ5U9O",
                            "INE579I01014",
                            "FUTCURUSDINR27JAN2023",
                            "currency",
                            135,
                            1728585600000,
                            90.69,
                            "buy",
                            134,
                            183,
                            209,
                            9,
                            100,
                            50,
                            202,
                            60,
                            140,
                            214,
                            null
                          ],
                          [
                            "5NGIOMFGDRBG5Q8XTNBP",
                            "INE512R02109",
                            "NIFTY23JAN2023FUT",
                            "equity",
                            75,
                            1728412800000,
                            147.89,
                            "buy",
                            143,
                            44,
                            39,
                            61,
                            130,
                            216,
                            102,
                            90,
                            158,
                            37,
                            null
                          ],
                          [
                            "ANH3LZISNL7R8DPFNHJ0",
                            "INE512R02109",
                            "NIFTY23JAN2023FUT",
                            "equity",
                            125,
                            1728979200000,
                            153.89,
                            "buy",
                            84,
                            60,
                            3,
                            129,
                            221,
                            239,
                            11,
                            42,
                            160,
                            8,
                            null
                          ],
                          [
                            "S4LOWQJP4P6SFB42C460",
                            "INE769A01020",
                            "FINNIFTY25JAN2023FUT",
                            "equity",
                            35,
                            1729756800000,
                            3450.67,
                            "buy",
                            23,
                            98,
                            64,
                            214,
                            268,
                            161,
                            118,
                            116,
                            9,
                            21,
                            null
                          ],
                          [
                            "Z0FCJBWODSL8GF3KKVPY",
                            "INE563D01013",
                            "NIFTY15JAN2023FUT",
                            "equity",
                            250,
                            1730620800000,
                            168,
                            "buy",
                            27,
                            73,
                            8,
                            224,
                            284,
                            306,
                            42,
                            111,
                            5,
                            17,
                            null
                          ],
                          [
                            "CIKTMLOWJQLROEGJXMFF",
                            "INE118D01016",
                            "NIFTY25JAN2023FUT",
                            "equity",
                            100,
                            1729584000000,
                            175.55,
                            "buy",
                            65,
                            76,
                            54,
                            192,
                            58,
                            74,
                            149,
                            50,
                            17,
                            20,
                            null
                          ],
                          [
                            "NKN2PS2TJZWDA9CDP1RA",
                            "INE002A01018",
                            "FINNIFTY15FEB2023FUT",
                            "equity",
                            155,
                            1730707200000,
                            194.9,
                            "buy",
                            39,
                            85,
                            72,
                            144,
                            40,
                            15,
                            16,
                            39,
                            66,
                            47,
                            null
                          ],
                          [
                            "TWF45MCZTDWEWSJXU3EF",
                            "INE0C5901014",
                            "NIFTY23FEB2023FUT",
                            "equity",
                            175,
                            1730828800000,
                            194.9,
                            "buy",
                            50,
                            107,
                            81,
                            244,
                            314,
                            247,
                            91,
                            42,
                            72,
                            44,
                            null
                          ],
                          [
                            "8LEGU2BN0HXVHXYBIIRZ",
                            "INE435D01014",
                            "BANKNIFTY20MAR2023FUT",
                            "equity",
                            125,
                            1730950400000,
                            1500,
                            "buy",
                            62,
                            53,
                            28,
                            146,
                            85,
                            446,
                            149,
                            77,
                            165,
                            22,
                            null
                          ],
                          [
                            "GB8MD1GQRMB7M3KIPYBT",
                            "INE0C5901014",
                            "NIFTY17APR2023FUT",
                            "equity",
                            145,
                            1731260800000,
                            457.89,
                            "buy",
                            131,
                            77,
                            80,
                            49,
                            161,
                            373,
                            17,
                            130,
                            77,
                            16,
                            null
                          ],
                          [
                            "GUEQKVCN1OGWGMPXO1WQ",
                            "INE322R01014",
                            "FINNIFTY20MAY2023FUT",
                            "equity",
                            130,
                            1731699200000,
                            698.03,
                            "buy",
                            85,
                            110,
                            89,
                            148,
                            121,
                            426,
                            32,
                            65,
                            22,
                            31,
                            null
                          ],
                          [
                            "JG3ZELDXI8SYG4HLXSCG",
                            "INE694N01015",
                            "RIL15OCT2023FUT",
                            "equity",
                            50,
                            1726963200000,
                            559.39,
                            "buy",
                            111,
                            42,
                            44,
                            189,
                            145,
                            307,
                            57,
                            64,
                            43,
                            28,
                            null
                          ],
                          [
                            "1HLEP1MBFH5JINCYGEJB",
                            "INE197R01010",
                            "RIL01NOV2023FUT",
                            "equity",
                            175,
                            1728000000000,
                            1000,
                            "buy",
                            72,
                            52,
                            33,
                            117,
                            71,
                            327,
                            39,
                            67,
                            132,
                            3,
                            null
                          ],
                          [
                            "YFVS53SUIXO1FBXICSP8",
                            "INE576G01015",
                            "INFY30OCT2023FUT",
                            "equity",
                            100,
                            1728518400000,
                            175,
                            "buy",
                            40,
                            81,
                            12,
                            197,
                            124,
                            314,
                            159,
                            79,
                            166,
                            3,
                            null
                          ],
                          [
                            "EGTDOZWR9NJKLHJDXYSO",
                            "INE197R01010",
                            "RIL31OCT2023FUT",
                            "equity",
                            250,
                            1728864000000,
                            186,
                            "buy",
                            150,
                            2,
                            17,
                            244,
                            29,
                            366,
                            100,
                            41,
                            15,
                            36,
                            null
                          ],
                          [
                            "JBJYWGG6VA3VFF3J7OWZ",
                            "INE512R01010",
                            "INFY25OCTFUT",
                            "equity",
                            225,
                            1729123200000,
                            180,
                            "buy",
                            69,
                            65,
                            61,
                            243,
                            278,
                            69,
                            18,
                            109,
                            55,
                            17,
                            null
                          ],
                          [
                            "52VUZC1SJ5MW4IKAJPIA",
                            "INE512D09106",
                            "FUTCOMCRUDEOIL16OCT2022",
                            "commodity",
                            25,
                            1744467694986,
                            423,
                            "sell",
                            106,
                            107,
                            78,
                            45,
                            79,
                            100,
                            14,
                            58,
                            70,
                            85,
                            null
                          ],
                          [
                            "2FPD4QFGHO2ICG3SK0KG",
                            "INE512D09106",
                            "FUTCOMCRUDEOIL16OCT2022",
                            "commodity",
                            50,
                            1728681600000,
                            456,
                            "buy",
                            80,
                            89,
                            33,
                            66,
                            61,
                            71,
                            116,
                            120,
                            55,
                            33,
                            null
                          ],
                          [
                            "XPDDDCPTROUOHFWCQH7O",
                            "INE512D09106",
                            "FUTCOMCRUDEOIL16OCT2022",
                            "commodity",
                            125,
                            1768596734295,
                            449,
                            "sell",
                            4,
                            73,
                            78,
                            84,
                            113,
                            71,
                            1,
                            75,
                            118,
                            18,
                            null
                          ],
                          [
                            "KMY2EC1UMISH0BUMIEGT",
                            "INE573G07017",
                            "FUTCOMSILVERM21Nov2022",
                            "commodity",
                            50,
                            1729632000000,
                            135,
                            "buy",
                            237,
                            56,
                            15,
                            18,
                            104,
                            15,
                            22,
                            76,
                            89,
                            112,
                            null
                          ],
                          [
                            "KMY2EC1UMISH0BUMIEGT",
                            "INE573G07017",
                            "FUTCOMSILVERM21Nov2022",
                            "commodity",
                            80,
                            1729632000000,
                            142,
                            "buy",
                            188,
                            53,
                            11,
                            89,
                            31,
                            92,
                            119,
                            77,
                            58,
                            6,
                            null
                          ],
                          [
                            "JAWOZXSLWYKHKUWGWS6L",
                            "INE573G07017",
                            "FUTCOMSILVERM21Nov2022",
                            "commodity",
                            70,
                            1771205810599,
                            148,
                            "sell",
                            77,
                            57,
                            74,
                            83,
                            42,
                            83,
                            110,
                            104,
                            60,
                            102,
                            null
                          ],
                          [
                            "JAWOZXSLWYKHKUWGWS6L",
                            "INE573G07017",
                            "FUTCOMSILVERM21Nov2022",
                            "commodity",
                            30,
                            1762268156139,
                            150,
                            "sell",
                            187,
                            112,
                            77,
                            67,
                            93,
                            19,
                            84,
                            19,
                            54,
                            47,
                            null
                          ],
                          [
                            "1AW8BG2NTK1BPSLMR0TV",
                            "INE573G07017",
                            "FUTCOMSILVERM21Nov2022",
                            "commodity",
                            140,
                            1730419200000,
                            137,
                            "buy",
                            234,
                            97,
                            29,
                            100,
                            39,
                            72,
                            49,
                            115,
                            110,
                            93,
                            null
                          ],
                          [
                            "XOUZUWMHBDCRPKRGDD1Q",
                            "INE573G07017",
                            "FUTCOMSILVERM21Nov2022",
                            "commodity",
                            80,
                            1751059490639,
                            154,
                            "sell",
                            136,
                            76,
                            35,
                            49,
                            98,
                            56,
                            75,
                            2,
                            15,
                            75,
                            null
                          ],
                          [
                            "XOUZUWMHBDCRPKRGDD1Q",
                            "INE573G07017",
                            "FUTCOMSILVERM21Nov2022",
                            "commodity",
                            20,
                            1732060800000,
                            153,
                            "buy",
                            211,
                            31,
                            34,
                            6,
                            18,
                            105,
                            104,
                            41,
                            67,
                            52,
                            null
                          ],
                          [
                            "LAGBHUZEYUH1K2OMGP49",
                            "INE573G07017",
                            "FUTCOMSILVERM21Nov2022",
                            "commodity",
                            130,
                            1746751858366,
                            156,
                            "sell",
                            110,
                            41,
                            105,
                            57,
                            47,
                            64,
                            63,
                            34,
                            46,
                            26,
                            null
                          ],
                          [
                            "GR4XEL9XWBSYPARPT0EF",
                            "INE113J07012",
                            "FUTCOMGOLD29OCT2023",
                            "commodity",
                            55,
                            1752075290423,
                            124.56,
                            "sell",
                            103,
                            48,
                            70,
                            111,
                            21,
                            40,
                            84,
                            69,
                            15,
                            16,
                            null
                          ],
                          [
                            "M5ZXEWJZFFR9DR1ECYIE",
                            "INE113J07012",
                            "FUTCOMGOLD29OCT2023",
                            "commodity",
                            55,
                            1726272000000,
                            121,
                            "buy",
                            125,
                            52,
                            36,
                            22,
                            92,
                            17,
                            67,
                            79,
                            46,
                            109,
                            null
                          ],
                          [
                            "FUWODRFMJFABB1VZGX5D",
                            "INE113J07012",
                            "FUTCOMGOLD29NOV2023",
                            "commodity",
                            85,
                            1728604800000,
                            135,
                            "buy",
                            212,
                            24,
                            78,
                            32,
                            52,
                            54,
                            7,
                            83,
                            8,
                            119,
                            null
                          ],
                          [
                            "XVFHRXHI6QWNJUUKBJ0J",
                            "INE113J07012",
                            "FUTCOMGOLD29NOV2023",
                            "commodity",
                            35,
                            1729036800000,
                            138,
                            "buy",
                            25,
                            89,
                            59,
                            114,
                            63,
                            56,
                            108,
                            2,
                            64,
                            35,
                            null
                          ],
                          [
                            "OHNNDTMWFFACP6JQ82GM",
                            "INE113J07012",
                            "FUTCOMGOLD29NOV2023",
                            "commodity",
                            90,
                            1766545293127,
                            142,
                            "sell",
                            108,
                            57,
                            19,
                            77,
                            25,
                            94,
                            115,
                            78,
                            71,
                            117,
                            null
                          ],
                          [
                            "RRCAFBZWEKTPVLYJCRB4",
                            "INE113J07012",
                            "FUTCOMGOLD29NOV2023",
                            "commodity",
                            10,
                            1767533278432,
                            149,
                            "sell",
                            130,
                            3,
                            116,
                            15,
                            41,
                            119,
                            118,
                            26,
                            76,
                            77,
                            null
                          ],
                          [
                            "JDNI9UJFKN2PGFJZ5U9O",
                            "INE579I01014",
                            "FUTCURUSDINR27JAN2023",
                            "currency",
                            145,
                            1728585600000,
                            87.45,
                            "buy",
                            212,
                            202,
                            223,
                            125,
                            116,
                            48,
                            71,
                            75,
                            100,
                            24,
                            null
                          ],
                          [
                            "4TXSMROXNCO4YKN01YBF",
                            "INE579I01014",
                            "FUTCURUSDINR27JAN2023",
                            "currency",
                            165,
                            1771973461682,
                            94.78,
                            "sell",
                            177,
                            48,
                            234,
                            38,
                            176,
                            182,
                            159,
                            80,
                            200,
                            136,
                            null
                          ],
                          [
                            "D1VHUJNJ1WGO9JVCK2AZ",
                            "INE579I01014",
                            "FUTCURUSDINR27JAN2023",
                            "currency",
                            100,
                            1753820344176,
                            45.98,
                            "sell",
                            97,
                            219,
                            153,
                            19,
                            118,
                            231,
                            228,
                            31,
                            185,
                            186,
                            null
                          ],
                          [
                            "D1VHUJNJ1WGO9JVCK2AZ",
                            "INE579I01014",
                            "FUTCURUSDINR27JAN2023",
                            "currency",
                            15,
                            1771795091847,
                            78.3,
                            "sell",
                            94,
                            93,
                            127,
                            162,
                            79,
                            232,
                            149,
                            211,
                            83,
                            6,
                            null
                          ],
                          [
                            "UVSIUTXLTZHDRHICW9C0",
                            "INE645F01015",
                            "FUTCUREURINR13MAY2023",
                            "currency",
                            50,
                            1763676835290,
                            245.78,
                            "sell",
                            46,
                            228,
                            186,
                            237,
                            75,
                            6,
                            46,
                            97,
                            203,
                            34,
                            null
                          ],
                          [
                            "V7L7EV2WB1F06YIJSHQS",
                            "INE645F01015",
                            "FUTCUREURINR13MAY2023",
                            "currency",
                            50,
                            1731174400000,
                            260.7,
                            "buy",
                            178,
                            162,
                            152,
                            207,
                            202,
                            185,
                            95,
                            232,
                            121,
                            209,
                            null
                          ],
                          [
                            "8GTJ7JADP09KTKDPFWQJ",
                            "INE645F01015",
                            "FUTCUREURINR13MAY2023",
                            "currency",
                            145,
                            1750492920896,
                            278,
                            "sell",
                            20,
                            164,
                            152,
                            121,
                            98,
                            148,
                            35,
                            194,
                            110,
                            34,
                            null
                          ],
                          [
                            "XNAQJZ3OTJFDZ2FEGVVQ",
                            "INE645F01015",
                            "FUTCUREURINR13MAY2023",
                            "currency",
                            145,
                            1711756800000,
                            289,
                            "buy",
                            25,
                            85,
                            159,
                            60,
                            145,
                            36,
                            46,
                            146,
                            237,
                            157,
                            null
                          ],
                          [
                            "NU9Y7DKWYXX1B8HUGX0G",
                            "INE714H01019",
                            "FUTCURGBPINR27OCT2023",
                            "currency",
                            75,
                            1725667200000,
                            4500,
                            "buy",
                            21,
                            179,
                            65,
                            29,
                            21,
                            92,
                            124,
                            178,
                            153,
                            12,
                            null
                          ],
                          [
                            "NU9Y7DKWYXX1B8HUGX0G",
                            "INE714H01019",
                            "FUTCURGBPINR27OCT2023",
                            "currency",
                            75,
                            1774239395461,
                            4509,
                            "sell",
                            15,
                            93,
                            151,
                            111,
                            104,
                            103,
                            55,
                            238,
                            153,
                            97,
                            null
                          ],
                          [
                            "7BN92HT8TUYNDOW29YPQ",
                            "INE714H01019",
                            "FUTCURGBPINR27OCT2023",
                            "currency",
                            113,
                            1726185600000,
                            4492.367,
                            "buy",
                            57,
                            230,
                            240,
                            67,
                            116,
                            76,
                            6,
                            3,
                            169,
                            150,
                            null
                          ],
                          [
                            "QRJDSFMYL79ULAWADZ4C",
                            "INE714H01019",
                            "FUTCURGBPINR27OCT2023",
                            "currency",
                            60,
                            1750448250099,
                            4499.876,
                            "sell",
                            145,
                            184,
                            130,
                            50,
                            35,
                            17,
                            90,
                            146,
                            149,
                            199,
                            null
                          ],
                          [
                            "FZJQJNQWOJE78OSAKILB",
                            "INE714H01019",
                            "FUTCURGBPINR27OCT2023",
                            "currency",
                            43,
                            1770416893638,
                            5008.596,
                            "sell",
                            47,
                            22,
                            47,
                            31,
                            24,
                            32,
                            128,
                            195,
                            47,
                            87,
                            null
                          ],
                          [
                            "BZAB3NIFLVXCEWLNXF0C",
                            "INE632P01025",
                            "FUTCURJPYINR24AUG2023",
                            "currency",
                            120,
                            1761818827953,
                            345.89,
                            "sell",
                            7,
                            203,
                            116,
                            18,
                            12,
                            64,
                            159,
                            151,
                            211,
                            148,
                            null
                          ],
                          [
                            "EUCWBOWYUQF5LLS2MG9P",
                            "INE632P01025",
                            "FUTCURJPYINR24AUG2023",
                            "currency",
                            80,
                            1731788800000,
                            325.67,
                            "buy",
                            44,
                            87,
                            14,
                            179,
                            169,
                            178,
                            97,
                            26,
                            72,
                            170,
                            null
                          ],
                          [
                            "EUCWBOWYUQF5LLS2MG9P",
                            "INE632P01025",
                            "FUTCURJPYINR24AUG2023",
                            "currency",
                            30,
                            1731788800000,
                            319.78,
                            "buy",
                            89,
                            205,
                            71,
                            145,
                            106,
                            166,
                            209,
                            67,
                            6,
                            124,
                            null
                          ],
                          [
                            "MUYD0KEIED2TJLMOBKEM",
                            "INE632P01025",
                            "FUTCURJPYINR24AUG2023",
                            "currency",
                            40,
                            1746531637884,
                            329.587,
                            "sell",
                            59,
                            42,
                            140,
                            65,
                            52,
                            47,
                            80,
                            128,
                            39,
                            105,
                            null
                          ],
                          [
                            "DROFW5LAACDWOCFKDQET",
                            "INE914J01012",
                            "BANKNIFTY01Jun2023FUT",
                            "equity",
                            45,
                            1758650011897,
                            450.09,
                            "sell",
                            111,
                            55,
                            14,
                            84,
                            291,
                            436,
                            146,
                            24,
                            168,
                            39,
                            null
                          ],
                          [
                            "Y9V66LWUBLF8P2I8FDAR",
                            "INE519I01013",
                            "BANKNIFTY15Jun2023FUT",
                            "equity",
                            25,
                            1754476743732,
                            469.22,
                            "sell",
                            78,
                            91,
                            80,
                            41,
                            123,
                            291,
                            83,
                            151,
                            115,
                            11,
                            null
                          ],
                          [
                            "2C7BGL8DLAEX6DMFGRTF",
                            "INE519I01013",
                            "BANKNIFTY15Jun2023FUT",
                            "equity",
                            25,
                            1768028851878,
                            425.3,
                            "sell",
                            22,
                            107,
                            62,
                            188,
                            249,
                            158,
                            117,
                            82,
                            21,
                            18,
                            null
                          ],
                          [
                            "CJLNLY40ORWJXUKGVC8E",
                            "INE894N01016",
                            "NIFTY23JAN2023FUT",
                            "equity",
                            25,
                            1770550676537,
                            135.67,
                            "sell",
                            69,
                            101,
                            25,
                            74,
                            90,
                            300,
                            128,
                            21,
                            56,
                            3,
                            null
                          ],
                          [
                            "GFHNW8Q8GH4F408UZQ0M",
                            "INE894N01017",
                            "NIFTY23JAN2023FUT",
                            "equity",
                            45,
                            1758588641252,
                            129.89,
                            "sell",
                            132,
                            88,
                            37,
                            24,
                            279,
                            212,
                            148,
                            43,
                            116,
                            26,
                            null
                          ],
                          [
                            "LL4ESNCPAINCWUTVOYKX",
                            "INE894N01018",
                            "NIFTY23JAN2023FUT",
                            "equity",
                            50,
                            1760677372383,
                            147.89,
                            "sell",
                            53,
                            67,
                            8,
                            87,
                            63,
                            171,
                            86,
                            89,
                            83,
                            9,
                            null
                          ],
                          [
                            "WI62KWVR0MYO0WXLDQ4J",
                            "INE694C01015",
                            "NIFTY23JAN2023FUT",
                            "equity",
                            80,
                            1764217116229,
                            150,
                            "sell",
                            10,
                            50,
                            68,
                            204,
                            60,
                            36,
                            24,
                            6,
                            43,
                            16,
                            null
                          ],
                          [
                            "IJPDDNJO9BNNH0TB9NPJ",
                            "INE769A01020",
                            "FINNIFTY25JAN2023FUT",
                            "equity",
                            35,
                            1769566147929,
                            2568.98,
                            "sell",
                            132,
                            85,
                            15,
                            82,
                            101,
                            10,
                            152,
                            75,
                            46,
                            11,
                            null
                          ],
                          [
                            "VLNYY0FTJTUGELL1TK8D",
                            "INE563D01013",
                            "NIFTY15JAN2023FUT",
                            "equity",
                            25,
                            1745530642634,
                            146,
                            "sell",
                            105,
                            53,
                            3,
                            114,
                            193,
                            397,
                            8,
                            2,
                            58,
                            43,
                            null
                          ],
                          [
                            "VLNYY0FTJTUGELL1TK8D",
                            "INE563D01013",
                            "NIFTY15JAN2023FUT",
                            "equity",
                            75,
                            1746317962485,
                            158,
                            "sell",
                            54,
                            105,
                            28,
                            102,
                            11,
                            64,
                            41,
                            148,
                            143,
                            3,
                            null
                          ],
                          [
                            "VY3TYTSPMWLYJQAEMGTZ",
                            "INE563D01013",
                            "NIFTY15JAN2023FUT",
                            "equity",
                            150,
                            1751020662630,
                            255,
                            "sell",
                            138,
                            32,
                            42,
                            214,
                            44,
                            13,
                            146,
                            43,
                            52,
                            35,
                            null
                          ],
                          [
                            "YQT2WZWDNZPPCRDSQFR9",
                            "INE118D01016",
                            "NIFTY25JAN2023FUT",
                            "equity",
                            100,
                            1766329920870,
                            126.78,
                            "sell",
                            18,
                            23,
                            81,
                            239,
                            107,
                            183,
                            158,
                            64,
                            137,
                            50,
                            null
                          ],
                          [
                            "9ZLDZGRMJBSSAIJTBTHN",
                            "INE002A01018",
                            "FINNIFTY15FEB2023FUT",
                            "equity",
                            155,
                            1766443698204,
                            174.55,
                            "sell",
                            130,
                            33,
                            69,
                            197,
                            298,
                            266,
                            24,
                            142,
                            9,
                            19,
                            null
                          ],
                          [
                            "RHSYRUIXEC7M4HJBK46H",
                            "INE0C5901014",
                            "NIFTY23FEB2023FUT",
                            "equity",
                            55,
                            1755563901129,
                            174.8,
                            "sell",
                            111,
                            86,
                            26,
                            17,
                            303,
                            388,
                            149,
                            16,
                            53,
                            20,
                            null
                          ],
                          [
                            "I3RI1TXUYSFLFU4N8IWZ",
                            "INE0C5901014",
                            "NIFTY23FEB2023FUT",
                            "equity",
                            120,
                            1770417584742,
                            210.89,
                            "sell",
                            115,
                            42,
                            78,
                            151,
                            292,
                            262,
                            98,
                            151,
                            37,
                            30,
                            null
                          ],
                          [
                            "BYSC5G1EPZIWIJJ6BAUB",
                            "INE435D01014",
                            "BANKNIFTY20MAR2023FUT",
                            "equity",
                            125,
                            1749233214203,
                            615.89,
                            "sell",
                            101,
                            83,
                            15,
                            219,
                            125,
                            349,
                            140,
                            154,
                            129,
                            6,
                            null
                          ],
                          [
                            "MWLF0LTSOJNEXKVXSGWN",
                            "INE0C5901014",
                            "NIFTY17APR2023FUT",
                            "equity",
                            135,
                            1762034908837,
                            489.67,
                            "sell",
                            132,
                            94,
                            74,
                            184,
                            190,
                            173,
                            30,
                            72,
                            61,
                            48,
                            null
                          ],
                          [
                            "B67GMDMHCZAHJBXKDGL0",
                            "INE322R01014",
                            "FINNIFTY20MAY2023FUT",
                            "equity",
                            120,
                            1764485109621,
                            745.32,
                            "sell",
                            150,
                            13,
                            35,
                            133,
                            133,
                            362,
                            128,
                            119,
                            83,
                            39,
                            null
                          ],
                          [
                            "DEN7PSRIFMQ0VQXZF8O8",
                            "INE694N01015",
                            "RIL15OCT2023FUT",
                            "equity",
                            50,
                            1764079239262,
                            615.35,
                            "sell",
                            99,
                            59,
                            84,
                            104,
                            322,
                            159,
                            92,
                            122,
                            136,
                            15,
                            null
                          ],
                          [
                            "GAVL50RNZDGGQSMMLKOF",
                            "INE576G01015",
                            "INFY30OCT2023FUT",
                            "equity",
                            100,
                            1749645989739,
                            145,
                            "sell",
                            50,
                            96,
                            11,
                            84,
                            204,
                            220,
                            20,
                            125,
                            146,
                            23,
                            null
                          ],
                          [
                            "BWQRBJTC2V55AFBIZPYW",
                            "INE197R01010",
                            "RIL31OCT2023FUT",
                            "equity",
                            250,
                            1749297629088,
                            199,
                            "sell",
                            89,
                            57,
                            49,
                            235,
                            303,
                            147,
                            23,
                            114,
                            11,
                            24,
                            null
                          ]
                        ]
                      }
                    ]
                  },
                  {
                    "name": "option_sheet",
                    "@entity": "sheet",
                    "blocks": [
                      {
                        "name": "option_tradebook_table",
                        "@entity": "table",
                        "header": [
                          "trade_id",
                          "isin",
                          "contract_name",
                          "asset_class",
                          "quantity",
                          "date",
                          "price",
                          "transaction_type",
                          "brokerage",
                          "clearing_charges",
                          "exchange_transaction_charges",
                          "sebi_turnover_fees",
                          "stt",
                          "stamp_duty",
                          "sgst",
                          "cgst",
                          "igst",
                          "other_transfer_expenses",
                          "label"
                        ],
                        "rows": [
                          [
                            "RJFWB5JYYDORFUEPK5DQ",
                            "INE619I01012",
                            "BANKNIFTY01Jun2023CE44100",
                            "equity",
                            25,
                            1711756800000,
                            363.1,
                            "buy",
                            385,
                            201,
                            2235,
                            795,
                            1757,
                            202,
                            195,
                            2060,
                            2112,
                            1622,
                            null
                          ],
                          [
                            "Y6W9FLHOVJ8TCHHNBYGF",
                            "INE545C01013",
                            "BANKNIFTY01Jun2023CE44200",
                            "equity",
                            75,
                            1714176000000,
                            363.15,
                            "buy",
                            2479,
                            304,
                            1657,
                            2282,
                            1170,
                            172,
                            1307,
                            1660,
                            1130,
                            1106,
                            null
                          ],
                          [
                            "DML3WXXE53PJOTGTEYKJ",
                            "INE512D09106",
                            "OPTFUTCRUDEOIL16OCT20227000PE",
                            "commodity",
                            100,
                            1727731200000,
                            415,
                            "buy",
                            107,
                            8,
                            114,
                            111,
                            90,
                            43,
                            36,
                            48,
                            119,
                            21,
                            null
                          ],
                          [
                            "GYHVDLIIXVTLROOCLVYG",
                            "INE579I01014",
                            "OPTCURUSDINR27JAN202383PE",
                            "currency",
                            135,
                            1728585600000,
                            90.69,
                            "buy",
                            134,
                            183,
                            209,
                            9,
                            100,
                            50,
                            202,
                            60,
                            140,
                            214,
                            null
                          ],
                          [
                            "ULDR4PE639LOMU4A4VCE",
                            "INE512R02109",
                            "NIFTY23JAN2023CE15000",
                            "equity",
                            75,
                            1728412800000,
                            1570,
                            "buy",
                            2122,
                            1793,
                            1820,
                            1893,
                            560,
                            1651,
                            875,
                            2161,
                            32,
                            1916,
                            null
                          ],
                          [
                            "VIHCPUEYSZUMQUVPSJ1P",
                            "INE512R02109",
                            "NIFTY23JAN2023CE15000",
                            "equity",
                            125,
                            1728979200000,
                            1490,
                            "buy",
                            114,
                            1074,
                            1522,
                            44,
                            1158,
                            535,
                            2252,
                            1115,
                            1171,
                            2449,
                            null
                          ],
                          [
                            "QOO5OYJLQBIRUMIGKCIQ",
                            "INE769A01020",
                            "FINNIFTY25JAN2023CE12500",
                            "equity",
                            50,
                            1729756800000,
                            3450.67,
                            "buy",
                            831,
                            1827,
                            1117,
                            1814,
                            1230,
                            499,
                            1882,
                            2344,
                            457,
                            1850,
                            null
                          ],
                          [
                            "2BOMU4R5WMEONKEI5YT6",
                            "INE563D01013",
                            "NIFTY23JAN2023CE15600",
                            "equity",
                            250,
                            1730620800000,
                            168,
                            "buy",
                            1280,
                            657,
                            1291,
                            1139,
                            636,
                            2397,
                            795,
                            1161,
                            2236,
                            1620,
                            null
                          ],
                          [
                            "PZUTEFRTRX9LFW9DPHAW",
                            "INE118D01016",
                            "NIFTY23JAN2023CE15650",
                            "equity",
                            100,
                            1729584000000,
                            175.55,
                            "buy",
                            125,
                            882,
                            2432,
                            2077,
                            2189,
                            2472,
                            2156,
                            1856,
                            1068,
                            2285,
                            null
                          ],
                          [
                            "DIQDEZH7K04QBDCJY0NV",
                            "INE002A01018",
                            "FINNIFTY15FEB2023CE13400",
                            "equity",
                            50,
                            1730707200000,
                            194.9,
                            "buy",
                            1645,
                            1807,
                            1262,
                            2482,
                            829,
                            782,
                            540,
                            1000,
                            354,
                            2491,
                            null
                          ],
                          [
                            "PGR2RDEZFVC2S3YBX1JF",
                            "INE0C5901014",
                            "NIFTY23FEB2023PE17100",
                            "equity",
                            105,
                            1730828800000,
                            194.9,
                            "buy",
                            1760,
                            1640,
                            2143,
                            905,
                            1374,
                            1714,
                            842,
                            1776,
                            847,
                            299,
                            null
                          ],
                          [
                            "TFCXQ3TKQRMOHU86MXO1",
                            "INE082B0101",
                            "BANKNIFTY20MAR2023PE18900",
                            "equity",
                            155,
                            1730950400000,
                            1500,
                            "buy",
                            104,
                            552,
                            1064,
                            2411,
                            1835,
                            2056,
                            2421,
                            2289,
                            651,
                            2315,
                            null
                          ],
                          [
                            "DUYJ4ZV7OKJA8CV8U1MT",
                            "INE0C5901014",
                            "NIFTY17APR2023PE17800",
                            "equity",
                            55,
                            1731260800000,
                            457.89,
                            "buy",
                            1766,
                            2139,
                            1170,
                            2017,
                            723,
                            2101,
                            1756,
                            2357,
                            1517,
                            2394,
                            null
                          ],
                          [
                            "2GFSS7XTAHUWHFZH0NBR",
                            "INE322R01014",
                            "FINNIFTY25MAY2023CE14900",
                            "equity",
                            130,
                            1731699200000,
                            698.03,
                            "buy",
                            682,
                            2191,
                            400,
                            1922,
                            813,
                            188,
                            1323,
                            188,
                            880,
                            1267,
                            null
                          ],
                          [
                            "4AGDXGEEJOUHI6G8ATOU",
                            "INE694N01015",
                            "RELIANCEOCT1940CE",
                            "equity",
                            50,
                            1726963200000,
                            559.39,
                            "buy",
                            1244,
                            2104,
                            102,
                            1018,
                            319,
                            1497,
                            1669,
                            2059,
                            1901,
                            485,
                            null
                          ],
                          [
                            "AHVDFMGBCECY1IR0QDH9",
                            "INE197R01010",
                            "RELIANCEOCT1960CE",
                            "equity",
                            175,
                            1728000000000,
                            1000,
                            "buy",
                            2181,
                            2407,
                            104,
                            398,
                            1577,
                            1341,
                            55,
                            1215,
                            1616,
                            879,
                            null
                          ],
                          [
                            "Q2DZQ1ITYAOXILWQLHDN",
                            "INE576G01015",
                            "INFOSYSOCT2550CE",
                            "equity",
                            150,
                            1728518400000,
                            175,
                            "buy",
                            444,
                            1610,
                            769,
                            2289,
                            1456,
                            437,
                            1601,
                            620,
                            810,
                            1319,
                            null
                          ],
                          [
                            "FQQ96BPTGAPAQPLMABNU",
                            "INE197R01010",
                            "RELIANCEOCT1920CE",
                            "equity",
                            250,
                            1728864000000,
                            186,
                            "buy",
                            1158,
                            1954,
                            1513,
                            2091,
                            1622,
                            1175,
                            383,
                            2049,
                            191,
                            1624,
                            null
                          ],
                          [
                            "RKW88OVAQVWZMCD9VLJL",
                            "INE512R01010",
                            "INFOSYSOCT2590CE",
                            "equity",
                            225,
                            1729123200000,
                            180,
                            "buy",
                            874,
                            1430,
                            2384,
                            1648,
                            1398,
                            596,
                            367,
                            396,
                            1897,
                            1511,
                            null
                          ],
                          [
                            "TTGYOR1EOA3SUTMNCJ58",
                            "INE512D09106",
                            "OPTFUTCRUDEOIL16OCT20227000PE",
                            "commodity",
                            25,
                            1772190392277,
                            423,
                            "sell",
                            106,
                            107,
                            78,
                            45,
                            79,
                            100,
                            14,
                            58,
                            70,
                            85,
                            null
                          ],
                          [
                            "MYOFOBCC5W0PCWHVBFPU",
                            "INE512D09106",
                            "OPTFUTCRUDEOIL16OCT20227000PE",
                            "commodity",
                            50,
                            1728681600000,
                            456,
                            "buy",
                            80,
                            89,
                            33,
                            66,
                            61,
                            71,
                            116,
                            120,
                            55,
                            33,
                            null
                          ],
                          [
                            "VIX3TEN3GZKPVY2WZCEX",
                            "INE512D09106",
                            "OPTFUTCRUDEOIL16OCT20227000PE",
                            "commodity",
                            125,
                            1753322058310,
                            449,
                            "sell",
                            4,
                            73,
                            78,
                            84,
                            113,
                            71,
                            1,
                            75,
                            118,
                            18,
                            null
                          ],
                          [
                            "Q5CUBQ2P6B7VKNHCKWD6",
                            "INE573G07017",
                            "OPTFUTSILVERM21Nov202258000PE",
                            "commodity",
                            50,
                            1729632000000,
                            135,
                            "buy",
                            237,
                            56,
                            15,
                            18,
                            104,
                            15,
                            22,
                            76,
                            89,
                            112,
                            null
                          ],
                          [
                            "Q5CUBQ2P6B7VKNHCKWD6",
                            "INE573G07017",
                            "OPTFUTSILVERM21Nov202258000PE",
                            "commodity",
                            80,
                            1729632000000,
                            142,
                            "buy",
                            188,
                            53,
                            11,
                            89,
                            31,
                            92,
                            119,
                            77,
                            58,
                            6,
                            null
                          ],
                          [
                            "DTXGC9I0ZVOI2FFSHIOL",
                            "INE573G07017",
                            "OPTFUTSILVERM21Nov202258000PE",
                            "commodity",
                            70,
                            1749669372484,
                            148,
                            "sell",
                            77,
                            57,
                            74,
                            83,
                            42,
                            83,
                            110,
                            104,
                            60,
                            102,
                            null
                          ],
                          [
                            "DTXGC9I0ZVOI2FFSHIOL",
                            "INE573G07017",
                            "OPTFUTSILVERM21Nov202258000PE",
                            "commodity",
                            30,
                            1754867768752,
                            150,
                            "sell",
                            187,
                            112,
                            77,
                            67,
                            93,
                            19,
                            84,
                            19,
                            54,
                            47,
                            null
                          ],
                          [
                            "IU0HYP6ZN9EOERPBEWYA",
                            "INE573G07017",
                            "OPTFUTSILVERM21Nov202258000PE",
                            "commodity",
                            140,
                            1730419200000,
                            137,
                            "buy",
                            234,
                            97,
                            29,
                            100,
                            39,
                            72,
                            49,
                            115,
                            110,
                            93,
                            null
                          ],
                          [
                            "TAODZZPWWR9R5CO1QX0R",
                            "INE573G07017",
                            "OPTFUTSILVERM21Nov202258000PE",
                            "commodity",
                            80,
                            1760702830207,
                            154,
                            "sell",
                            136,
                            76,
                            35,
                            49,
                            98,
                            56,
                            75,
                            2,
                            15,
                            75,
                            null
                          ],
                          [
                            "TAODZZPWWR9R5CO1QX0R",
                            "INE573G07017",
                            "OPTFUTSILVERM21Nov202258000PE",
                            "commodity",
                            20,
                            1732060800000,
                            153,
                            "buy",
                            211,
                            31,
                            34,
                            6,
                            18,
                            105,
                            104,
                            41,
                            67,
                            52,
                            null
                          ],
                          [
                            "HVG5B4A45J9CL4CZ35TF",
                            "INE573G07017",
                            "OPTFUTSILVERM21Nov202258000PE",
                            "commodity",
                            130,
                            1747648985500,
                            156,
                            "sell",
                            110,
                            41,
                            105,
                            57,
                            47,
                            64,
                            63,
                            34,
                            46,
                            26,
                            null
                          ],
                          [
                            "CJ7UKXJFK6WDVAUWGXGW",
                            "INE113J07012",
                            "OPTFUTGOLD29OCT202360000PE",
                            "commodity",
                            55,
                            1755112457295,
                            124.56,
                            "sell",
                            103,
                            48,
                            70,
                            111,
                            21,
                            40,
                            84,
                            69,
                            15,
                            16,
                            null
                          ],
                          [
                            "EAU3BEIXICIMKLVWWU56",
                            "INE113J07012",
                            "OPTFUTGOLD29OCT202360000PE",
                            "commodity",
                            55,
                            1726272000000,
                            121,
                            "buy",
                            125,
                            52,
                            36,
                            22,
                            92,
                            17,
                            67,
                            79,
                            46,
                            109,
                            null
                          ],
                          [
                            "OJDZI0SB29R3RMHWOG8P",
                            "INE113J07012",
                            "OPTFUTGOLD29NOV202361000PE",
                            "commodity",
                            85,
                            1728604800000,
                            135,
                            "buy",
                            212,
                            24,
                            78,
                            32,
                            52,
                            54,
                            7,
                            83,
                            8,
                            119,
                            null
                          ],
                          [
                            "DOHDNKFFITQRMFUYKQLE",
                            "INE113J07012",
                            "OPTFUTGOLD29NOV202361000PE",
                            "commodity",
                            35,
                            1729036800000,
                            138,
                            "buy",
                            25,
                            89,
                            59,
                            114,
                            63,
                            56,
                            108,
                            2,
                            64,
                            35,
                            null
                          ],
                          [
                            "CVWO1J0HIG9QEY5UVUDQ",
                            "INE113J07012",
                            "OPTFUTGOLD29NOV202361000PE",
                            "commodity",
                            90,
                            1767082414482,
                            142,
                            "sell",
                            108,
                            57,
                            19,
                            77,
                            25,
                            94,
                            115,
                            78,
                            71,
                            117,
                            null
                          ],
                          [
                            "R2K5E791EH5VAQZVOETW",
                            "INE113J07012",
                            "OPTFUTGOLD29NOV202361000PE",
                            "commodity",
                            10,
                            1756305421265,
                            149,
                            "sell",
                            130,
                            3,
                            116,
                            15,
                            41,
                            119,
                            118,
                            26,
                            76,
                            77,
                            null
                          ],
                          [
                            "GYHVDLIIXVTLROOCLVYG",
                            "INE579I01014",
                            "OPTCURUSDINR27JAN202383PE",
                            "currency",
                            145,
                            1728585600000,
                            87.45,
                            "buy",
                            212,
                            202,
                            223,
                            125,
                            116,
                            48,
                            71,
                            75,
                            100,
                            24,
                            null
                          ],
                          [
                            "8VMAOKSBFKXAX1Z75UK5",
                            "INE579I01014",
                            "OPTCURUSDINR27JAN202383PE",
                            "currency",
                            165,
                            1744956653918,
                            94.78,
                            "sell",
                            177,
                            48,
                            234,
                            38,
                            176,
                            182,
                            159,
                            80,
                            200,
                            136,
                            null
                          ],
                          [
                            "ZXORPEEJE7TVFBPXQ8LI",
                            "INE579I01014",
                            "OPTCURUSDINR27JAN202383PE",
                            "currency",
                            100,
                            1756783227749,
                            45.98,
                            "sell",
                            97,
                            219,
                            153,
                            19,
                            118,
                            231,
                            228,
                            31,
                            185,
                            186,
                            null
                          ],
                          [
                            "ZXORPEEJE7TVFBPXQ8LI",
                            "INE579I01014",
                            "OPTCURUSDINR27JAN202383PE",
                            "currency",
                            15,
                            1745656580011,
                            78.3,
                            "sell",
                            94,
                            93,
                            127,
                            162,
                            79,
                            232,
                            149,
                            211,
                            83,
                            6,
                            null
                          ],
                          [
                            "6MDVYEYUKHJXIQSGEOPU",
                            "INE645F01015",
                            "OPTCUREURINR13MAY202394CE",
                            "currency",
                            50,
                            1773690786760,
                            245.78,
                            "sell",
                            46,
                            228,
                            186,
                            237,
                            75,
                            6,
                            46,
                            97,
                            203,
                            34,
                            null
                          ],
                          [
                            "CPYBETZOWLDVTAYF3PRA",
                            "INE645F01015",
                            "OPTCUREURINR13MAY202394CE",
                            "currency",
                            50,
                            1731174400000,
                            260.7,
                            "buy",
                            178,
                            162,
                            152,
                            207,
                            202,
                            185,
                            95,
                            232,
                            121,
                            209,
                            null
                          ],
                          [
                            "MEHVXLLGPB5SODCHL5PT",
                            "INE645F01015",
                            "OPTCUREURINR13MAY202394CE",
                            "currency",
                            145,
                            1767623346855,
                            278,
                            "sell",
                            20,
                            164,
                            152,
                            121,
                            98,
                            148,
                            35,
                            194,
                            110,
                            34,
                            null
                          ],
                          [
                            "UQCTRKWJRKXVR7LSIBCN",
                            "INE645F01015",
                            "OPTCUREURINR13MAY202394CE",
                            "currency",
                            145,
                            1711756800000,
                            289,
                            "buy",
                            25,
                            85,
                            159,
                            60,
                            145,
                            36,
                            46,
                            146,
                            237,
                            157,
                            null
                          ],
                          [
                            "PIN8G2M1QKXY1FQZPRIF",
                            "INE714H01019",
                            "OPTCURGBPINR27OCT2023115PE",
                            "currency",
                            75,
                            1725667200000,
                            4500,
                            "buy",
                            21,
                            179,
                            65,
                            29,
                            21,
                            92,
                            124,
                            178,
                            153,
                            12,
                            null
                          ],
                          [
                            "PIN8G2M1QKXY1FQZPRIF",
                            "INE714H01019",
                            "OPTCURGBPINR27OCT2023115PE",
                            "currency",
                            75,
                            1761192677238,
                            4509,
                            "sell",
                            15,
                            93,
                            151,
                            111,
                            104,
                            103,
                            55,
                            238,
                            153,
                            97,
                            null
                          ],
                          [
                            "69WJ3BI70HPVKNLEK5TR",
                            "INE714H01019",
                            "OPTCURGBPINR27OCT2023115PE",
                            "currency",
                            113,
                            1726185600000,
                            4492.367,
                            "buy",
                            57,
                            230,
                            240,
                            67,
                            116,
                            76,
                            6,
                            3,
                            169,
                            150,
                            null
                          ],
                          [
                            "P534DDQESQ6XNTI4NURV",
                            "INE714H01019",
                            "OPTCURGBPINR27OCT2023115PE",
                            "currency",
                            60,
                            1769948168912,
                            4499.876,
                            "sell",
                            145,
                            184,
                            130,
                            50,
                            35,
                            17,
                            90,
                            146,
                            149,
                            199,
                            null
                          ],
                          [
                            "OXGR4W3D3MYYBURZOEJ5",
                            "INE714H01019",
                            "OPTCURGBPINR27OCT2023115PE",
                            "currency",
                            43,
                            1746712233880,
                            5008.596,
                            "sell",
                            47,
                            22,
                            47,
                            31,
                            24,
                            32,
                            128,
                            195,
                            47,
                            87,
                            null
                          ],
                          [
                            "T6B8078DHAC9MGWPKR6B",
                            "INE632P01025",
                            "OPTCURJPYINR24AUG202345.6CE",
                            "currency",
                            120,
                            1756408554558,
                            345.89,
                            "sell",
                            7,
                            203,
                            116,
                            18,
                            12,
                            64,
                            159,
                            151,
                            211,
                            148,
                            null
                          ],
                          [
                            "OFAILEZLEAPD9SU5ZOMT",
                            "INE632P01025",
                            "OPTCURJPYINR24AUG202345.6CE",
                            "currency",
                            80,
                            1731788800000,
                            325.67,
                            "buy",
                            44,
                            87,
                            14,
                            179,
                            169,
                            178,
                            97,
                            26,
                            72,
                            170,
                            null
                          ],
                          [
                            "OFAILEZLHKPD8SU7ZOMT",
                            "INE632P01025",
                            "OPTCURJPYINR24AUG202345.6CE",
                            "currency",
                            30,
                            1731788800000,
                            319.78,
                            "buy",
                            89,
                            205,
                            71,
                            145,
                            106,
                            166,
                            209,
                            67,
                            6,
                            124,
                            null
                          ],
                          [
                            "FDIT8EQR2XJFQJU2JLIG",
                            "INE632P01025",
                            "OPTCURJPYINR24AUG202345.6CE",
                            "currency",
                            40,
                            1745008531011,
                            329.587,
                            "sell",
                            59,
                            42,
                            140,
                            65,
                            52,
                            47,
                            80,
                            128,
                            39,
                            105,
                            null
                          ],
                          [
                            "KLPAV9GOUCMPFH1WNKLV",
                            "INE619I01012",
                            "BANKNIFTY01Jun2023CE44100",
                            "equity",
                            25,
                            1743718310553,
                            450.09,
                            "sell",
                            1657,
                            1302,
                            325,
                            2118,
                            2050,
                            604,
                            2148,
                            626,
                            1489,
                            2090,
                            null
                          ],
                          [
                            "0WNSDPGK4LTXO38HPTLU",
                            "INE545C01013",
                            "BANKNIFTY01Jun2023CE44200",
                            "equity",
                            25,
                            1751163508968,
                            469.22,
                            "sell",
                            1711,
                            1948,
                            2048,
                            700,
                            2360,
                            120,
                            2415,
                            333,
                            2231,
                            736,
                            null
                          ],
                          [
                            "QS2KFCND5DJXRNDLLVHD",
                            "INE545C01013",
                            "BANKNIFTY01Jun2023CE44200",
                            "equity",
                            50,
                            1761590934853,
                            425.3,
                            "sell",
                            320,
                            375,
                            82,
                            1593,
                            1653,
                            620,
                            1637,
                            712,
                            542,
                            130,
                            null
                          ],
                          [
                            "0B3PIU4WMIPKUQEG34BO",
                            "INE512R02109",
                            "NIFTY23JAN2023CE15000",
                            "equity",
                            25,
                            1744864470570,
                            1460,
                            "sell",
                            499,
                            2262,
                            2210,
                            507,
                            256,
                            2293,
                            1125,
                            2345,
                            1852,
                            90,
                            null
                          ],
                          [
                            "S7XOLPIQ2V4R5L89ZEE1",
                            "INE512R02109",
                            "NIFTY23JAN2023CE15000",
                            "equity",
                            45,
                            1771172357246,
                            1508,
                            "sell",
                            1784,
                            825,
                            2087,
                            498,
                            666,
                            616,
                            1994,
                            763,
                            157,
                            2380,
                            null
                          ],
                          [
                            "HSZA8B3XH3JC2POXMSXJ",
                            "INE512R02109",
                            "NIFTY23JAN2023CE15000",
                            "equity",
                            50,
                            1749700715623,
                            1585,
                            "sell",
                            335,
                            1434,
                            254,
                            1609,
                            999,
                            1979,
                            2229,
                            127,
                            389,
                            1244,
                            null
                          ],
                          [
                            "ILKEYGKTOHFQI5UXMBOO",
                            "INE512R02109",
                            "NIFTY23JAN2023CE15000",
                            "equity",
                            80,
                            1764221232709,
                            1635,
                            "sell",
                            208,
                            535,
                            279,
                            401,
                            2010,
                            248,
                            494,
                            746,
                            2399,
                            1196,
                            null
                          ],
                          [
                            "A9HFP9X49AROF21K9KRY",
                            "INE769A01020",
                            "FINNIFTY25JAN2023CE12500",
                            "equity",
                            50,
                            1763440981795,
                            2568.98,
                            "sell",
                            319,
                            59,
                            25,
                            2409,
                            2339,
                            423,
                            132,
                            250,
                            2137,
                            2442,
                            null
                          ],
                          [
                            "GHQTIWHDAFE90NOAU6ZY",
                            "INE563D01013",
                            "NIFTY23JAN2023CE15600",
                            "equity",
                            25,
                            1771143409491,
                            146,
                            "sell",
                            1525,
                            678,
                            749,
                            379,
                            277,
                            1791,
                            2288,
                            545,
                            1042,
                            327,
                            null
                          ],
                          [
                            "GHQTIWHDAFE90NOAU6ZY",
                            "INE563D01013",
                            "NIFTY23JAN2023CE15600",
                            "equity",
                            75,
                            1774573228486,
                            158,
                            "sell",
                            1761,
                            2349,
                            1082,
                            2181,
                            1054,
                            1396,
                            856,
                            1220,
                            1740,
                            1791,
                            null
                          ],
                          [
                            "IXMBK9LENH6CSGULION2",
                            "INE563D01013",
                            "NIFTY23JAN2023CE15600",
                            "equity",
                            150,
                            1761215243037,
                            255,
                            "sell",
                            2369,
                            875,
                            2202,
                            2488,
                            1574,
                            404,
                            532,
                            779,
                            2266,
                            1396,
                            null
                          ],
                          [
                            "BEZ31FONIR1EQQI68F0Y",
                            "INE118D01016",
                            "NIFTY23JAN2023CE15650",
                            "equity",
                            100,
                            1744194826996,
                            126.78,
                            "sell",
                            288,
                            7,
                            2495,
                            1391,
                            1859,
                            28,
                            1298,
                            355,
                            1234,
                            1955,
                            null
                          ],
                          [
                            "HMC8SXGWGNGWUTFBYRHX",
                            "INE002A01018",
                            "FINNIFTY15FEB2023CE13400",
                            "equity",
                            50,
                            1772245765781,
                            174.55,
                            "sell",
                            879,
                            2335,
                            1905,
                            1798,
                            456,
                            1765,
                            358,
                            1368,
                            1124,
                            1040,
                            null
                          ],
                          [
                            "KQDQ54GEHLHTIUSPGAV6",
                            "INE0C5901014",
                            "NIFTY23FEB2023PE17100",
                            "equity",
                            55,
                            1750835577853,
                            174.8,
                            "sell",
                            181,
                            764,
                            1349,
                            1121,
                            2195,
                            2042,
                            1398,
                            1674,
                            164,
                            2244,
                            null
                          ],
                          [
                            "SLB3JNRIBXSZWLRWP8ZZ",
                            "INE0C5901014",
                            "NIFTY23FEB2023PE17100",
                            "equity",
                            50,
                            1773265720214,
                            210.89,
                            "sell",
                            77,
                            713,
                            1563,
                            1666,
                            1745,
                            20,
                            528,
                            2500,
                            1068,
                            2008,
                            null
                          ],
                          [
                            "LMQI22RLLZHQ5CWBGFYP",
                            "INE082B0101",
                            "BANKNIFTY20MAR2023PE18900",
                            "equity",
                            155,
                            1744940811350,
                            615.89,
                            "sell",
                            1842,
                            519,
                            2150,
                            997,
                            536,
                            1241,
                            2437,
                            765,
                            2481,
                            2126,
                            null
                          ],
                          [
                            "71ZRU28BNR9F5FMOZS8V",
                            "INE0C5901014",
                            "NIFTY17APR2023PE17800",
                            "equity",
                            55,
                            1746783362527,
                            489.67,
                            "sell",
                            1519,
                            340,
                            2379,
                            190,
                            164,
                            2420,
                            662,
                            226,
                            1681,
                            722,
                            null
                          ],
                          [
                            "PHGLBJWZZLIDKTTVLNQE",
                            "INE322R01014",
                            "FINNIFTY25MAY2023CE14900",
                            "equity",
                            120,
                            1759417387455,
                            745.32,
                            "sell",
                            820,
                            1114,
                            2137,
                            646,
                            2399,
                            2314,
                            160,
                            1817,
                            2092,
                            283,
                            null
                          ],
                          [
                            "SEZD4CXXIXJ79ZS0GUQ2",
                            "INE694N01015",
                            "RELIANCEOCT1940CE",
                            "equity",
                            50,
                            1770860977415,
                            615.35,
                            "sell",
                            1797,
                            249,
                            1653,
                            2028,
                            897,
                            542,
                            1158,
                            2067,
                            964,
                            1393,
                            null
                          ],
                          [
                            "UESSXHU0UHWCRJ1Z7LJR",
                            "INE576G01015",
                            "INFOSYSOCT2550CE",
                            "equity",
                            150,
                            1773024954910,
                            145,
                            "sell",
                            1204,
                            722,
                            1103,
                            2190,
                            1165,
                            1168,
                            597,
                            1485,
                            1127,
                            1175,
                            null
                          ],
                          [
                            "TVSWJDGSX7VFVHA2AUXG",
                            "INE197R01010",
                            "RELIANCEOCT1920CE",
                            "equity",
                            250,
                            1752759372785,
                            199,
                            "sell",
                            267,
                            1371,
                            436,
                            2246,
                            1747,
                            765,
                            1306,
                            1279,
                            1236,
                            1962,
                            null
                          ]
                        ]
                      }
                    ]
                  },
                  {
                    "name": "mutual_fund_sheet",
                    "@entity": "sheet",
                    "blocks": [
                      {
                        "name": "mutual_fund_tradebook_table",
                        "@entity": "table",
                        "header": [
                          "trade_id",
                          "isin",
                          "scheme_name",
                          "asset_class",
                          "is_listed",
                          "is_stt_paid",
                          "quantity",
                          "date",
                          "price",
                          "transaction_type",
                          "fmv",
                          "transfer_expenses",
                          "label"
                        ],
                        "rows": [
                          [
                            "TGFCH72LKDQY9RRINTGH",
                            "INE397D01024",
                            "HDFCCREDITRISKDEBTFUND-DIRECTPLAN",
                            "debt",
                            true,
                            true,
                            32.31,
                            1525824000000,
                            50,
                            "buy",
                            400,
                            10,
                            null
                          ],
                          [
                            "BVNCH72LKDQY9RRINTGH",
                            "INF251K01NO3",
                            "BNPPARIBASLIQUIDFUND-DIRECTPLAN",
                            "debt",
                            true,
                            true,
                            37.216,
                            1589414400000,
                            10,
                            "buy",
                            0,
                            98,
                            null
                          ],
                          [
                            "BNG57MYGKDQY9RRINTGH",
                            "INF277K01YE6",
                            "TATALIQUIDFUND-DIRECTPLAN",
                            "debt",
                            true,
                            true,
                            19.574,
                            1515456000000,
                            120,
                            "buy",
                            5,
                            78,
                            null
                          ],
                          [
                            "GJK45MYGKDQY9RRINTGH",
                            "INF278A06YE8",
                            "AdityaBirlaSunLifeMediumTermDirectPlanGrowth",
                            "debt",
                            true,
                            true,
                            36.023,
                            1493769600000,
                            30,
                            "buy",
                            10,
                            68,
                            null
                          ],
                          [
                            "GHL909MYGKDQY9RRINTGH",
                            "INF200K01UT4",
                            "SBILIQUIDFUND-DIRECTPLAN",
                            "other",
                            true,
                            true,
                            35.014,
                            1437177600000,
                            15,
                            "buy",
                            17,
                            67,
                            null
                          ],
                          [
                            "BHMGP79GKDQY9RRINTGH",
                            "INF200K01189",
                            "SBIGoldFund",
                            "other",
                            true,
                            true,
                            35.706,
                            1626739200000,
                            60,
                            "buy",
                            65,
                            30,
                            null
                          ],
                          [
                            "BLKMN98HJNMDQY9RRINTGH",
                            "INF200K01189",
                            "SBIGoldFund",
                            "other",
                            true,
                            true,
                            36.062,
                            1563667200000,
                            60,
                            "buy",
                            120,
                            50,
                            null
                          ],
                          [
                            "MJK88MYGKDQY9RRINTGH",
                            "INF109KB1GK2",
                            "ICICIPrudentialCommodityFund",
                            "other",
                            true,
                            true,
                            35.039,
                            1626912000000,
                            400.784,
                            "buy",
                            200,
                            20,
                            null
                          ],
                          [
                            "GMFCH72LKDQY9RRINTGH",
                            "INF179KB1HP9",
                            "HDFCLIQUIDFUND-DIRECTPLAN",
                            "equity",
                            true,
                            true,
                            25.68,
                            1556409600000,
                            459,
                            "buy",
                            220,
                            0.25,
                            null
                          ],
                          [
                            "GGFCHMYLKDQY9RRINTGH",
                            "INF846K01DI2",
                            "AxisBluechipFund",
                            "equity",
                            true,
                            true,
                            105.56,
                            1491436800000,
                            123,
                            "buy",
                            20,
                            25,
                            null
                          ],
                          [
                            "GGFCHMYLKDQY9RRINTGH",
                            "INF846K01DI2",
                            "AxisBluechipFund",
                            "equity",
                            true,
                            true,
                            550.34,
                            1491436800000,
                            124.5,
                            "buy",
                            20,
                            49,
                            null
                          ],
                          [
                            "DFGR59NOHJDQ751TINTJK",
                            "INF179K01PT5",
                            "HDFCSmallCapFund",
                            "equity",
                            true,
                            true,
                            129,
                            1733760000000,
                            150,
                            "buy",
                            100,
                            32,
                            null
                          ],
                          [
                            "DFGR59NOHJDQ751TINTJK",
                            "INF179K01PT5",
                            "HDFCSmallCapFund",
                            "equity",
                            true,
                            true,
                            100,
                            1733760000000,
                            250,
                            "buy",
                            100,
                            56,
                            null
                          ],
                          [
                            "GHNR59NOHJDQ901TINTLK",
                            "INF200K01OR6",
                            "SBIMagnumMulticapFund",
                            "equity",
                            true,
                            true,
                            156.78,
                            1481500800000,
                            150,
                            "buy",
                            160,
                            22,
                            null
                          ],
                          [
                            "KNT59NOGKDQY897TINFTR",
                            "INF760K01FR2",
                            "CanaraRobecoBluechipEquityGrowthDirectPlan",
                            "equity",
                            true,
                            true,
                            155,
                            1576022400000,
                            23.78,
                            "buy",
                            25,
                            2,
                            null
                          ],
                          [
                            "HJM98MYGKDQY9RRINGFB",
                            "INF200K01189",
                            "SBIGoldFund",
                            "other",
                            true,
                            true,
                            35,
                            1374624000000,
                            200,
                            "buy",
                            180,
                            589,
                            null
                          ],
                          [
                            "JMCU8MYGKDQY9RRINTGH",
                            "INF200K01189",
                            "SBIGoldFund",
                            "other",
                            true,
                            true,
                            35,
                            1585008000000,
                            230,
                            "buy",
                            180,
                            37,
                            null
                          ],
                          [
                            "GHN78NOGKDQY9YTINFGHY",
                            "INF200K01190",
                            "KOTAKSECFUND",
                            "equity",
                            true,
                            true,
                            50,
                            1633564800000,
                            980,
                            "buy",
                            800,
                            145,
                            null
                          ],
                          [
                            "XCT59NOGKDQY9YTINFGRN",
                            "INF200K01190",
                            "KOTAKSECFUND",
                            "equity",
                            true,
                            true,
                            40,
                            1639872000000,
                            1000,
                            "buy",
                            800,
                            198,
                            null
                          ],
                          [
                            "KGFCH72LKDQY9RRINTGH",
                            "INE397D01024",
                            "HDFCCREDITRISKDEBTFUND-DIRECTPLAN",
                            "debt",
                            true,
                            true,
                            32.31,
                            1758159468004,
                            900,
                            "sell",
                            1000,
                            89.658,
                            null
                          ],
                          [
                            "KHF78MYGKDQY9RRINTGH",
                            "INF251K01NO3",
                            "BNPPARIBASLIQUIDFUND-DIRECTPLAN",
                            "debt",
                            true,
                            true,
                            17.823,
                            1766811844423,
                            5,
                            "sell",
                            0,
                            20,
                            null
                          ],
                          [
                            "GHN78MYGKDQY9RRINTGH",
                            "INF277K01YE6",
                            "TATALIQUIDFUND-DIRECTPLAN",
                            "debt",
                            true,
                            true,
                            36.711,
                            1758442592259,
                            160,
                            "sell",
                            5,
                            33.24,
                            null
                          ],
                          [
                            "BHM88MYGKDQY9RRINTGH",
                            "INF278A06YE8",
                            "AdityaBirlaSunLifeMediumTermDirectPlanGrowth",
                            "debt",
                            true,
                            true,
                            36.023,
                            1761533937248,
                            60,
                            "sell",
                            10,
                            100,
                            null
                          ],
                          [
                            "BHM88MTYH6QY9RRINTGH",
                            "INF200K01UT4",
                            "SBILIQUIDFUND-DIRECTPLAN",
                            "other",
                            true,
                            true,
                            19.88,
                            1768826225992,
                            60,
                            "sell",
                            17,
                            10,
                            null
                          ],
                          [
                            "CVH78MYGKDQY9RRINTGH",
                            "INF109KB1GK2",
                            "ICICIPrudentialCommodityFund",
                            "other",
                            true,
                            true,
                            32.531,
                            1771469391914,
                            200,
                            "sell",
                            200,
                            90,
                            null
                          ],
                          [
                            "GMFCH72LKDQY9RRINTGH",
                            "INF179KB1HP9",
                            "HDFCLIQUIDFUND-DIRECTPLAN",
                            "equity",
                            true,
                            true,
                            25.68,
                            1774298905737,
                            500,
                            "sell",
                            220,
                            50,
                            null
                          ],
                          [
                            "JHF78MYGKDQY9RRINTGH",
                            "INF846K01DI2",
                            "AxisBluechipFund",
                            "equity",
                            true,
                            true,
                            355.9,
                            1747475787479,
                            212.7,
                            "sell",
                            20,
                            28,
                            null
                          ],
                          [
                            "JTR59NOGKDQY9YTINTGH",
                            "INF846K01DI2",
                            "AxisBluechipFund",
                            "equity",
                            true,
                            true,
                            250,
                            1749834306150,
                            209,
                            "sell",
                            20,
                            75,
                            null
                          ],
                          [
                            "HNT59NOGKDQY897TINF4R",
                            "INF200K01OR6",
                            "SBIMagnumMulticapFund",
                            "equity",
                            true,
                            true,
                            125,
                            1750955038501,
                            400,
                            "sell",
                            160,
                            89.658,
                            null
                          ],
                          [
                            "HYT59NOGKDQY9YTINFGRN",
                            "INF760K01FR2",
                            "CanaraRobecoBluechipEquityGrowthDirectPlan",
                            "equity",
                            true,
                            true,
                            155,
                            1774141921111,
                            56.9,
                            "sell",
                            45,
                            2,
                            null
                          ],
                          [
                            "RTV678MYGKDQY9RRINTGH",
                            "INF200K01189",
                            "SBIGoldFund",
                            "other",
                            true,
                            true,
                            55,
                            1744528138656,
                            210,
                            "sell",
                            180,
                            56,
                            null
                          ],
                          [
                            "VBN59NOGKDQY9YTINFGRN",
                            "INF200K01190",
                            "KOTAKSECFUND",
                            "equity",
                            true,
                            true,
                            40,
                            1763070425482,
                            1200,
                            "sell",
                            800,
                            230,
                            null
                          ],
                          [
                            "67859NOGKDQY9YTINFGRN",
                            "INF200K01190",
                            "KOTAKSECFUND",
                            "equity",
                            true,
                            true,
                            50,
                            1763186904766,
                            1300,
                            "sell",
                            800,
                            245,
                            null
                          ]
                        ]
                      }
                    ]
                  },
                  {
                    "name": "etf_sheet",
                    "@entity": "sheet",
                    "blocks": [
                      {
                        "name": "etf_tradebook_table",
                        "@entity": "table",
                        "header": [
                          "trade_id",
                          "isin",
                          "scheme_name",
                          "asset_class",
                          "is_listed",
                          "is_stt_paid",
                          "quantity",
                          "date",
                          "price",
                          "transaction_type",
                          "fmv",
                          "brokerage",
                          "clearing_charges",
                          "exchange_transaction_charges",
                          "sebi_turnover_fees",
                          "stt",
                          "stamp_duty",
                          "sgst",
                          "cgst",
                          "igst",
                          "other_transfer_expenses",
                          "label",
                          "product_type"
                        ],
                        "rows": [
                          [
                            "BVNCH72LKDQY9RRINTGH",
                            "INF251K01NO3",
                            "BNPPARIBASLIQUIDFUND-DIRECTPLAN",
                            "debt",
                            true,
                            true,
                            31.536,
                            1723132800000,
                            10,
                            "buy",
                            340,
                            92,
                            34,
                            93,
                            139,
                            17,
                            3,
                            68,
                            61,
                            48,
                            109,
                            null,
                            "delivery"
                          ],
                          [
                            "BNG57MYGKDQY9RRINTGH",
                            "INF277K01YE6",
                            "TATALIQUIDFUND-DIRECTPLAN",
                            "debt",
                            true,
                            true,
                            80,
                            1568160000000,
                            120,
                            "buy",
                            250,
                            127,
                            17,
                            108,
                            1,
                            26,
                            75,
                            33,
                            126,
                            113,
                            56,
                            null,
                            "delivery"
                          ],
                          [
                            "BHM88MYGKDQY9RRINTGH",
                            "INF278A06YE8",
                            "AdityaBirlaSunLifeMediumTermDirectPlanGrowth",
                            "debt",
                            true,
                            true,
                            100,
                            1740336000000,
                            60,
                            "buy",
                            10,
                            88,
                            62,
                            132,
                            43,
                            111,
                            35,
                            4,
                            113,
                            61,
                            3,
                            null,
                            "delivery"
                          ],
                          [
                            "BLKMN98HJNMDQY9RRINTGH",
                            "INF200K01189",
                            "SBIGoldFund",
                            "other",
                            true,
                            true,
                            50,
                            1641427200000,
                            120.5877,
                            "buy",
                            65,
                            28,
                            17,
                            52,
                            65,
                            13,
                            40,
                            13,
                            40,
                            40,
                            28,
                            null,
                            "delivery"
                          ],
                          [
                            "MJK88MYGKDQY9RRINTGH",
                            "INF109KB1GK2",
                            "ICICIPrudentialCommodityFund",
                            "other",
                            true,
                            true,
                            150,
                            1627862400000,
                            400.784,
                            "buy",
                            200,
                            77,
                            59,
                            77,
                            12,
                            5,
                            2,
                            7,
                            10,
                            5,
                            30,
                            null,
                            "delivery"
                          ],
                          [
                            "JNV5CHMYLKDQY9RRINTG",
                            "INF846K01DI2",
                            "AxisBluechipFund",
                            "equity",
                            true,
                            true,
                            78,
                            1589414400000,
                            23,
                            "buy",
                            20,
                            106,
                            17,
                            123,
                            61,
                            31,
                            105,
                            24,
                            117,
                            16,
                            62,
                            null,
                            "delivery"
                          ],
                          [
                            "PKF88MYGKDQY9RRINTGH",
                            "INF179K01PT5",
                            "HDFCSmallCapFund",
                            "equity",
                            true,
                            true,
                            90,
                            1515456000000,
                            150,
                            "buy",
                            100,
                            92,
                            43,
                            29,
                            90,
                            64,
                            70,
                            66,
                            51,
                            112,
                            117,
                            null,
                            "delivery"
                          ],
                          [
                            "DFGR59NOHJDQ751TINTJK",
                            "INF200K01OR6",
                            "SBIMagnumMulticapFund",
                            "equity",
                            true,
                            true,
                            95,
                            1493769600000,
                            150,
                            "buy",
                            160,
                            107,
                            98,
                            49,
                            143,
                            53,
                            73,
                            107,
                            52,
                            75,
                            56,
                            null,
                            "delivery"
                          ],
                          [
                            "DFGR59NOHJDQ751TINTJK",
                            "INF200K01OR6",
                            "SBIMagnumMulticapFund",
                            "equity",
                            true,
                            true,
                            50,
                            1493769600000,
                            400,
                            "buy",
                            160,
                            9,
                            60,
                            101,
                            40,
                            146,
                            3,
                            23,
                            125,
                            139,
                            82,
                            null,
                            "delivery"
                          ],
                          [
                            "HJM98MYGKDQY9RRINGFB",
                            "INF179KB1QR8",
                            "ICICILIQUIDFUND-DIRECTPLAN",
                            "equity",
                            true,
                            true,
                            75,
                            1721664000000,
                            150,
                            "buy",
                            300,
                            61,
                            16,
                            25,
                            121,
                            50,
                            103,
                            148,
                            33,
                            75,
                            7,
                            null,
                            "delivery"
                          ],
                          [
                            "KHF78MYGKDQY9RRINTGH",
                            "INF251K01NO3",
                            "BNPPARIBASLIQUIDFUND-DIRECTPLAN",
                            "debt",
                            true,
                            true,
                            31.536,
                            1748590909274,
                            5,
                            "sell",
                            340,
                            134,
                            111,
                            2,
                            96,
                            29,
                            36,
                            128,
                            104,
                            94,
                            101,
                            null,
                            "delivery"
                          ],
                          [
                            "GHN78MYGKDQY9RRINTGH",
                            "INF277K01YE6",
                            "TATALIQUIDFUND-DIRECTPLAN",
                            "debt",
                            true,
                            true,
                            60,
                            1756246804345,
                            160,
                            "sell",
                            250,
                            60,
                            140,
                            15,
                            119,
                            139,
                            13,
                            18,
                            106,
                            10,
                            58,
                            null,
                            "delivery"
                          ],
                          [
                            "GJK45MYGKDQY9RRINTGH",
                            "INF278A06YE8",
                            "AdityaBirlaSunLifeMediumTermDirectPlanGrowth",
                            "debt",
                            true,
                            true,
                            100,
                            1774372623141,
                            30,
                            "sell",
                            10,
                            123,
                            38,
                            8,
                            101,
                            111,
                            99,
                            103,
                            89,
                            43,
                            11,
                            null,
                            "delivery"
                          ],
                          [
                            "BHMGP79GKDQY9RRINTGH",
                            "INF200K01189",
                            "SBIGoldFund",
                            "other",
                            true,
                            true,
                            50,
                            1756191021653,
                            60,
                            "sell",
                            65,
                            43,
                            59,
                            55,
                            9,
                            45,
                            50,
                            10,
                            17,
                            39,
                            22,
                            null,
                            "delivery"
                          ],
                          [
                            "CVH78MYGKDQY9RRINTGH",
                            "INF109KB1GK2",
                            "ICICIPrudentialCommodityFund",
                            "other",
                            true,
                            true,
                            100,
                            1760828890202,
                            200,
                            "sell",
                            200,
                            72,
                            24,
                            22,
                            18,
                            57,
                            14,
                            17,
                            54,
                            32,
                            50,
                            null,
                            "delivery"
                          ],
                          [
                            "GGFCHMYLKDQY9RRINTGH",
                            "INF846K01DI2",
                            "AxisBluechipFund",
                            "equity",
                            true,
                            true,
                            78,
                            1754178413427,
                            88,
                            "sell",
                            20,
                            79,
                            35,
                            65,
                            99,
                            120,
                            146,
                            115,
                            90,
                            100,
                            93,
                            null,
                            "delivery"
                          ],
                          [
                            "PKF88MYGKDQY9RRINTGH",
                            "INF179K01PT5",
                            "HDFCSmallCapFund",
                            "equity",
                            true,
                            true,
                            90,
                            1769189188159,
                            250,
                            "sell",
                            100,
                            95,
                            105,
                            55,
                            104,
                            39,
                            74,
                            23,
                            26,
                            42,
                            142,
                            null,
                            "delivery"
                          ],
                          [
                            "GHNR59NOHJDQ901TINTLK",
                            "INF200K01OR6",
                            "SBIMagnumMulticapFund",
                            "equity",
                            true,
                            true,
                            30,
                            1771331886011,
                            450,
                            "sell",
                            160,
                            4,
                            82,
                            120,
                            71,
                            34,
                            38,
                            45,
                            2,
                            67,
                            98,
                            null,
                            "delivery"
                          ],
                          [
                            "HNT59NOGKDQY897TINF4R",
                            "INF200K01OR6",
                            "SBIMagnumMulticapFund",
                            "equity",
                            true,
                            true,
                            80,
                            1767442617551,
                            500,
                            "sell",
                            160,
                            36,
                            36,
                            69,
                            74,
                            139,
                            57,
                            75,
                            81,
                            118,
                            149,
                            null,
                            "delivery"
                          ],
                          [
                            "KNT59NOGKDQY897TINFTR",
                            "INF200K01OR6",
                            "SBIMagnumMulticapFund",
                            "equity",
                            true,
                            true,
                            10,
                            1757525424323,
                            10,
                            "sell",
                            160,
                            57,
                            141,
                            136,
                            4,
                            44,
                            47,
                            7,
                            119,
                            105,
                            138,
                            null,
                            "delivery"
                          ],
                          [
                            "HYT59NOGKDQY9YTINFGRN",
                            "INF200K01OR6",
                            "SBIMagnumMulticapFund",
                            "equity",
                            true,
                            true,
                            10,
                            1757470844896,
                            50,
                            "sell",
                            160,
                            84,
                            38,
                            123,
                            61,
                            19,
                            8,
                            58,
                            18,
                            145,
                            85,
                            null,
                            "delivery"
                          ]
                        ]
                      }
                    ]
                  },
                  {
                    "name": "bond_sheet",
                    "@entity": "sheet",
                    "blocks": [
                      {
                        "name": "bond_tradebook_table",
                        "@entity": "table",
                        "header": [
                          "trade_id",
                          "isin",
                          "security_name",
                          "is_listed",
                          "is_stt_paid",
                          "quantity",
                          "date",
                          "price",
                          "transaction_type",
                          "brokerage",
                          "clearing_charges",
                          "exchange_transaction_charges",
                          "sebi_turnover_fees",
                          "stt",
                          "stamp_duty",
                          "sgst",
                          "cgst",
                          "igst",
                          "other_transfer_expenses",
                          "label"
                        ],
                        "rows": [
                          [
                            "TGFCH72LKDQY9RRINTGH",
                            "INE261F07032",
                            "07.64%NABARDTFB2031",
                            true,
                            true,
                            500,
                            1738694400000,
                            10,
                            "buy",
                            31,
                            50,
                            13,
                            3,
                            23,
                            115,
                            100,
                            109,
                            56,
                            8,
                            null
                          ],
                          [
                            "KGFCH72LKDQY9RRINTGH",
                            "INE261F07032",
                            "07.64%NABARDTFB2031",
                            true,
                            true,
                            500,
                            1741113600000,
                            10,
                            "buy",
                            121,
                            112,
                            21,
                            98,
                            33,
                            33,
                            113,
                            104,
                            98,
                            61,
                            null
                          ],
                          [
                            "BVNCH72LKDQY9RRINTGH",
                            "INE272F07011",
                            "BlueDartExpress",
                            true,
                            true,
                            50,
                            1730832000000,
                            20,
                            "buy",
                            35,
                            112,
                            55,
                            9,
                            67,
                            13,
                            41,
                            75,
                            37,
                            5,
                            null
                          ],
                          [
                            "BNG57MYGKDQY9RRINTGH",
                            "INE112J07020",
                            "IFCI",
                            true,
                            true,
                            200,
                            1733414400000,
                            16.55,
                            "buy",
                            78,
                            26,
                            27,
                            16,
                            23,
                            60,
                            45,
                            87,
                            118,
                            84,
                            null
                          ],
                          [
                            "GJK45MYGKDQY9RRINTGH",
                            "INE130K08000",
                            "SBOX",
                            false,
                            false,
                            200,
                            1735574400000,
                            16.55,
                            "buy",
                            60,
                            16,
                            109,
                            81,
                            0,
                            80,
                            114,
                            63,
                            119,
                            84,
                            null
                          ],
                          [
                            "GHL909MYGKDQY9RRINTGH",
                            "INE130K08001",
                            "QCK",
                            false,
                            false,
                            200,
                            1633996800000,
                            16.55,
                            "buy",
                            43,
                            127,
                            37,
                            52,
                            0,
                            86,
                            116,
                            46,
                            118,
                            84,
                            null
                          ],
                          [
                            "BHMGP79GKDQY9RRINTGH",
                            "INE130K08012",
                            "GGL",
                            true,
                            true,
                            200,
                            1585008000000,
                            550,
                            "buy",
                            87,
                            21,
                            50,
                            5,
                            23,
                            71,
                            37,
                            22,
                            81,
                            106,
                            null
                          ],
                          [
                            "MJK88MYGKDQY9RRINTGH",
                            "INE130K08019",
                            "APPL",
                            false,
                            false,
                            200,
                            1633564800000,
                            350,
                            "buy",
                            114,
                            12,
                            100,
                            114,
                            0,
                            51,
                            15,
                            37,
                            44,
                            108,
                            null
                          ],
                          [
                            "GGFCHMYLKDQY9RRINTGH",
                            "INE261F07055",
                            "SGB",
                            true,
                            true,
                            500,
                            1437177600000,
                            488,
                            "buy",
                            95,
                            69,
                            57,
                            104,
                            67,
                            77,
                            41,
                            38,
                            28,
                            101,
                            null
                          ],
                          [
                            "GGFCHMYLKDQY9RRINTGH",
                            "INE261F07055",
                            "SGB",
                            true,
                            true,
                            500,
                            1626652800000,
                            322,
                            "buy",
                            22,
                            51,
                            38,
                            76,
                            12,
                            101,
                            87,
                            53,
                            77,
                            4,
                            null
                          ],
                          [
                            "JHF78MYGKDQY9RRINTGH",
                            "INE261F07055",
                            "SGB",
                            true,
                            true,
                            100,
                            1626739200000,
                            350,
                            "buy",
                            11,
                            26,
                            86,
                            34,
                            23,
                            107,
                            43,
                            1,
                            101,
                            6,
                            null
                          ],
                          [
                            "KHF78MYGKDQY9RRINTGH",
                            "INE272F07011",
                            "BlueDartExpress",
                            true,
                            true,
                            20,
                            1772737689039,
                            200,
                            "sell",
                            108,
                            4,
                            102,
                            57,
                            33,
                            11,
                            105,
                            16,
                            56,
                            86,
                            null
                          ],
                          [
                            "GHN78MYGKDQY9RRINTGH",
                            "INE112J07020",
                            "IFCI",
                            true,
                            true,
                            170,
                            1768142143586,
                            500,
                            "sell",
                            71,
                            109,
                            99,
                            30,
                            67,
                            11,
                            126,
                            102,
                            18,
                            24,
                            null
                          ],
                          [
                            "BHM88MYGKDQY9RRINTGH",
                            "INE130K08000",
                            "SBOX",
                            false,
                            false,
                            170,
                            1747811650141,
                            500,
                            "sell",
                            78,
                            99,
                            8,
                            16,
                            0,
                            9,
                            102,
                            63,
                            100,
                            31,
                            null
                          ],
                          [
                            "BHM88MTYH6QY9RRINTGH",
                            "INE130K08001",
                            "QCK",
                            false,
                            false,
                            200,
                            1772784887881,
                            500,
                            "sell",
                            48,
                            128,
                            1,
                            120,
                            0,
                            112,
                            20,
                            79,
                            115,
                            74,
                            null
                          ],
                          [
                            "BLKMN98HJNMDQY9RRINTGH",
                            "INE130K08015",
                            "GGL",
                            true,
                            true,
                            200,
                            1760544844289,
                            600,
                            "sell",
                            37,
                            85,
                            53,
                            113,
                            67,
                            102,
                            42,
                            48,
                            31,
                            15,
                            null
                          ],
                          [
                            "CVH78MYGKDQY9RRINTGH",
                            "INE130K08019",
                            "APPL",
                            false,
                            false,
                            180,
                            1772665028030,
                            310,
                            "sell",
                            112,
                            109,
                            45,
                            32,
                            0,
                            49,
                            53,
                            47,
                            124,
                            111,
                            null
                          ],
                          [
                            "GMFCH72LKDQY9RRINTGH",
                            "INE261F07032",
                            "07.64%NABARDTFB2031",
                            true,
                            true,
                            500,
                            1748478931773,
                            125,
                            "sell",
                            15,
                            26,
                            86,
                            64,
                            33,
                            56,
                            26,
                            30,
                            21,
                            125,
                            null
                          ],
                          [
                            "GMFCH72LKDQY9RRINTGH",
                            "INE261F07032",
                            "07.64%NABARDTFB2031",
                            true,
                            true,
                            500,
                            1750415876039,
                            125,
                            "sell",
                            76,
                            101,
                            104,
                            28,
                            67,
                            127,
                            21,
                            26,
                            88,
                            70,
                            null
                          ],
                          [
                            "JTR59NOGKDQY9YTINTGH",
                            "INE261F07055",
                            "SGB",
                            true,
                            true,
                            550,
                            1761741616537,
                            350,
                            "sell",
                            107,
                            97,
                            94,
                            49,
                            12,
                            49,
                            9,
                            112,
                            69,
                            129,
                            null
                          ],
                          [
                            "DFGR59NOHJDQ751TINTJK",
                            "INE261F07055",
                            "SGB",
                            true,
                            true,
                            50,
                            1762949787971,
                            400,
                            "sell",
                            80,
                            10,
                            130,
                            58,
                            44,
                            5,
                            46,
                            108,
                            40,
                            106,
                            null
                          ]
                        ]
                      }
                    ]
                  },
                  {
                    "name": "debenture_sheet",
                    "@entity": "sheet",
                    "blocks": [
                      {
                        "name": "debenture_tradebook_table",
                        "@entity": "table",
                        "header": [
                          "trade_id",
                          "isin",
                          "security_name",
                          "is_listed",
                          "is_stt_paid",
                          "quantity",
                          "date",
                          "price",
                          "transaction_type",
                          "brokerage",
                          "clearing_charges",
                          "exchange_transaction_charges",
                          "sebi_turnover_fees",
                          "stt",
                          "stamp_duty",
                          "sgst",
                          "cgst",
                          "igst",
                          "other_transfer_expenses",
                          "label"
                        ],
                        "rows": [
                          [
                            "RJFWB5JYYDORFUEPK5DQ",
                            "INE261F07032",
                            "07.64%NABARDTFB2031",
                            true,
                            true,
                            1000,
                            1525824000000,
                            10,
                            "buy",
                            177,
                            180,
                            238,
                            105,
                            105,
                            243,
                            101,
                            131,
                            187,
                            104,
                            null
                          ],
                          [
                            "DML3WXXE53PJOTGTEYKJ",
                            "INE272F07011",
                            "BlueDartExpress",
                            true,
                            true,
                            50,
                            1589414400000,
                            20,
                            "buy",
                            61,
                            48,
                            59,
                            117,
                            117,
                            236,
                            125,
                            232,
                            240,
                            106,
                            null
                          ],
                          [
                            "ULDR4PE639LOMU4A4VCE",
                            "INE112J07020",
                            "IFCI",
                            true,
                            true,
                            200,
                            1515456000000,
                            16.55,
                            "buy",
                            74,
                            176,
                            232,
                            177,
                            177,
                            230,
                            53,
                            210,
                            110,
                            125,
                            null
                          ],
                          [
                            "QOO5OYJLQBIRUMIGKCIQ",
                            "INE130K08000",
                            "SBOX",
                            false,
                            false,
                            200,
                            1493769600000,
                            16.55,
                            "buy",
                            108,
                            88,
                            142,
                            17,
                            0,
                            130,
                            214,
                            66,
                            207,
                            179,
                            null
                          ],
                          [
                            "PZUTEFRTRX9LFW9DPHAW",
                            "INE130K08001",
                            "QCK",
                            false,
                            false,
                            200,
                            1437177600000,
                            16.55,
                            "buy",
                            133,
                            242,
                            225,
                            166,
                            0,
                            45,
                            232,
                            127,
                            64,
                            210,
                            null
                          ],
                          [
                            "PGR2RDEZFVC2S3YBX1JF",
                            "INE130K08012",
                            "GGL",
                            true,
                            true,
                            200,
                            1626739200000,
                            550,
                            "buy",
                            157,
                            86,
                            208,
                            79,
                            79,
                            180,
                            94,
                            158,
                            38,
                            191,
                            null
                          ],
                          [
                            "DUYJ4ZV7OKJA8CV8U1MT",
                            "INE130K08019",
                            "APPL",
                            false,
                            false,
                            200,
                            1626912000000,
                            350,
                            "buy",
                            215,
                            228,
                            8,
                            98,
                            0,
                            119,
                            44,
                            185,
                            50,
                            154,
                            null
                          ],
                          [
                            "4AGDXGEEJOUHI6G8ATOU",
                            "INE261F07055",
                            "SGB",
                            true,
                            true,
                            500,
                            1556409600000,
                            600,
                            "buy",
                            220,
                            239,
                            134,
                            180,
                            180,
                            58,
                            131,
                            160,
                            117,
                            207,
                            null
                          ],
                          [
                            "AHVDFMGBCECY1IR0QDH9",
                            "INE261F07055",
                            "SGB",
                            true,
                            true,
                            500,
                            1556409600000,
                            764,
                            "buy",
                            159,
                            38,
                            58,
                            8,
                            8,
                            34,
                            12,
                            202,
                            103,
                            31,
                            null
                          ],
                          [
                            "Q2DZQ1ITYAOXILWQLHDN",
                            "INE261F07055",
                            "SGB",
                            true,
                            true,
                            100,
                            1491436800000,
                            890,
                            "buy",
                            189,
                            118,
                            196,
                            90,
                            90,
                            161,
                            199,
                            36,
                            138,
                            50,
                            null
                          ],
                          [
                            "Y6W9FLHOVJ8TCHHNBYGF",
                            "INE261F07032",
                            "07.64%NABARDTFB2031",
                            true,
                            true,
                            1000,
                            1764583887544,
                            10,
                            "sell",
                            224,
                            48,
                            219,
                            210,
                            210,
                            51,
                            234,
                            197,
                            66,
                            220,
                            null
                          ],
                          [
                            "GYHVDLIIXVTLROOCLVYG",
                            "INE272F07011",
                            "BlueDartExpress",
                            true,
                            true,
                            20,
                            1759301230685,
                            200,
                            "sell",
                            151,
                            188,
                            89,
                            94,
                            94,
                            45,
                            54,
                            58,
                            220,
                            6,
                            null
                          ],
                          [
                            "VIHCPUEYSZUMQUVPSJ1P",
                            "INE112J07020",
                            "IFCI",
                            true,
                            true,
                            170,
                            1751520034430,
                            500,
                            "sell",
                            129,
                            82,
                            120,
                            187,
                            187,
                            110,
                            174,
                            71,
                            160,
                            42,
                            null
                          ],
                          [
                            "2BOMU4R5WMEONKEI5YT6",
                            "INE130K08000",
                            "SBOX",
                            false,
                            false,
                            170,
                            1746115966803,
                            500,
                            "sell",
                            97,
                            118,
                            33,
                            9,
                            0,
                            151,
                            6,
                            38,
                            52,
                            40,
                            null
                          ],
                          [
                            "DIQDEZH7K04QBDCJY0NV",
                            "INE130K08001",
                            "QCK",
                            false,
                            false,
                            200,
                            1748304011006,
                            500,
                            "sell",
                            78,
                            112,
                            194,
                            9,
                            0,
                            128,
                            114,
                            154,
                            68,
                            207,
                            null
                          ],
                          [
                            "TFCXQ3TKQRMOHU86MXO1",
                            "INE130K08015",
                            "GGL",
                            true,
                            true,
                            200,
                            1772120698642,
                            600,
                            "sell",
                            103,
                            56,
                            160,
                            203,
                            203,
                            240,
                            171,
                            239,
                            71,
                            42,
                            null
                          ],
                          [
                            "2GFSS7XTAHUWHFZH0NBR",
                            "INE130K08019",
                            "APPL",
                            false,
                            false,
                            180,
                            1771070135804,
                            310,
                            "sell",
                            12,
                            204,
                            93,
                            133,
                            0,
                            63,
                            206,
                            65,
                            13,
                            167,
                            null
                          ],
                          [
                            "FQQ96BPTGAPAQPLMABNU",
                            "INE261F07055",
                            "SGB",
                            true,
                            true,
                            550,
                            1743557101246,
                            789,
                            "sell",
                            52,
                            8,
                            14,
                            119,
                            119,
                            231,
                            1,
                            246,
                            128,
                            155,
                            null
                          ],
                          [
                            "RKW88OVAQVWZMCD9VLJL",
                            "INE261F07055",
                            "SGB",
                            true,
                            true,
                            50,
                            1758463330011,
                            890,
                            "sell",
                            139,
                            196,
                            103,
                            96,
                            96,
                            207,
                            102,
                            68,
                            229,
                            5,
                            null
                          ]
                        ]
                      }
                    ]
                  }
                ]
              }
            }
          }
        }
      }
    },
    "/it/reports/capital-gains/securities/foreign": {
      "post": {
        "summary": "Submit Job",
        "parameters": [
          {
            "name": "input",
            "in": "query",
            "required": true,
            "description": "Type of input file. Allowed values: tradewise_settlement or tradebook.",
            "deprecated": false,
            "schema": {
              "type": "string",
              "enum": [
                "tradebook",
                " tradewise_settlement"
              ]
            },
            "example": "tradewise_settlement"
          },
          {
            "name": "financial_year",
            "in": "query",
            "required": true,
            "description": "Financial year for which the report is generated. Use format FY 20XX-XX (e.g., FY 2024-25).",
            "deprecated": false,
            "schema": {
              "type": "string",
              "pattern": "^FY (19|20)\\d{2}-\\d{2}$",
              "default": "FY 2025-26"
            },
            "example": "FY 2025-26"
          },
          {
            "name": "x-accept-type",
            "in": "header",
            "required": false,
            "description": "Specifies the response format expected from the API. Use application/json for JSON responses or application/xlsx for Excel file downloads.",
            "deprecated": false,
            "schema": {},
            "example": "application/xlsx"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": false,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {},
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": false,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {},
            "example": "{{version}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": false,
            "description": "Bearer token for user-level authorization. Typically passed as Bearer {{access_token}}.",
            "deprecated": false,
            "schema": {},
            "example": "{{access_token}}"
          }
        ],
        "responses": {
          "200": {
            "description": "200",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer"
                    },
                    "timestamp": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "created_at": {
                          "type": "integer"
                        },
                        "updated_at": {
                          "type": "integer"
                        },
                        "@entity": {
                          "type": "string"
                        },
                        "security_type": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string",
                          "format": "uri"
                        },
                        "status": {
                          "type": "string"
                        },
                        "job_id": {
                          "type": "string"
                        }
                      }
                    },
                    "transaction_id": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "code": 200,
                  "timestamp": 1747891175423,
                  "data": {
                    "created_at": 1747891176339,
                    "updated_at": 1747891176339,
                    "@entity": "in.co.sandbox.it.reports.tax_pnl.securities.job",
                    "security_type": "domestic",
                    "url": "https://in-co-sandbox-it-reports-tax-pnl-sec-dev.s3.ap-south-1.amazonaws.com/domestic/9c6846f0-92db-4da3-b982-1b97967c320e/workbook.input?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=EXAMPLEACCESSKEY%2F20250522%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20250522T051936Z&X-Amz-Expires=86400&X-Amz-Signature=EXAMPLE_SIGNATURE&X-Amz-SignedHeaders=host&x-amz-checksum-crc32=AAAAAA%3D%3D&x-amz-sdk-checksum-algorithm=CRC32&x-id=PutObject",
                    "status": "created",
                    "job_id": "9c6846f0-92db-4da3-b982-1b97967c320e"
                  },
                  "transaction_id": "9c6846f0-92db-4da3-b982-1b97967c320e"
                }
              }
            }
          }
        },
        "tags": [
          "tax-pnl",
          "securities",
          "foreign",
          "capital gains"
        ]
      },
      "get": {
        "summary": "Get Job",
        "parameters": [
          {
            "name": "job_id",
            "in": "query",
            "required": true,
            "description": "Unique identifier of the job whose processing status you want to fetch. Returned in the response when a tax P&L job is created.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{tax_pnl_job_id}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Bearer token for user-level authorization. Typically passed as Bearer {{access_token}}.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "transaction_id": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "string",
                      "format": "utc-millisec"
                    }
                  }
                },
                "example": {
                  "transaction_id": "f3dcdd8e-6226-4198-b0c2-a4d98b3477a7",
                  "code": 200,
                  "data": {
                    "status": "created"
                  },
                  "timestamp": "1695117924000"
                }
              }
            }
          },
          "400": {
            "description": "Invalid Param",
            "headers": {
              "Date": {
                "schema": {
                  "type": "string"
                },
                "example": "Tue, 19 Sep 2023 10:03:45 GMT"
              },
              "Content-Length": {
                "schema": {
                  "type": "integer"
                },
                "example": "60"
              },
              "Connection": {
                "schema": {
                  "type": "string"
                },
                "example": "keep-alive"
              },
              "x-amzn-RequestId": {
                "schema": {
                  "type": "string"
                },
                "example": "79005d16-9807-4898-9c96-f58f38e393fc"
              },
              "x-amzn-ErrorType": {
                "schema": {
                  "type": "string"
                },
                "example": "BadRequestException"
              },
              "x-amz-apigw-id": {
                "schema": {
                  "type": "string"
                },
                "example": "Lf7APGRMhcwFoyg="
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string",
                      "format": "style"
                    }
                  }
                },
                "example": {
                  "message": "Missing required request parameters: [job_id]"
                }
              }
            }
          }
        },
        "tags": [
          "tax-pnl",
          "securities",
          "foreign",
          "capital gains"
        ]
      }
    },
    "/it/reports/tax-pnl/securities/foreign": {
      "post": {
        "summary": "Submit Job",
        "parameters": [
          {
            "name": "input",
            "in": "query",
            "required": true,
            "description": "Type of input file. Allowed values: tradewise_settlement or tradebook.",
            "deprecated": false,
            "schema": {
              "type": "string",
              "enum": [
                "tradebook",
                "tradewise_settlement"
              ]
            },
            "example": "tradewise_settlement"
          },
          {
            "name": "financial_year",
            "in": "query",
            "required": true,
            "description": "Financial year for which the report is generated. Use format FY 20XX-XX (e.g., FY 2024-25).",
            "deprecated": false,
            "schema": {
              "type": "string",
              "pattern": "^FY (19|20)\\d{2}-\\d{2}$"
            },
            "example": "FY 2025-26"
          },
          {
            "name": "x-accept-type",
            "in": "header",
            "required": true,
            "description": "Specifies the response format expected from the API. Use application/json for JSON responses or application/xlsx for Excel file downloads.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "application/xlsx"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Bearer token for user-level authorization. Typically passed as Bearer {{access_token}}.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          }
        ],
        "responses": {
          "200": {
            "description": "200",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer"
                    },
                    "timestamp": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "created_at": {
                          "type": "integer"
                        },
                        "updated_at": {
                          "type": "integer"
                        },
                        "@entity": {
                          "type": "string"
                        },
                        "security_type": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string",
                          "format": "uri"
                        },
                        "status": {
                          "type": "string"
                        },
                        "job_id": {
                          "type": "string"
                        }
                      }
                    },
                    "transaction_id": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "code": 200,
                  "timestamp": 1747891175423,
                  "data": {
                    "created_at": 1747891176339,
                    "updated_at": 1747891176339,
                    "@entity": "in.co.sandbox.it.reports.tax_pnl.securities.job",
                    "security_type": "domestic",
                    "url": "https://in-co-sandbox-it-reports-tax-pnl-sec-dev.s3.ap-south-1.amazonaws.com/domestic/9c6846f0-92db-4da3-b982-1b97967c320e/workbook.input?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=EXAMPLEACCESSKEY%2F20250522%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20250522T051936Z&X-Amz-Expires=86400&X-Amz-Signature=EXAMPLE_SIGNATURE&X-Amz-SignedHeaders=host&x-amz-checksum-crc32=AAAAAA%3D%3D&x-amz-sdk-checksum-algorithm=CRC32&x-id=PutObject",
                    "status": "created",
                    "job_id": "9c6846f0-92db-4da3-b982-1b97967c320e"
                  },
                  "transaction_id": "9c6846f0-92db-4da3-b982-1b97967c320e"
                }
              }
            }
          }
        },
        "tags": [
          "tax-pnl",
          "securities",
          "foreign"
        ]
      },
      "get": {
        "summary": "Get Job",
        "parameters": [
          {
            "name": "job_id",
            "in": "query",
            "required": true,
            "description": "Unique identifier of the job whose processing status you want to fetch. Returned in the response when a tax P&L job is created.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{tax_pnl_job_id}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Bearer token for user-level authorization. Typically passed as Bearer {{access_token}}.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "transaction_id": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "string",
                      "format": "utc-millisec"
                    }
                  }
                },
                "example": {
                  "transaction_id": "f3dcdd8e-6226-4198-b0c2-a4d98b3477a7",
                  "code": 200,
                  "data": {
                    "status": "created"
                  },
                  "timestamp": "1695117924000"
                }
              }
            }
          },
          "400": {
            "description": "Invalid Param",
            "headers": {
              "Date": {
                "schema": {
                  "type": "string"
                },
                "example": "Tue, 19 Sep 2023 10:03:45 GMT"
              },
              "Content-Length": {
                "schema": {
                  "type": "integer"
                },
                "example": "60"
              },
              "Connection": {
                "schema": {
                  "type": "string"
                },
                "example": "keep-alive"
              },
              "x-amzn-RequestId": {
                "schema": {
                  "type": "string"
                },
                "example": "79005d16-9807-4898-9c96-f58f38e393fc"
              },
              "x-amzn-ErrorType": {
                "schema": {
                  "type": "string"
                },
                "example": "BadRequestException"
              },
              "x-amz-apigw-id": {
                "schema": {
                  "type": "string"
                },
                "example": "Lf7APGRMhcwFoyg="
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string",
                      "format": "style"
                    }
                  }
                },
                "example": {
                  "message": "Missing required request parameters: [job_id]"
                }
              }
            }
          }
        },
        "tags": [
          "tax-pnl",
          "securities",
          "foreign"
        ]
      }
    },
    "/it/reports/capital-gains": {
      "post": {
        "summary": "Submit Job",
        "parameters": [
          {
            "name": "input",
            "in": "query",
            "required": true,
            "description": "Type of input file.",
            "deprecated": false,
            "schema": {
              "type": "string",
              "default": "tradewise_settlement",
              "enum": [
                "tradewise_settlement"
              ]
            },
            "example": "tradewise_settlement"
          },
          {
            "name": "financial_year",
            "in": "query",
            "required": true,
            "description": "Financial year for which the report is generated. Use format FY 20XX-XX (e.g., FY 2024-25).",
            "deprecated": false,
            "schema": {
              "type": "string",
              "pattern": "^FY (19|20)\\d{2}-\\d{2}$"
            },
            "example": "FY 2025-26"
          },
          {
            "name": "x-accept-type",
            "in": "header",
            "required": true,
            "description": "application/json or application/xlsx",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "application/xlsx"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Token for user-level authorization. ",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          }
        ],
        "responses": {
          "200": {
            "description": "200 OK"
          }
        },
        "tags": [
          "tax-pnl",
          "all assets",
          "capital-gains"
        ]
      },
      "get": {
        "summary": "Get Job",
        "parameters": [
          {
            "name": "job_id",
            "in": "query",
            "required": true,
            "description": "Unique identifier of the job whose processing status you want to fetch. Returned in the response when a tax P&L job is created.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "1d4148d4-c9be-4537-9d61-4a4883424d30"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Token for user-level authorization. ",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          }
        ],
        "responses": {
          "200": {
            "description": "Invalid FY"
          }
        },
        "tags": [
          "tax-pnl",
          "all assets",
          "capital-gains"
        ]
      }
    },
    "/it/reports/tax-pnl": {
      "post": {
        "summary": "Submit Job",
        "parameters": [
          {
            "name": "input",
            "in": "query",
            "required": true,
            "description": "Type of input file.",
            "deprecated": false,
            "schema": {
              "type": "string",
              "default": "tradewise_settlement",
              "enum": [
                "tradewise_settlement"
              ]
            },
            "example": "tradewise_settlement"
          },
          {
            "name": "financial_year",
            "in": "query",
            "required": true,
            "description": "Financial year for which the report is generated. Use format FY 20XX-XX (e.g., FY 2024-25).",
            "deprecated": false,
            "schema": {
              "type": "string",
              "pattern": "^FY (19|20)\\d{2}-\\d{2}$"
            },
            "example": "FY 2025-26"
          },
          {
            "name": "x-accept-type",
            "in": "header",
            "required": true,
            "description": "application/json or application/xlsx",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "application/xlsx"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Token for user-level authorization. ",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          }
        ],
        "responses": {
          "200": {
            "description": "200",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer"
                    },
                    "timestamp": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "created_at": {
                          "type": "integer"
                        },
                        "updated_at": {
                          "type": "integer"
                        },
                        "@entity": {
                          "type": "string"
                        },
                        "security_type": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string",
                          "format": "uri"
                        },
                        "status": {
                          "type": "string"
                        },
                        "job_id": {
                          "type": "string"
                        }
                      }
                    },
                    "transaction_id": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "code": 200,
                  "timestamp": 1747891175423,
                  "data": {
                    "created_at": 1747891176339,
                    "updated_at": 1747891176339,
                    "@entity": "in.co.sandbox.it.reports.tax_pnl.securities.job",
                    "security_type": "domestic",
                    "url": "https://in-co-sandbox-it-reports-tax-pnl-sec-dev.s3.ap-south-1.amazonaws.com/domestic/9c6846f0-92db-4da3-b982-1b97967c320e/workbook.input?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=EXAMPLEACCESSKEY%2F20250522%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20250522T051936Z&X-Amz-Expires=86400&X-Amz-Signature=EXAMPLE_SIGNATURE&X-Amz-SignedHeaders=host&x-amz-checksum-crc32=AAAAAA%3D%3D&x-amz-sdk-checksum-algorithm=CRC32&x-id=PutObject",
                    "status": "created",
                    "job_id": "9c6846f0-92db-4da3-b982-1b97967c320e"
                  },
                  "transaction_id": "9c6846f0-92db-4da3-b982-1b97967c320e"
                }
              }
            }
          }
        },
        "tags": [
          "tax-pnl",
          "all assets"
        ]
      },
      "get": {
        "summary": "Get Job",
        "parameters": [
          {
            "name": "job_id",
            "in": "query",
            "required": true,
            "description": "Unique identifier of the job whose processing status you want to fetch. Returned in the response when a tax P&L job is created.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{tax_pnl_job_id}}"
          },
          {
            "name": "Authorization",
            "in": "header",
            "required": true,
            "description": "Token for user-level authorization. ",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "required": true,
            "description": "Your API key used to authenticate and authorize the request.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          },
          {
            "name": "x-api-version",
            "in": "header",
            "required": true,
            "description": "Indicates the version of the API you want to use. Ensures backward-compatible behavior.",
            "deprecated": false,
            "schema": {
              "type": "string"
            },
            "example": "{{version}}"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "transaction_id": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "status": {
                          "type": "string"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "string",
                      "format": "utc-millisec"
                    }
                  }
                },
                "example": {
                  "transaction_id": "f3dcdd8e-6226-4198-b0c2-a4d98b3477a7",
                  "code": 200,
                  "data": {
                    "status": "created"
                  },
                  "timestamp": "1695117924000"
                }
              }
            }
          },
          "400": {
            "description": "Invalid Param",
            "headers": {
              "Date": {
                "schema": {
                  "type": "string"
                },
                "example": "Tue, 19 Sep 2023 10:03:45 GMT"
              },
              "Content-Length": {
                "schema": {
                  "type": "integer"
                },
                "example": "60"
              },
              "Connection": {
                "schema": {
                  "type": "string"
                },
                "example": "keep-alive"
              },
              "x-amzn-RequestId": {
                "schema": {
                  "type": "string"
                },
                "example": "79005d16-9807-4898-9c96-f58f38e393fc"
              },
              "x-amzn-ErrorType": {
                "schema": {
                  "type": "string"
                },
                "example": "BadRequestException"
              },
              "x-amz-apigw-id": {
                "schema": {
                  "type": "string"
                },
                "example": "Lf7APGRMhcwFoyg="
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "message": {
                      "type": "string",
                      "format": "style"
                    }
                  }
                },
                "example": {
                  "message": "Missing required request parameters: [job_id]"
                }
              }
            }
          }
        },
        "tags": [
          "tax-pnl",
          "all assets"
        ]
      }
    },
    "/it/reports/mutual-fund/capital-gains-statement/generate-otp": {
      "post": {
        "summary": "Generate OTP",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "{{quicko_sbox_api_key}}"
          }
        ],
        "responses": {
          "200": {
            "description": "200 OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "timestamp": {
                      "type": "integer"
                    },
                    "transaction_id": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "reqId": {
                          "type": "integer"
                        },
                        "otpRef": {
                          "type": "string"
                        },
                        "userSubjectReference": {
                          "type": "string"
                        },
                        "clientRefNo": {
                          "type": "string"
                        }
                      }
                    },
                    "message": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    }
                  }
                },
                "example": {
                  "timestamp": 1719333398168,
                  "transaction_id": "b34465da-8536-4623-9ac7-bbf48f046c8e",
                  "data": {
                    "reqId": 2595729,
                    "otpRef": "1d86e398-d013006267b6b2-1ad81954e2e9",
                    "userSubjectReference": "",
                    "clientRefNo": "ad8389ab-96ed-4745-8392-505f6ef869c8"
                  },
                  "message": "OTP Generated Successfully",
                  "code": 200
                }
              }
            }
          },
          "400": {
            "description": "400 Invalid PAN, Mobile or Email",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "timestamp": {
                      "type": "integer"
                    },
                    "transaction_id": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    }
                  }
                },
                "example": {
                  "timestamp": 1720086185826,
                  "transaction_id": "bd4d3286-e68b-4bbb-9568-5691375cfe90",
                  "message": "Invalid PAN, Mobile or Email",
                  "code": 403
                }
              }
            }
          },
          "403": {
            "description": "403 Not Invested In Mutual Funds",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "timestamp": {
                      "type": "integer"
                    },
                    "transaction_id": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    }
                  }
                },
                "example": {
                  "timestamp": 1720086185826,
                  "transaction_id": "bd4d3286-e68b-4bbb-9568-5691375cfe90",
                  "message": "User has not invested in Mutual Funds",
                  "code": 403
                }
              }
            }
          }
        },
        "tags": [
          "mutual-funds"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "from": {
                    "type": "integer"
                  },
                  "to": {
                    "type": "integer"
                  },
                  "mobile": {
                    "type": "integer"
                  },
                  "pan": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "from": 1617235200000,
                "to": 1648684800000,
                "mobile": 9106800413,
                "pan": "FQJPP6267G"
              }
            }
          }
        }
      }
    },
    "/it/reports/mutual-fund/capital-gains-statement/verify-otp": {
      "post": {
        "summary": "Verify OTP",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "{{access_token}}"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "{{quicko_sbox_api_key}}"
          }
        ],
        "responses": {
          "200": {
            "description": "200 OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "timestamp": {
                      "type": "integer"
                    },
                    "transaction_id": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "access_token": {
                          "type": "string"
                        }
                      }
                    },
                    "message": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    }
                  }
                },
                "example": {
                  "timestamp": 200,
                  "transaction_id": "32b363ca-5aff-4b4b-b5f1-3094ae99b23e",
                  "data": {
                    "access_token": "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJyZXF1ZXN0X2lkIjoiMjU5NTczNCIsIm90cF9yZWZyZW5jZV9udW1iZXIiOiIyMDMwMDNmZC04NDEzMDA2MjY3OWRiYy1lYzk5YjQ0Nzg0YWQiLCJjbGllbnRfcmVmZXJlbmNlX251bWJlciI6ImE1MThhOGQ4LWUzZmUtNGIwZC05MmI2LWQyZTk5YjMwNTZjZSIsImlhdCI6MTcxOTMzMzk3MiwiZXhwIjoxNzE5NDIwMzcyLCJhdWQiOiIyNGgiLCJpc3MiOiJtZi1jZW50cmFsLnNhbmRib3guY28uaW4iLCJzdWIiOiJGUUpQUDYyNjdHIn0.CJ7MXMW_xW-Up3GgenPkm7F7zAY3uKMaC_378DmTEUl1244SQmQfK4mJvQ1vWsuzUVsWerbXnpU6j7DQk0Yhxw"
                  },
                  "message": "OTP Verified Successfully",
                  "code": 200
                }
              }
            }
          },
          "401": {
            "description": "401 Invalid OTP",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "timestamp": {
                      "type": "integer"
                    },
                    "transaction_id": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    }
                  }
                },
                "example": {
                  "timestamp": 200,
                  "transaction_id": "32b363ca-5aff-4b4b-b5f1-3094ae99b23e",
                  "message": "Invalid OTP",
                  "code": 401
                }
              }
            }
          }
        },
        "tags": [
          "mutual-funds"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "pan": {
                    "type": "string"
                  },
                  "otp": {
                    "type": "string",
                    "format": "color"
                  },
                  "request_id": {
                    "type": "integer"
                  },
                  "otp_reference_number": {
                    "type": "string"
                  },
                  "client_reference_number": {
                    "type": "string"
                  }
                }
              },
              "example": {
                "pan": "FQJPP6267G",
                "otp": "006267",
                "request_id": 2611225,
                "otp_reference_number": "c130db94-826200626799d1-a0e72e4ffd22",
                "client_reference_number": "cef7d116-6d6c-4c63-b504-becb1f21a760"
              }
            }
          }
        }
      }
    },
    "/it/reports/mutual-fund/capital-gains-statement": {
      "get": {
        "summary": "Get Capital Gains Statement",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "{{mf_investor_access_token}}"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "{{quicko_sbox_api_key}}"
          }
        ],
        "responses": {
          "200": {
            "description": "200 OK | AIMPV6407E (Single AMC)",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "@entity": {
                          "type": "string"
                        },
                        "sheets": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string"
                              },
                              "@entity": {
                                "type": "string"
                              },
                              "blocks": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "name": {
                                      "type": "string"
                                    },
                                    "@entity": {
                                      "type": "string"
                                    },
                                    "items": {
                                      "type": "array",
                                      "items": {
                                        "type": "array",
                                        "items": {
                                          "type": "string"
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "timestamp": {
                      "type": "integer"
                    },
                    "transaction_id": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "code": 200,
                  "data": {
                    "name": "capital_gains_statement_workbook",
                    "@entity": "workbook",
                    "sheets": [
                      {
                        "name": "summary_sheet",
                        "@entity": "sheet",
                        "blocks": [
                          {
                            "name": "client_details_list",
                            "@entity": "list",
                            "items": [
                              [
                                "name",
                                "VIGNESH KUMARAN"
                              ],
                              [
                                "mobile",
                                "1111111111"
                              ],
                              [
                                "email",
                                "xxx@kfintech.com"
                              ],
                              [
                                "street_1",
                                "XXXXXUBBIAN STREET"
                              ],
                              [
                                "street_2",
                                "XXXXXUDUR"
                              ],
                              [
                                "area",
                                "NA"
                              ],
                              [
                                "city",
                                "COIMBATORE"
                              ],
                              [
                                "state",
                                "TAMIL NADU"
                              ],
                              [
                                "pincode",
                                "641038"
                              ]
                            ]
                          },
                          {
                            "name": "quarter_wise_capital_gains_summary_table",
                            "@entity": "table",
                            "header": [
                              "particulars",
                              "01/04_to_15/06",
                              "16/06_to_15/09",
                              "16/12_to_15/03",
                              "16/03_to_31/03",
                              "total",
                              "account_statement_id"
                            ],
                            "rows": [
                              [
                                "full_value_consideration",
                                52004.89,
                                61350.07,
                                5518.83,
                                0,
                                0,
                                118873.79,
                                0
                              ],
                              [
                                "cost_of_acquisition",
                                51911.16,
                                61085.79,
                                5499.16,
                                0,
                                0,
                                118496.11,
                                0
                              ],
                              [
                                "short_term_capital_gain/loss",
                                93.73,
                                264.28,
                                19.67,
                                0,
                                0,
                                377.68,
                                0
                              ],
                              [
                                "fair_market_value_of_capital_asset_as_per_section_55(2)(ac)",
                                0,
                                0,
                                0,
                                0,
                                0,
                                0,
                                0
                              ],
                              [
                                "long_term_without_index_capital_gain/loss",
                                0,
                                0,
                                0,
                                0,
                                0,
                                0,
                                0
                              ],
                              [
                                "long_term_without_index_capital_gain/loss",
                                0,
                                0,
                                0,
                                0,
                                0,
                                0,
                                0
                              ]
                            ]
                          }
                        ]
                      },
                      {
                        "name": "mutual_funds_tradewise_settlements_sheet",
                        "@entity": "sheet",
                        "blocks": [
                          {
                            "name": "mutual_fund_tradewise_settlements_table",
                            "@entity": "table",
                            "header": [
                              "amc_type",
                              "amc_name",
                              "folio_number",
                              "description",
                              "type",
                              "asset_class",
                              "quantity",
                              "isin",
                              "buy_date",
                              "buy_price",
                              "buy_value",
                              "sell_date",
                              "sell_price",
                              "stt",
                              "transaction_type",
                              "cost_of_acquisition",
                              "grandfathered_units",
                              "grandfathered_nav",
                              "grandfathered_market_value",
                              "short_term_capital_gains",
                              "long_term_capital_gains_with_indexation",
                              "long_term_capital_gains_without_indexation",
                              "tax_rate",
                              "tds",
                              "surcharge",
                              "account_statement_id"
                            ],
                            "rows": [
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Arbitrage Fund - Direct Growth INF846K01PZ1 ",
                                "Purchase",
                                "equity",
                                319.242,
                                319.242,
                                319.242,
                                "INF846K01PZ1",
                                1626373800000,
                                15.6613,
                                4996.52,
                                1626978600000,
                                15.6512,
                                0,
                                "Redemption",
                                0,
                                0,
                                12.8845,
                                null,
                                -3.47,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Small Cap Fund - Direct Growth INF846K01K35 ",
                                "Systematic Investment",
                                "equity",
                                0.813,
                                0.813,
                                0.813,
                                "INF846K01K35",
                                1627929000000,
                                61.47,
                                48.01,
                                1629657000000,
                                59.05,
                                0,
                                "Redemption",
                                0,
                                0,
                                29.51,
                                null,
                                -1.97,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Small Cap Fund - Direct Growth INF846K01K35 ",
                                "Systematic Investment",
                                "equity",
                                6.876,
                                6.876,
                                6.876,
                                "INF846K01K35",
                                1627929000000,
                                61.47,
                                402,
                                1629657000000,
                                58.46,
                                0,
                                "Redemption",
                                0,
                                0,
                                29.51,
                                null,
                                -20.69,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Small Cap Fund - Direct Growth INF846K01K35 ",
                                "Systematic Investment",
                                "equity",
                                0.445,
                                0.445,
                                0.445,
                                "INF846K01K35",
                                1627929000000,
                                61.47,
                                26.32,
                                1629743400000,
                                59.15,
                                0,
                                "Redemption",
                                0,
                                0,
                                29.51,
                                null,
                                -1.03,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND (Undefined Asset Class)",
                                "91099107396",
                                "AXIS MUTUAL FUND (Undefined Asset Class) INF846K01CX4 ",
                                "Purchase",
                                "equity",
                                0.22,
                                0.22,
                                0.22,
                                "INF846K01CX4",
                                1610562600000,
                                2269.1416,
                                503.59,
                                1618943400000,
                                2289.0484,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                4.36,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                0.22,
                                0.22,
                                0.22,
                                "INF846K01CX4",
                                1610562600000,
                                2269.1416,
                                503.59,
                                1618943400000,
                                2289.0484,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                4.36,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                21.81,
                                21.81,
                                21.81,
                                "INF846K01CX4",
                                1618770600000,
                                2288.6201,
                                50000,
                                1620585000000,
                                2292.5195,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                82.71,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                0.435,
                                0.435,
                                0.435,
                                "INF846K01CX4",
                                1618770600000,
                                2288.6201,
                                1000,
                                1622399400000,
                                2296.3512,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                4.4,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                0.434,
                                0.434,
                                0.434,
                                "INF846K01CX4",
                                1618770600000,
                                2288.6201,
                                1000,
                                1625596200000,
                                2304.5283,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                6.69,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                1.57,
                                1.57,
                                1.57,
                                "INF846K01CX4",
                                1618770600000,
                                2288.6201,
                                3624.11,
                                1627237800000,
                                2308.3472,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                30.8,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                19.657,
                                19.657,
                                19.657,
                                "INF846K01CX4",
                                1622572200000,
                                2297.3721,
                                45375.89,
                                1627237800000,
                                2308.3472,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                214.19,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                2.106,
                                2.106,
                                2.106,
                                "INF846K01CX4",
                                1622572200000,
                                2297.3721,
                                4873,
                                1629138600000,
                                2313.8651,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                34.49,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                0.434,
                                0.434,
                                0.434,
                                "INF846K01CX4",
                                1624300200000,
                                2301.6041,
                                1004.22,
                                1629138600000,
                                2313.8651,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                5.27,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                0.215,
                                0.215,
                                0.215,
                                "INF846K01CX4",
                                1632681000000,
                                2322.1069,
                                501.56,
                                1637001000000,
                                2332.8279,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                2.29,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                21.393,
                                21.393,
                                21.393,
                                "INF846K01CX4",
                                1638642600000,
                                2337.0831,
                                50069.74,
                                1640025000000,
                                2340.4732,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                70.02,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "910105235091",
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                "Purchase",
                                "debt",
                                0.219,
                                0.219,
                                0.219,
                                "INF846K01CX4",
                                1614623400000,
                                2278.6408,
                                501.3,
                                1618943400000,
                                2289.0484,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                2.26,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ],
                              [
                                "128",
                                "AXIS MUTUAL FUND",
                                "91099107396",
                                "Axis Overnight Fund - Direct Growth INF846K01N65 ",
                                "Purchase",
                                "debt",
                                4.521,
                                4.521,
                                4.521,
                                "INF846K01N65",
                                1633545000000,
                                1105.8712,
                                5017.27,
                                1637001000000,
                                1109.7703,
                                0,
                                "Redemption",
                                0,
                                0,
                                0,
                                null,
                                17.38,
                                0,
                                0,
                                "0.00",
                                0,
                                0,
                                0
                              ]
                            ]
                          }
                        ]
                      },
                      {
                        "name": "mutual_funds_scripwise_settlements_sheet",
                        "@entity": "sheet",
                        "blocks": [
                          {
                            "name": "mutual_funds_scripwise_settlements_table",
                            "@entity": "table",
                            "header": [
                              "scheme_name",
                              "count",
                              "buy_value",
                              "sell_value",
                              "indexed_cost",
                              "market_value",
                              "short_term_capital_gains",
                              "long_term_capital_gains_with_indexation",
                              "long_term_capital_gains_without_indexation",
                              "tds",
                              "account_statement_Id"
                            ],
                            "rows": [
                              [
                                "Axis Arbitrage Fund - Direct Growth INF846K01PZ1 ",
                                1,
                                4996.52,
                                4999.99,
                                0,
                                0,
                                -3.47,
                                0,
                                0,
                                0,
                                0
                              ],
                              [
                                "Axis Liquid Fund - Direct Growth INF846K01CX4 ",
                                11,
                                158453.41,
                                157995.93,
                                0,
                                0,
                                457.48,
                                0,
                                0,
                                0,
                                0
                              ],
                              [
                                "Axis Overnight Fund - Direct Growth INF846K01N65 ",
                                1,
                                5017.27,
                                4999.89,
                                0,
                                0,
                                17.38,
                                0,
                                0,
                                0,
                                0
                              ],
                              [
                                "Axis Small Cap Fund - Direct Growth INF846K01K35 ",
                                3,
                                476.33,
                                500.02,
                                0,
                                0,
                                -23.69,
                                0,
                                0,
                                0,
                                0
                              ]
                            ]
                          }
                        ]
                      }
                    ]
                  },
                  "timestamp": 1719587215541,
                  "transaction_id": "context.requestId"
                }
              }
            }
          },
          "202": {
            "description": "202 In Progress Request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "timestamp": {
                      "type": "integer"
                    },
                    "transaction_id": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    }
                  }
                },
                "example": {
                  "timestamp": 200,
                  "transaction_id": "ab62991c-71b9-4f52-ae6f-c839225116a9",
                  "message": "In Progress Request",
                  "code": 202
                }
              }
            }
          }
        },
        "tags": [
          "mutual-funds"
        ]
      }
    },
    "/it-reports/tax-computation/generate": {
      "post": {
        "summary": "Tax Computation - Submit Job",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "eyJhbGciOiJIUzUxMiJ9.eyJhdWQiOiJBUEkiLCJyZWZyZXNoX3Rva2VuIjoiZXlKaGJHY2lPaUpJVXpVeE1pSjkuZXlKaGRXUWlPaUpCVUVraUxDSnpkV0lpT2lKellYSjBhR0ZyTG5Sb1lXdHJZWEpBY1hWcFkydHZMbU52YlNJc0ltRndhVjlyWlhraU9pSnJaWGxmYkdsMlpWOWxTbmhwZFVveE9GZHpTREV6Y2taWVJVRlpTelpwTnpkNmMyNVhVemd3Y3lJc0ltbHpjeUk2SW1Gd2FTNXpZVzVrWW05NExtTnZMbWx1SWl3aVpYaHdJam94TnpJek56ZzVORGcwTENKcGJuUmxiblFpT2lKU1JVWlNSVk5JWDFSUFMwVk9JaXdpYVdGMElqb3hOamt5TVRZM01EZzBmUS4zd1NyT0pvWTdGMzBBZExocmRlTGd5R1BpV3hFOFh3dHVxVkpabFRZZmFFNUxWRXZ3cUxpT2pqRVE4WDdQclF3eUh0d2xBemhBb3A4TUlTa1lHLWR1USIsInN1YiI6InNhcnRoYWsudGhha2thckBxdWlja28uY29tIiwiYXBpX2tleSI6ImtleV9saXZlX2VKeGl1SjE4V3NIMTNyRlhFQVlLNmk3N3pzbldTODBzIiwiaXNzIjoiYXBpLnNhbmRib3guY28uaW4iLCJleHAiOjE2OTIyNTM0ODQsImludGVudCI6IkFDQ0VTU19UT0tFTiIsImlhdCI6MTY5MjE2NzA4NH0.wS0s9WGeLVmtC00aZXM7S3Il-3OB4iM-UQJn0wT-mAUiSNgtjXzqUTAUw_mBBV6xYgnGakLAf_8Ty-AZEandNg"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "key_live_eJxiuJ18WsH13rFXEAYK6i77zsnWS80s"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "transaction_id": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    },
                    "job": {
                      "type": "object",
                      "properties": {
                        "job_id": {
                          "type": "string"
                        },
                        "presigned_url": {
                          "type": "string",
                          "format": "uri"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "integer"
                    }
                  }
                },
                "example": {
                  "transaction_id": "49f15670-1516-4e4f-9821-9dff154d3154",
                  "code": 200,
                  "job": {
                    "job_id": "49f15670-1516-4e4f-9821-9dff154d3154",
                    "presigned_url": "https://s3.ap-south-1.amazonaws.com/in-co-sandbox-it-reports-tax-computation-dev/49f15670-1516-4e4f-9821-9dff154d3154.json?X-Amz-Security-Token=EXAMPLE_SECURITY_TOKEN&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20230808T091427Z&X-Amz-SignedHeaders=host&X-Amz-Expires=298&X-Amz-Credential=EXAMPLEACCESSKEY%2F20230808%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=EXAMPLE_SIGNATURE"
                  },
                  "timestamp": 1691486043000
                }
              }
            }
          }
        },
        "tags": [
          "tax-computation"
        ]
      }
    },
    "/it-reports/tax-computation": {
      "get": {
        "summary": "Tax computation - Poll Job",
        "parameters": [
          {
            "name": "job_id",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "example": "2a4bb15b-70dd-4fbd-b0de-51f2ebc6ea72"
          },
          {
            "name": "Authorization",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "eyJhbGciOiJIUzUxMiJ9.eyJhdWQiOiJBUEkiLCJyZWZyZXNoX3Rva2VuIjoiZXlKaGJHY2lPaUpJVXpVeE1pSjkuZXlKaGRXUWlPaUpCVUVraUxDSnpkV0lpT2lKellYSjBhR0ZyTG5Sb1lXdHJZWEpBY1hWcFkydHZMbU52YlNJc0ltRndhVjlyWlhraU9pSnJaWGxmYkdsMlpWOWxTbmhwZFVveE9GZHpTREV6Y2taWVJVRlpTelpwTnpkNmMyNVhVemd3Y3lJc0ltbHpjeUk2SW1Gd2FTNXpZVzVrWW05NExtTnZMbWx1SWl3aVpYaHdJam94TnpJek56ZzVORGcwTENKcGJuUmxiblFpT2lKU1JVWlNSVk5JWDFSUFMwVk9JaXdpYVdGMElqb3hOamt5TVRZM01EZzBmUS4zd1NyT0pvWTdGMzBBZExocmRlTGd5R1BpV3hFOFh3dHVxVkpabFRZZmFFNUxWRXZ3cUxpT2pqRVE4WDdQclF3eUh0d2xBemhBb3A4TUlTa1lHLWR1USIsInN1YiI6InNhcnRoYWsudGhha2thckBxdWlja28uY29tIiwiYXBpX2tleSI6ImtleV9saXZlX2VKeGl1SjE4V3NIMTNyRlhFQVlLNmk3N3pzbldTODBzIiwiaXNzIjoiYXBpLnNhbmRib3guY28uaW4iLCJleHAiOjE2OTIyNTM0ODQsImludGVudCI6IkFDQ0VTU19UT0tFTiIsImlhdCI6MTY5MjE2NzA4NH0.wS0s9WGeLVmtC00aZXM7S3Il-3OB4iM-UQJn0wT-mAUiSNgtjXzqUTAUw_mBBV6xYgnGakLAf_8Ty-AZEandNg"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "key_live_eJxiuJ18WsH13rFXEAYK6i77zsnWS80s"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "transaction_id": {
                      "type": "string"
                    },
                    "code": {
                      "type": "integer"
                    },
                    "job": {
                      "type": "object",
                      "properties": {
                        "url": {
                          "type": "string",
                          "format": "uri"
                        },
                        "status": {
                          "type": "string"
                        }
                      }
                    },
                    "timestamp": {
                      "type": "integer"
                    }
                  }
                },
                "example": {
                  "transaction_id": "7d0e9b77-a112-49a9-a204-0eec00205d78",
                  "code": 200,
                  "job": {
                    "url": "https://s3.ap-south-1.amazonaws.com/in-co-sandbox-it-reports-tax-computation-dev/49f15670-1516-4e4f-9821-9dff154d3154.pdf?X-Amz-Security-Token=EXAMPLE_SECURITY_TOKEN&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20230808T091558Z&X-Amz-SignedHeaders=host&X-Amz-Expires=604795&X-Amz-Credential=EXAMPLEACCESSKEY%2F20230808%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=EXAMPLE_SIGNATURE",
                    "status": "JOBDONE"
                  },
                  "timestamp": 1691486144000
                }
              }
            }
          }
        },
        "tags": [
          "tax-computation"
        ]
      }
    },
    "/it-reports/financial-statement": {
      "post": {
        "summary": "Financial Statement - Submit Job",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "eyJhbGciOiJIUzUxMiJ9.eyJhdWQiOiJBUEkiLCJyZWZyZXNoX3Rva2VuIjoiZXlKaGJHY2lPaUpJVXpVeE1pSjkuZXlKaGRXUWlPaUpCVUVraUxDSnpkV0lpT2lKellYSjBhR0ZyTG5Sb1lXdHJZWEpBY1hWcFkydHZMbU52YlNJc0ltRndhVjlyWlhraU9pSnJaWGxmYkdsMlpWOWxTbmhwZFVveE9GZHpTREV6Y2taWVJVRlpTelpwTnpkNmMyNVhVemd3Y3lJc0ltbHpjeUk2SW1Gd2FTNXpZVzVrWW05NExtTnZMbWx1SWl3aVpYaHdJam94TnpJek9EY3hOREE1TENKcGJuUmxiblFpT2lKU1JVWlNSVk5JWDFSUFMwVk9JaXdpYVdGMElqb3hOamt5TWpRNU1EQTVmUS5DMlhxb3NWNWlnZVJ5aTNKS1VncnJrTjE2cnVfVHRDM2ZBakR0YjlWUzlKVXB1Zng4NS1sSUxScFBLcDhOeEJDRjRJYTJteDRnVXdXXzJNSTd1akExZyIsInN1YiI6InNhcnRoYWsudGhha2thckBxdWlja28uY29tIiwiYXBpX2tleSI6ImtleV9saXZlX2VKeGl1SjE4V3NIMTNyRlhFQVlLNmk3N3pzbldTODBzIiwiaXNzIjoiYXBpLnNhbmRib3guY28uaW4iLCJleHAiOjE2OTIzMzU0MDksImludGVudCI6IkFDQ0VTU19UT0tFTiIsImlhdCI6MTY5MjI0OTAwOX0.LSMPSTrKAeAsIV7KAgY-aWNnr91DWRH3A8F6iuLIEBmlBlQByVyVvllhMdBSAkGIMBZ9IQeTCG_UsE5D0Qk-GA"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "key_live_eJxiuJ18WsH13rFXEAYK6i77zsnWS80s"
          }
        ],
        "responses": {},
        "tags": [
          "financial-statements"
        ]
      },
      "get": {
        "summary": "Financial Statement - Poll Job",
        "parameters": [
          {
            "name": "job_id",
            "in": "query",
            "schema": {
              "type": "string"
            },
            "example": "f0243412-2b82-4d5f-b1e9-9d8543dafe8d"
          },
          {
            "name": "Authorization",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "eyJhbGciOiJIUzUxMiJ9.eyJhdWQiOiJBUEkiLCJyZWZyZXNoX3Rva2VuIjoiZXlKaGJHY2lPaUpJVXpVeE1pSjkuZXlKaGRXUWlPaUpCVUVraUxDSnpkV0lpT2lKellYSjBhR0ZyTG5Sb1lXdHJZWEpBY1hWcFkydHZMbU52YlNJc0ltRndhVjlyWlhraU9pSnJaWGxmYkdsMlpWOWxTbmhwZFVveE9GZHpTREV6Y2taWVJVRlpTelpwTnpkNmMyNVhVemd3Y3lJc0ltbHpjeUk2SW1Gd2FTNXpZVzVrWW05NExtTnZMbWx1SWl3aVpYaHdJam94TnpJek9EY3hOREE1TENKcGJuUmxiblFpT2lKU1JVWlNSVk5JWDFSUFMwVk9JaXdpYVdGMElqb3hOamt5TWpRNU1EQTVmUS5DMlhxb3NWNWlnZVJ5aTNKS1VncnJrTjE2cnVfVHRDM2ZBakR0YjlWUzlKVXB1Zng4NS1sSUxScFBLcDhOeEJDRjRJYTJteDRnVXdXXzJNSTd1akExZyIsInN1YiI6InNhcnRoYWsudGhha2thckBxdWlja28uY29tIiwiYXBpX2tleSI6ImtleV9saXZlX2VKeGl1SjE4V3NIMTNyRlhFQVlLNmk3N3pzbldTODBzIiwiaXNzIjoiYXBpLnNhbmRib3guY28uaW4iLCJleHAiOjE2OTIzMzU0MDksImludGVudCI6IkFDQ0VTU19UT0tFTiIsImlhdCI6MTY5MjI0OTAwOX0.LSMPSTrKAeAsIV7KAgY-aWNnr91DWRH3A8F6iuLIEBmlBlQByVyVvllhMdBSAkGIMBZ9IQeTCG_UsE5D0Qk-GA"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "key_live_eJxiuJ18WsH13rFXEAYK6i77zsnWS80s"
          }
        ],
        "responses": {},
        "tags": [
          "financial-statements"
        ]
      }
    },
    "/it/report/2024/itr": {
      "post": {
        "summary": "ITR json",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "eyJ0eXAiOiJKV1MiLCJhbGciOiJSU0FTU0FfUFNTX1NIQV81MTIiLCJraWQiOiJkYjlhOTJhNi1mNTg1LTQyMGUtYjAyYi02YTk0MTFiYjE5NTUifQ.eyJyZWZyZXNoX3Rva2VuIjoiZXlKMGVYQWlPaUpLVjFNaUxDSmhiR2NpT2lKU1UwRlRVMEZmVUZOVFgxTklRVjgxTVRJaUxDSnJhV1FpT2lKa1lqbGhPVEpoTmkxbU5UZzFMVFF5TUdVdFlqQXlZaTAyWVRrME1URmlZakU1TlRVaWZRLmV5SnpkV0lpT2lKclpYbGZiR2wyWlY4NE5UaGtOMlV5TVdNeE16VTBZMlJrT1RVeVpEQmlObVF6WVRrMU4yTXdaU0lzSW1Gd2FWOXJaWGtpT2lKclpYbGZiR2wyWlY4NE5UaGtOMlV5TVdNeE16VTBZMlJrT1RVeVpEQmlObVF6WVRrMU4yTXdaU0lzSW5kdmNtdHpjR0ZqWlY5cFpDSTZJall3T1RSaE0yWmtMVFF6WlRZdE5HVXdOUzFpWlRneUxUTXdPR0ppTkRnNU5HSXpNU0lzSW1GMVpDSTZJa0ZRU1NJc0ltbHVkR1Z1ZENJNklsSkZSbEpGVTBoZlZFOUxSVTRpTENKcGMzTWlPaUprWlhZdFlYQnBMbk5oYm1SaWIzZ3VZMjh1YVc0aUxDSmxlSEFpT2pFM09EQTBPVEE1TlRZc0ltbGhkQ0k2TVRjME9EazFORGsxTm4wLkFnaGc3TTBKZUZEc0NMdUhtVHJvLTFpSE1aREp6ZUpEYVZkNXNhS3MyWVNibTgwclVTYW1vSm14eEdKNFdzZ09RZk1tVC1LZVZWcW1LX3VYZ2UwUjlQaG1DcWlGcEM0S0lqenJySmRSLWd0ZVlBSVN0SW00aHNxQUpLaDJzVFJYVV9vb2pzbUJlejFFMUJVQ2ZZQzNEekxVVzBxTFNOR2pxWXVpempWVTlMUnZ3YldSNWI3Zk9Pb2hMT3I4MEJwcm8zUGtycThNSXNQWFc5V1FiWVduWnl4blV3b1NjcldiY3ZBQk4tX1RpTW9KZnBUR2p3TDBfeHF0c1V5blo2TDZMUnVvZFhDQ256WGw3c3ZhY2NZOWg3dEhzRnZRc3E3d1o0bVRpMjhSeDQxamphcUxWb3E2QWIteFViV2hvNi1MSV9wNzRoVUFQQjJIOTAxVXhoNF9wUSIsIndvcmtzcGFjZV9pZCI6IjYwOTRhM2ZkLTQzZTYtNGUwNS1iZTgyLTMwOGJiNDg5NGIzMSIsInN1YiI6ImtleV9saXZlXzg1OGQ3ZTIxYzEzNTRjZGQ5NTJkMGI2ZDNhOTU3YzBlIiwiYXBpX2tleSI6ImtleV9saXZlXzg1OGQ3ZTIxYzEzNTRjZGQ5NTJkMGI2ZDNhOTU3YzBlIiwiYXVkIjoiQVBJIiwiaW50ZW50IjoiQUNDRVNTX1RPS0VOIiwiaXNzIjoiZGV2LWFwaS5zYW5kYm94LmNvLmluIiwiaWF0IjoxNzQ4OTU0OTU2LCJleHAiOjE3NDkwNDEzNTZ9.SnZyD7b5CdGsCOMkCNRhSeNPdvg9hVpJZbxWo-tzOlRan-4olGIExL-5fWghJlnM8DcnpM7poeAf1MDYRMuYqxUOUssceN7A0iMbq_6hS-MBg5wvjtGGP8GvqNUq91NtHQrmNQ6BJdCD6CgVxiJ_aS0cluHFK9bHW09UkBC440SBmsVMZebIpjI7d_r1y8kVoIUmJ7wmHEIhHU4v6fux1YyFuRIC6nAgmFauiVIGsQ4v9NzdKd6ViNbu7VL-MesZ-jxzimmTlLFuwzRoeYNwBsNPVhHzQ9iHYRFdxzBMP0iDaVeSeR68QmbczWnjUDj0U_i3CdK32LDcpqUUwtwynA"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "key_live_858d7e21c1354cdd952d0b6d3a957c0e"
          }
        ],
        "responses": {
          "200": {
            "description": "200 OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer"
                    },
                    "timestamp": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "ITR": {
                          "type": "object",
                          "properties": {
                            "ITR1": {
                              "type": "object",
                              "properties": {
                                "CreationInfo": {
                                  "type": "object",
                                  "properties": {
                                    "IntermediaryCity": {
                                      "type": "string"
                                    },
                                    "JSONCreationDate": {
                                      "type": "string",
                                      "format": "date"
                                    },
                                    "Digest": {
                                      "type": "string"
                                    },
                                    "SWVersionNo": {
                                      "type": "string"
                                    },
                                    "SWCreatedBy": {
                                      "type": "string"
                                    },
                                    "JSONCreatedBy": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "ITR1_IncomeDeductions": {
                                  "type": "object",
                                  "properties": {
                                    "GrossSalary": {
                                      "type": "integer"
                                    },
                                    "TotalIncomeOfHP": {
                                      "type": "integer"
                                    },
                                    "IncomeNotified89AType": {
                                      "type": "array",
                                      "items": {}
                                    },
                                    "AllwncExemptUs10": {
                                      "type": "object",
                                      "properties": {
                                        "TotalAllwncExemptUs10": {
                                          "type": "integer"
                                        },
                                        "AllwncExemptUs10Dtls": {
                                          "type": "array",
                                          "items": {}
                                        }
                                      }
                                    },
                                    "NetSalary": {
                                      "type": "integer"
                                    },
                                    "ExemptIncAgriOthUs10": {
                                      "type": "object",
                                      "properties": {
                                        "ExemptIncAgriOthUs10Total": {
                                          "type": "integer"
                                        },
                                        "ExemptIncAgriOthUs10Dtls": {
                                          "type": "array",
                                          "items": {}
                                        }
                                      }
                                    },
                                    "GrossTotIncome": {
                                      "type": "integer"
                                    },
                                    "UsrDeductUndChapVIA": {
                                      "type": "object",
                                      "properties": {
                                        "Section80DD": {
                                          "type": "integer"
                                        },
                                        "Section80EE": {
                                          "type": "integer"
                                        },
                                        "Section80GG": {
                                          "type": "integer"
                                        },
                                        "Section80EEA": {
                                          "type": "integer"
                                        },
                                        "Section80GGA": {
                                          "type": "integer"
                                        },
                                        "Section80TTA": {
                                          "type": "integer"
                                        },
                                        "Section80DDB": {
                                          "type": "integer"
                                        },
                                        "Section80EEB": {
                                          "type": "integer"
                                        },
                                        "Section80TTB": {
                                          "type": "integer"
                                        },
                                        "Section80CCC": {
                                          "type": "integer"
                                        },
                                        "Section80GGC": {
                                          "type": "integer"
                                        },
                                        "Section80U": {
                                          "type": "integer"
                                        },
                                        "Section80CCDEmployer": {
                                          "type": "integer"
                                        },
                                        "TotalChapVIADeductions": {
                                          "type": "integer"
                                        },
                                        "Section80C": {
                                          "type": "integer"
                                        },
                                        "Section80D": {
                                          "type": "integer"
                                        },
                                        "Section80CCD1B": {
                                          "type": "integer"
                                        },
                                        "Section80G": {
                                          "type": "integer"
                                        },
                                        "AnyOthSec80CCH": {
                                          "type": "integer"
                                        },
                                        "Section80E": {
                                          "type": "integer"
                                        },
                                        "Section80CCDEmployeeOrSE": {
                                          "type": "integer"
                                        }
                                      }
                                    },
                                    "IncomeFromSal": {
                                      "type": "integer"
                                    },
                                    "TotalIncome": {
                                      "type": "integer"
                                    },
                                    "StandardDeduction": {
                                      "type": "integer"
                                    },
                                    "DeductionUs16": {
                                      "type": "integer"
                                    },
                                    "AnnualValue": {
                                      "type": "integer"
                                    },
                                    "IncomeNotified89A": {
                                      "type": "integer"
                                    },
                                    "OthersInc": {
                                      "type": "object",
                                      "properties": {
                                        "OthersIncDtlsOthSrc": {
                                          "type": "array",
                                          "items": {}
                                        }
                                      }
                                    },
                                    "IncomeOthSrc": {
                                      "type": "integer"
                                    },
                                    "DeductUndChapVIA": {
                                      "type": "object",
                                      "properties": {
                                        "Section80DD": {
                                          "type": "integer"
                                        },
                                        "Section80EE": {
                                          "type": "integer"
                                        },
                                        "Section80GG": {
                                          "type": "integer"
                                        },
                                        "Section80EEA": {
                                          "type": "integer"
                                        },
                                        "Section80GGA": {
                                          "type": "integer"
                                        },
                                        "Section80TTA": {
                                          "type": "integer"
                                        },
                                        "Section80DDB": {
                                          "type": "integer"
                                        },
                                        "Section80EEB": {
                                          "type": "integer"
                                        },
                                        "Section80TTB": {
                                          "type": "integer"
                                        },
                                        "Section80CCC": {
                                          "type": "integer"
                                        },
                                        "Section80GGC": {
                                          "type": "integer"
                                        },
                                        "Section80U": {
                                          "type": "integer"
                                        },
                                        "Section80CCDEmployer": {
                                          "type": "integer"
                                        },
                                        "TotalChapVIADeductions": {
                                          "type": "integer"
                                        },
                                        "Section80C": {
                                          "type": "integer"
                                        },
                                        "Section80D": {
                                          "type": "integer"
                                        },
                                        "Section80CCD1B": {
                                          "type": "integer"
                                        },
                                        "Section80G": {
                                          "type": "integer"
                                        },
                                        "AnyOthSec80CCH": {
                                          "type": "integer"
                                        },
                                        "Section80E": {
                                          "type": "integer"
                                        },
                                        "Section80CCDEmployeeOrSE": {
                                          "type": "integer"
                                        }
                                      }
                                    }
                                  }
                                },
                                "Refund": {
                                  "type": "object",
                                  "properties": {
                                    "BankAccountDtls": {
                                      "type": "object",
                                      "properties": {
                                        "AddtnlBankDetails": {
                                          "type": "array",
                                          "items": {}
                                        }
                                      }
                                    },
                                    "RefundDue": {
                                      "type": "integer"
                                    }
                                  }
                                },
                                "PersonalInfo": {
                                  "type": "object",
                                  "properties": {
                                    "EmployerCategory": {
                                      "type": "string"
                                    },
                                    "Address": {
                                      "type": "object",
                                      "properties": {
                                        "MobileNo": {
                                          "type": "integer"
                                        },
                                        "ZipCode": {
                                          "type": "string",
                                          "format": "color"
                                        },
                                        "StateCode": {
                                          "type": "string",
                                          "format": "utc-millisec"
                                        },
                                        "CountryCode": {
                                          "type": "string",
                                          "format": "utc-millisec"
                                        },
                                        "LocalityOrArea": {
                                          "type": "string"
                                        },
                                        "ResidenceNo": {
                                          "type": "string"
                                        },
                                        "CityOrTownOrDistrict": {
                                          "type": "string"
                                        },
                                        "EmailAddress": {
                                          "type": "string",
                                          "format": "email"
                                        },
                                        "CountryCodeMobile": {
                                          "type": "integer"
                                        }
                                      }
                                    },
                                    "DOB": {
                                      "type": "string",
                                      "format": "date"
                                    },
                                    "AssesseeName": {
                                      "type": "object"
                                    },
                                    "PAN": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "TaxPaid": {
                                  "type": "object",
                                  "properties": {
                                    "BalTaxPayable": {
                                      "type": "integer"
                                    },
                                    "TaxesPaid": {
                                      "type": "object",
                                      "properties": {
                                        "TDS": {
                                          "type": "integer"
                                        },
                                        "TCS": {
                                          "type": "integer"
                                        },
                                        "AdvanceTax": {
                                          "type": "integer"
                                        },
                                        "SelfAssessmentTax": {
                                          "type": "integer"
                                        },
                                        "TotalTaxesPaid": {
                                          "type": "integer"
                                        }
                                      }
                                    }
                                  }
                                },
                                "FilingStatus": {
                                  "type": "object",
                                  "properties": {
                                    "IncrExpAggAmt1LkElctrctyPrYrFlg": {
                                      "type": "string"
                                    },
                                    "ItrFilingDueDate": {
                                      "type": "string",
                                      "format": "date"
                                    },
                                    "clauseiv7provisio139iDtls": {
                                      "type": "array",
                                      "items": {}
                                    },
                                    "IncrExpAggAmt2LkTrvFrgnCntryFlg": {
                                      "type": "string"
                                    },
                                    "SeventhProvisio139": {
                                      "type": "string"
                                    },
                                    "ReturnFileSec": {
                                      "type": "integer"
                                    },
                                    "OptOutNewTaxRegime": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "Form_ITR1": {
                                  "type": "object",
                                  "properties": {
                                    "SchemaVer": {
                                      "type": "string"
                                    },
                                    "Description": {
                                      "type": "string"
                                    },
                                    "FormVer": {
                                      "type": "string"
                                    },
                                    "AssessmentYear": {
                                      "type": "string",
                                      "format": "utc-millisec"
                                    },
                                    "FormName": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "ITR1_TaxComputation": {
                                  "type": "object",
                                  "properties": {
                                    "TotTaxPlusIntrstPay": {
                                      "type": "integer"
                                    },
                                    "Rebate87A": {
                                      "type": "integer"
                                    },
                                    "TotalIntrstPay": {
                                      "type": "integer"
                                    },
                                    "EducationCess": {
                                      "type": "integer"
                                    },
                                    "TaxPayableOnRebate": {
                                      "type": "integer"
                                    },
                                    "GrossTaxLiability": {
                                      "type": "integer"
                                    },
                                    "NetTaxLiability": {
                                      "type": "integer"
                                    },
                                    "Section89": {
                                      "type": "integer"
                                    },
                                    "TotalTaxPayable": {
                                      "type": "integer"
                                    },
                                    "IntrstPay": {
                                      "type": "object",
                                      "properties": {
                                        "IntrstPayUs234C": {
                                          "type": "integer"
                                        },
                                        "IntrstPayUs234A": {
                                          "type": "integer"
                                        },
                                        "LateFilingFee234F": {
                                          "type": "integer"
                                        },
                                        "IntrstPayUs234B": {
                                          "type": "integer"
                                        }
                                      }
                                    }
                                  }
                                },
                                "Verification": {
                                  "type": "object",
                                  "properties": {
                                    "Capacity": {
                                      "type": "string"
                                    },
                                    "Declaration": {
                                      "type": "object",
                                      "properties": {
                                        "AssesseeVerName": {
                                          "type": "string"
                                        },
                                        "AssesseeVerPAN": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "Place": {
                                      "type": "string"
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "transaction_id": {
                      "type": "string"
                    }
                  }
                },
                "example": {
                  "code": 200,
                  "timestamp": 1748975564733,
                  "data": {
                    "ITR": {
                      "ITR1": {
                        "CreationInfo": {
                          "IntermediaryCity": "Ahmedabad",
                          "JSONCreationDate": "2025-06-04",
                          "Digest": "-",
                          "SWVersionNo": "2024.0.0.fb008978f6",
                          "SWCreatedBy": "SW10012425",
                          "JSONCreatedBy": "SW10012425"
                        },
                        "ITR1_IncomeDeductions": {
                          "GrossSalary": 0,
                          "TotalIncomeOfHP": 0,
                          "IncomeNotified89AType": [],
                          "AllwncExemptUs10": {
                            "TotalAllwncExemptUs10": 0,
                            "AllwncExemptUs10Dtls": []
                          },
                          "NetSalary": 0,
                          "ExemptIncAgriOthUs10": {
                            "ExemptIncAgriOthUs10Total": 0,
                            "ExemptIncAgriOthUs10Dtls": []
                          },
                          "GrossTotIncome": 0,
                          "UsrDeductUndChapVIA": {
                            "Section80DD": 0,
                            "Section80EE": 0,
                            "Section80GG": 0,
                            "Section80EEA": 0,
                            "Section80GGA": 0,
                            "Section80TTA": 0,
                            "Section80DDB": 0,
                            "Section80EEB": 0,
                            "Section80TTB": 0,
                            "Section80CCC": 0,
                            "Section80GGC": 0,
                            "Section80U": 0,
                            "Section80CCDEmployer": 0,
                            "TotalChapVIADeductions": 0,
                            "Section80C": 0,
                            "Section80D": 0,
                            "Section80CCD1B": 0,
                            "Section80G": 0,
                            "AnyOthSec80CCH": 0,
                            "Section80E": 0,
                            "Section80CCDEmployeeOrSE": 0
                          },
                          "IncomeFromSal": 0,
                          "TotalIncome": 0,
                          "StandardDeduction": 0,
                          "DeductionUs16": 0,
                          "AnnualValue": 0,
                          "IncomeNotified89A": 0,
                          "OthersInc": {
                            "OthersIncDtlsOthSrc": []
                          },
                          "IncomeOthSrc": 0,
                          "DeductUndChapVIA": {
                            "Section80DD": 0,
                            "Section80EE": 0,
                            "Section80GG": 0,
                            "Section80EEA": 0,
                            "Section80GGA": 0,
                            "Section80TTA": 0,
                            "Section80DDB": 0,
                            "Section80EEB": 0,
                            "Section80TTB": 0,
                            "Section80CCC": 0,
                            "Section80GGC": 0,
                            "Section80U": 0,
                            "Section80CCDEmployer": 0,
                            "TotalChapVIADeductions": 0,
                            "Section80C": 0,
                            "Section80D": 0,
                            "Section80CCD1B": 0,
                            "Section80G": 0,
                            "AnyOthSec80CCH": 0,
                            "Section80E": 0,
                            "Section80CCDEmployeeOrSE": 0
                          }
                        },
                        "Refund": {
                          "BankAccountDtls": {
                            "AddtnlBankDetails": []
                          },
                          "RefundDue": 0
                        },
                        "PersonalInfo": {
                          "EmployerCategory": "NA",
                          "Address": {
                            "MobileNo": 9876543210,
                            "ZipCode": "380015",
                            "StateCode": "99",
                            "CountryCode": "9999",
                            "LocalityOrArea": "Test Area",
                            "ResidenceNo": "101 Test Street",
                            "CityOrTownOrDistrict": "Test City",
                            "EmailAddress": "test.user@example.com",
                            "CountryCodeMobile": 91
                          },
                          "DOB": "2001-05-04",
                          "AssesseeName": {},
                          "PAN": "BMLPC3046C"
                        },
                        "TaxPaid": {
                          "BalTaxPayable": 0,
                          "TaxesPaid": {
                            "TDS": 0,
                            "TCS": 0,
                            "AdvanceTax": 0,
                            "SelfAssessmentTax": 0,
                            "TotalTaxesPaid": 0
                          }
                        },
                        "FilingStatus": {
                          "IncrExpAggAmt1LkElctrctyPrYrFlg": "N",
                          "ItrFilingDueDate": "2024-07-31",
                          "clauseiv7provisio139iDtls": [],
                          "IncrExpAggAmt2LkTrvFrgnCntryFlg": "N",
                          "SeventhProvisio139": "N",
                          "ReturnFileSec": 12,
                          "OptOutNewTaxRegime": "N"
                        },
                        "Form_ITR1": {
                          "SchemaVer": "Ver1.0",
                          "Description": "For Indls having Income from Salary, Pension, family pension and Interest",
                          "FormVer": "Ver1.0",
                          "AssessmentYear": "2024",
                          "FormName": "ITR-1"
                        },
                        "ITR1_TaxComputation": {
                          "TotTaxPlusIntrstPay": 0,
                          "Rebate87A": 0,
                          "TotalIntrstPay": 0,
                          "EducationCess": 0,
                          "TaxPayableOnRebate": 0,
                          "GrossTaxLiability": 0,
                          "NetTaxLiability": 0,
                          "Section89": 0,
                          "TotalTaxPayable": 0,
                          "IntrstPay": {
                            "IntrstPayUs234C": 0,
                            "IntrstPayUs234A": 0,
                            "LateFilingFee234F": 0,
                            "IntrstPayUs234B": 0
                          }
                        },
                        "Verification": {
                          "Capacity": "S",
                          "Declaration": {
                            "AssesseeVerName": "null",
                            "AssesseeVerPAN": "BMLPC3046C"
                          },
                          "Place": "Test City"
                        }
                      }
                    }
                  },
                  "transaction_id": "fa1cf8ee-c667-4a81-b132-d02bace2dba2"
                }
              }
            }
          }
        },
        "tags": [
          "income-tax",
          "2024"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "@entity": {
                    "type": "string"
                  },
                  "taxComputationList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "total_taxable_salary": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "advanceTaxInstallmentTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "integer"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "balanceSheetDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "equity": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "profitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "incomes": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "headwiseCapitalGainsSummaryTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessTurnoverSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "total_turnover": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "professionTurnoverSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "total_turnover": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "currentYearCapitalLossAdjustmentTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "currentYearCapitalGainsAdjustmentTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "accruedCapitalGainsTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {}
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "currentYearLossAdjustmentTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "currentYearIncomeAdjustmentAgainstCurrentYearLossTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "broughtForwardLossAdjustmentTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "currentYearIncomeAdjustmentAgainstBroughtForwardLossTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "carryForwardLossTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "taxReliefTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {}
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "form": {
                    "type": "string"
                  },
                  "currentAssessmentYear": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "string"
                  },
                  "assessment_year": {
                    "type": "string"
                  },
                  "itr_form": {
                    "type": "string"
                  },
                  "tax_regime": {
                    "type": "string"
                  },
                  "status": {
                    "type": "string"
                  },
                  "due_date": {
                    "type": "integer"
                  },
                  "filing_type": {
                    "type": "string"
                  },
                  "filed_under_section": {
                    "type": "string"
                  },
                  "tax_payer": {
                    "type": "object",
                    "properties": {
                      "@entity": {
                        "type": "string"
                      },
                      "id": {
                        "type": "string"
                      },
                      "updated_at": {
                        "type": "integer"
                      },
                      "created_at": {
                        "type": "integer"
                      },
                      "pan": {
                        "type": "string"
                      },
                      "pan_holder_type": {
                        "type": "string"
                      },
                      "address": {
                        "type": "object",
                        "properties": {
                          "@entity": {
                            "type": "string"
                          },
                          "completeAddress": {
                            "type": "boolean"
                          },
                          "street": {
                            "type": "string"
                          },
                          "area": {
                            "type": "string"
                          },
                          "city": {
                            "type": "string"
                          },
                          "state": {
                            "type": "string"
                          },
                          "postal_code": {
                            "type": "string",
                            "format": "color"
                          },
                          "country": {
                            "type": "string"
                          }
                        }
                      },
                      "contact": {
                        "type": "object",
                        "properties": {
                          "@entity": {
                            "type": "string"
                          },
                          "email": {
                            "type": "string",
                            "format": "email"
                          },
                          "country_code": {
                            "type": "string",
                            "format": "utc-millisec"
                          },
                          "mobile": {
                            "type": "string",
                            "format": "utc-millisec"
                          }
                        }
                      },
                      "filing_category": {
                        "type": "string"
                      },
                      "tax_payer_status": {
                        "type": "string"
                      },
                      "residential_status": {
                        "type": "string"
                      },
                      "first_name": {
                        "type": "string"
                      },
                      "last_name": {
                        "type": "string"
                      },
                      "gender": {
                        "type": "string"
                      },
                      "fathers_name": {
                        "type": "string"
                      },
                      "dob": {
                        "type": "integer"
                      },
                      "age": {
                        "type": "integer"
                      },
                      "aadhaar": {
                        "type": "string",
                        "format": "utc-millisec"
                      }
                    }
                  },
                  "incomes": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "gross_income": {
                          "type": "integer"
                        },
                        "head": {
                          "type": "string"
                        },
                        "sub_head": {
                          "type": "string"
                        },
                        "is_exempt": {
                          "type": "boolean"
                        },
                        "is_foreign": {
                          "type": "boolean"
                        },
                        "taxable_income": {
                          "type": "integer"
                        },
                        "net_taxable_income": {
                          "type": "integer"
                        },
                        "deductions": {
                          "type": "array",
                          "items": {}
                        },
                        "gross_revenue": {
                          "type": "integer"
                        },
                        "gross_profit": {
                          "type": "integer"
                        },
                        "taxation_scheme": {
                          "type": "string"
                        },
                        "business_id": {
                          "type": "string"
                        },
                        "cost_of_goods_sold": {
                          "type": "integer"
                        },
                        "total_sales": {
                          "type": "integer"
                        },
                        "turnover": {
                          "type": "integer"
                        }
                      }
                    }
                  },
                  "chapter_vi_a_deductions": {
                    "type": "array",
                    "items": {}
                  },
                  "tax_credits": {
                    "type": "array",
                    "items": {}
                  },
                  "bank_accounts": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "created_at": {
                          "type": "integer"
                        },
                        "account_number": {
                          "type": "string",
                          "format": "utc-millisec"
                        },
                        "bank_name": {
                          "type": "string"
                        },
                        "account_type": {
                          "type": "string"
                        },
                        "ifsc": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "capital_gains_accounts": {
                    "type": "array",
                    "items": {}
                  },
                  "brought_forward_losses": {
                    "type": "array",
                    "items": {}
                  },
                  "proprietorship_assets": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "business_id": {
                          "type": "string"
                        },
                        "head": {
                          "type": "string"
                        },
                        "sub_head": {
                          "type": "string"
                        },
                        "purchase_value": {
                          "type": "integer"
                        },
                        "book_value": {
                          "type": "integer"
                        },
                        "net_value": {
                          "type": "integer"
                        }
                      }
                    }
                  },
                  "proprietorship_liabilities": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "business_id": {
                          "type": "string"
                        },
                        "head": {
                          "type": "string"
                        },
                        "sub_head": {
                          "type": "string"
                        },
                        "amount": {
                          "type": "integer"
                        }
                      }
                    }
                  },
                  "proprietorship_expenses": {
                    "type": "array",
                    "items": {}
                  },
                  "personal_assets": {
                    "type": "array",
                    "items": {}
                  },
                  "personal_liabilities": {
                    "type": "array",
                    "items": {}
                  },
                  "businesses": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "description": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "nature_of_business": {
                          "type": "string"
                        },
                        "category": {
                          "type": "string"
                        },
                        "sub_category": {
                          "type": "string"
                        },
                        "taxation_scheme": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "settlements_us_112_a": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {}
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  }
                }
              },
              "example": {
                "@entity": "com.quicko.it.file.ay_2024.income_tax_return_wrapper",
                "taxComputationList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "total_taxable_salary": 0
                    },
                    {
                      "total_taxable_house_property": 0
                    },
                    {
                      "total_taxable_capital_gains": 0
                    },
                    {
                      "total_taxable_other": 0
                    },
                    {
                      "total_taxable_business_profession": 100000
                    },
                    {
                      "total_headwise_income": 100000
                    },
                    {
                      "current_year_loss_adjusted": 0
                    },
                    {
                      "brought_forward_loss_adjusted": 0
                    },
                    {
                      "losses_adjusted": 0
                    },
                    {
                      "carry_forward_loss": 0
                    },
                    {
                      "gross_normal_income": 100000
                    },
                    {
                      "gross_special_income": 0
                    },
                    {
                      "gross_total_income": 100000
                    },
                    {
                      "total_chapter_vi_a_deduction": 0
                    },
                    {
                      "total_normal_income": 100000
                    },
                    {
                      "total_special_income": 0
                    },
                    {
                      "aggregate_income": 0
                    },
                    {
                      "total_income": 100000
                    },
                    {
                      "total_exempt_income": 0
                    },
                    {
                      "exempt_ltcg_under_112a": 0
                    },
                    {
                      "tax_payable_on_normal_rate_income": 0
                    },
                    {
                      "tax_payable_on_special_rate_income": 0
                    },
                    {
                      "tax_payable_on_total_income": 0
                    },
                    {
                      "rebate": 0
                    },
                    {
                      "tax_after_rebate": 0
                    },
                    {
                      "surcharge_before_marginal_relief": 0
                    },
                    {
                      "surcharge": 0
                    },
                    {
                      "cess": 0
                    },
                    {
                      "surcharge_and_cess": 0
                    },
                    {
                      "gross_tax_payable": 0
                    },
                    {
                      "relief_us_89": 0
                    },
                    {
                      "relief_us_90_and_90a": 0
                    },
                    {
                      "relief_us_91": 0
                    },
                    {
                      "total_relief": 0
                    },
                    {
                      "effective_tax_rate": 0
                    },
                    {
                      "interest_234_a": 0
                    },
                    {
                      "interest_234_b": 0
                    },
                    {
                      "interest_234_c": 0
                    },
                    {
                      "fees_234_f": 0
                    },
                    {
                      "total_interest_and_penalty": 0
                    },
                    {
                      "net_tax_payable": 0
                    },
                    {
                      "total_advance_tax_paid": 0
                    },
                    {
                      "total_self_assessment_tax": 0
                    },
                    {
                      "total_tax_deducted_at_source": 0
                    },
                    {
                      "total_tax_collected_at_source": 0
                    },
                    {
                      "total_tax_withheld_outside_india": 0
                    },
                    {
                      "total_taxes_paid": 0
                    },
                    {
                      "refund": 0
                    },
                    {
                      "due": 0
                    }
                  ],
                  "name": "tax_computation_list"
                },
                "advanceTaxInstallmentTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "quarter",
                    "due_date",
                    "tax_payable",
                    "installment_percentage",
                    "installment",
                    "tax_credits",
                    "tax_outstanding",
                    "interest_percentage",
                    "interest"
                  ],
                  "rows": [
                    [
                      1,
                      1686853799999,
                      0,
                      15,
                      0,
                      0,
                      0,
                      3,
                      0
                    ],
                    [
                      2,
                      1694802599999,
                      0,
                      45,
                      0,
                      0,
                      0,
                      3,
                      0
                    ],
                    [
                      3,
                      1702664999999,
                      0,
                      75,
                      0,
                      0,
                      0,
                      3,
                      0
                    ],
                    [
                      4,
                      1710527399999,
                      0,
                      100,
                      0,
                      0,
                      0,
                      1,
                      0
                    ]
                  ],
                  "name": "advance_tax_installment_table"
                },
                "balanceSheetDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "equity": 1000
                    },
                    {
                      "proprietors_capital": 1000
                    },
                    {
                      "reserves_and_surplus": 0
                    },
                    {
                      "non_current_liabilities": 0
                    },
                    {
                      "secured_loans": 0
                    },
                    {
                      "unsecured_loans": 0
                    },
                    {
                      "advances": 0
                    },
                    {
                      "current_liabilities": 0
                    },
                    {
                      "payables": 0
                    },
                    {
                      "provisions_for_expenses": 0
                    },
                    {
                      "other_current_liabilities": 0
                    },
                    {
                      "total_equity_and_liabilities": 1000
                    },
                    {
                      "fixed_assets": 0
                    },
                    {
                      "laptop_computers": 0
                    },
                    {
                      "mobile_phone": 0
                    },
                    {
                      "other_plant_and_machinery": 0
                    },
                    {
                      "agricultural_land": 0
                    },
                    {
                      "non_agricultural_land": 0
                    },
                    {
                      "residential_building": 0
                    },
                    {
                      "non_residential_builiding": 0
                    },
                    {
                      "furniture_and_fitting": 0
                    },
                    {
                      "intangible_asset": 0
                    },
                    {
                      "investments": 1000
                    },
                    {
                      "long_term_investments": 1000
                    },
                    {
                      "short_term_investments": 0
                    },
                    {
                      "current_assets": 0
                    },
                    {
                      "stock": 0
                    },
                    {
                      "cash_balance": 0
                    },
                    {
                      "bank_balance": 0
                    },
                    {
                      "receivables": 0
                    },
                    {
                      "loans_and_advances": 0
                    },
                    {
                      "other_current_assets": 0
                    },
                    {
                      "total_assets": 1000
                    }
                  ],
                  "name": "balance_sheet_detail_list"
                },
                "profitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "incomes": 100000
                    },
                    {
                      "gross_profit": 100000
                    },
                    {
                      "indirect_income": 0
                    },
                    {
                      "expenses": 0
                    },
                    {
                      "loss": 0
                    },
                    {
                      "gross_loss": 0
                    },
                    {
                      "compensation_to_employees": 0
                    },
                    {
                      "salary_and_wages": 0
                    },
                    {
                      "bonus": 0
                    },
                    {
                      "leave_encashment": 0
                    },
                    {
                      "contribution_to_pf": 0
                    },
                    {
                      "contribution_to_gratuity_fund": 0
                    },
                    {
                      "professional_and_consultancy_expenses": 0
                    },
                    {
                      "audit_fees": 0
                    },
                    {
                      "accounting_fees": 0
                    },
                    {
                      "advisory_expenses": 0
                    },
                    {
                      "legal_fees": 0
                    },
                    {
                      "duties_and_taxes": 0
                    },
                    {
                      "securities_transaction_tax": 0
                    },
                    {
                      "commodities_transaction_tax": 0
                    },
                    {
                      "central_goods_and_services_tax": 0
                    },
                    {
                      "state_goods_and_services_tax": 0
                    },
                    {
                      "integrated_goods_and_services_tax": 0
                    },
                    {
                      "union_territory_goods_and_services_tax": 0
                    },
                    {
                      "stamp_duty": 0
                    },
                    {
                      "insurance": 0
                    },
                    {
                      "medical_insurance": 0
                    },
                    {
                      "life_insurance": 0
                    },
                    {
                      "other_insurance": 0
                    },
                    {
                      "operating_expenses": 0
                    },
                    {
                      "office_supplies": 0
                    },
                    {
                      "meals_and_entertainment": 0
                    },
                    {
                      "subscription_charges": 0
                    },
                    {
                      "marketing_and_advertisement": 0
                    },
                    {
                      "bank_charges": 0
                    },
                    {
                      "rent": 0
                    },
                    {
                      "commission": 0
                    },
                    {
                      "interest_expenses": 0
                    },
                    {
                      "festival_celebration_expenses": 0
                    },
                    {
                      "donation": 0
                    },
                    {
                      "gift": 0
                    },
                    {
                      "computer_repairs": 0
                    },
                    {
                      "hotel_expenses": 0
                    },
                    {
                      "other_expenses": 0
                    },
                    {
                      "travel_expenses": 0
                    },
                    {
                      "domestic_travelling_expenses": 0
                    },
                    {
                      "foreign_travelling_expenses": 0
                    },
                    {
                      "transfer_expenses": 0
                    },
                    {
                      "brokerage": 0
                    },
                    {
                      "exchange_transaction_charges": 0
                    },
                    {
                      "sebi_turnover_fees": 0
                    },
                    {
                      "clearing_charges": 0
                    },
                    {
                      "depositary_participant_charges": 0
                    },
                    {
                      "margin_trading_interest": 0
                    },
                    {
                      "other_transfer_expenses": 0
                    },
                    {
                      "utility_expenses": 0
                    },
                    {
                      "electricity_and_fuel_expenses": 0
                    },
                    {
                      "mobile_bill": 0
                    },
                    {
                      "internet_bill": 0
                    },
                    {
                      "depreciation_and_amortization": 0
                    },
                    {
                      "depreciation": 0
                    },
                    {
                      "net_profit": 100000
                    },
                    {
                      "net_loss": 0
                    }
                  ],
                  "name": "profit_and_loss_detail_list"
                },
                "headwiseCapitalGainsSummaryTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "sub_head",
                    "taxable_income",
                    "losses_adjusted",
                    "losses_remaining"
                  ],
                  "rows": [
                    [
                      "securities",
                      0,
                      0,
                      0
                    ],
                    [
                      "real_estate",
                      0,
                      0,
                      0
                    ],
                    [
                      "other_capital_gains",
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "headwise_capital_gains_summary_table"
                },
                "businessTurnoverSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "total_turnover": 100000
                    },
                    {
                      "net_profit_and_loss": 100000
                    },
                    {
                      "audit_applicable": false
                    }
                  ],
                  "name": "business_turnover_summary_list"
                },
                "professionTurnoverSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "total_turnover": 0
                    },
                    {
                      "net_profit_and_loss": 0
                    },
                    {
                      "audit_applicable": false
                    }
                  ],
                  "name": "profession_turnover_summary_list"
                },
                "currentYearCapitalLossAdjustmentTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "holding_period",
                    "section",
                    "tax_rate",
                    "loss",
                    "loss_setoff_against_stcg_15_percent",
                    "loss_setoff_against_stcg_30_percent",
                    "loss_setoff_against_stcg_slab_rate",
                    "loss_setoff_against_ltcg_10_percent",
                    "loss_setoff_against_ltcg_10_percent_112a",
                    "loss_setoff_against_ltcg_20_percent",
                    "losses_setoff",
                    "losses_remaining"
                  ],
                  "rows": [
                    [
                      "short_term",
                      "111A",
                      "15",
                      0,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "short_term",
                      "",
                      "30",
                      0,
                      0,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "short_term",
                      "",
                      "slab_rate",
                      0,
                      0,
                      0,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "",
                      "10",
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "",
                      "20",
                      0,
                      null,
                      null,
                      null,
                      0,
                      0,
                      null,
                      0,
                      0
                    ]
                  ],
                  "name": "current_year_capital_loss_adjustment_table"
                },
                "currentYearCapitalGainsAdjustmentTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "holding_period",
                    "section",
                    "tax_rate",
                    "taxable_income",
                    "income_setoff_against_stcl_15_percent",
                    "income_setoff_against_stcl_30_percent",
                    "income_setoff_against_stcl_slab_rate",
                    "income_setoff_against_ltcl_10_percent",
                    "income_setoff_against_ltcl_10_percent_112a",
                    "income_setoff_against_ltcl_20_percent",
                    "income_setoff",
                    "net_taxable_income"
                  ],
                  "rows": [
                    [
                      "short_term",
                      "111A",
                      "15",
                      0,
                      null,
                      0,
                      0,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "short_term",
                      "",
                      "30",
                      0,
                      0,
                      null,
                      0,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "short_term",
                      "",
                      "slab_rate",
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112A",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "",
                      "20",
                      0,
                      0,
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      0
                    ]
                  ],
                  "name": "current_year_capital_gains_adjustment_table"
                },
                "accruedCapitalGainsTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "quarter",
                    "short_term_capital_gains",
                    "long_term_capital_gains",
                    "short_term_15_percent_capital_gains",
                    "short_term_30_percent_capital_gains",
                    "short_term_slab_capital_gains",
                    "long_term_10_percent_capital_gains",
                    "long_term_10_percent_112A_capital_gains",
                    "long_term_20_percent_capital_gains"
                  ],
                  "rows": [],
                  "name": "accrued_capital_gains_table"
                },
                "currentYearLossAdjustmentTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "loss_head",
                    "loss_sub_head",
                    "holding_period",
                    "section",
                    "tax_rate",
                    "loss",
                    "loss_setoff_against_salary_income",
                    "loss_setoff_against_house_property_income",
                    "loss_setoff_against_stcg_15_percent",
                    "loss_setoff_against_stcg_30_percent",
                    "loss_setoff_against_stcg_slab_rate",
                    "loss_setoff_against_ltcg_10_percent",
                    "loss_setoff_against_ltcg_10_percent_112a",
                    "loss_setoff_against_ltcg_20_percent",
                    "loss_setoff_against_business_and_profession_income",
                    "loss_setoff_against_speculative_business_income",
                    "loss_setoff_against_other_income",
                    "losses_setoff",
                    "losses_remaining"
                  ],
                  "rows": [
                    [
                      "house_property",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "111A",
                      "15",
                      0,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      null,
                      "30",
                      0,
                      null,
                      null,
                      0,
                      null,
                      0,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      null,
                      "slab_rate",
                      0,
                      null,
                      null,
                      0,
                      0,
                      null,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "112",
                      "10",
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "112(1)(c)",
                      "20",
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "other",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "111A",
                      null,
                      0,
                      null,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      null,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      null,
                      null,
                      0,
                      null,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      null,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      "horse_race",
                      null,
                      null,
                      null,
                      0,
                      null,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      null,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      null,
                      null,
                      null,
                      null,
                      0,
                      null,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      null,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "current_year_loss_adjustment_table"
                },
                "currentYearIncomeAdjustmentAgainstCurrentYearLossTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "income_head",
                    "income_sub_head",
                    "holding_period",
                    "section",
                    "tax_rate",
                    "taxable_income",
                    "income_setoff_against_loss_from_house_property",
                    "income_setoff_against_business_and_profession_loss",
                    "income_setoff_against_loss_from_other_sources",
                    "income_setoff",
                    "net_taxable_income"
                  ],
                  "rows": [
                    [
                      "salary",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "specified",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      "111A",
                      "15",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      "111A",
                      "30",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      null,
                      "slab_rate",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112A",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112",
                      "20",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      "horse_race",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "current_year_income_adjustment_against_current_year_loss_table"
                },
                "broughtForwardLossAdjustmentTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "loss_head",
                    "loss_sub_head",
                    "holding_period",
                    "section",
                    "tax_rate",
                    "loss",
                    "loss_setoff_against_salary_income",
                    "loss_setoff_against_house_property_income",
                    "loss_setoff_against_stcg_15_percent",
                    "loss_setoff_against_stcg_30_percent",
                    "loss_setoff_against_stcg_slab_rate",
                    "loss_setoff_against_ltcg_10_percent",
                    "loss_setoff_against_ltcg_10_percent_112a",
                    "loss_setoff_against_ltcg_20_percent",
                    "loss_setoff_against_business_and_profession_income",
                    "loss_setoff_against_speculative_business_income",
                    "loss_setoff_against_other_income",
                    "losses_setoff",
                    "losses_remaining"
                  ],
                  "rows": [
                    [
                      "house_property",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      null,
                      null,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      null,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "specified",
                      null,
                      null,
                      null,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      null,
                      null,
                      0,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      null,
                      null,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "other",
                      "horse_race",
                      null,
                      null,
                      null,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "brought_forward_loss_adjustment_table"
                },
                "currentYearIncomeAdjustmentAgainstBroughtForwardLossTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "income_head",
                    "income_sub_head",
                    "holding_period",
                    "section",
                    "tax_rate",
                    "taxable_income",
                    "income_setoff_against_loss_from_house_property",
                    "income_setoff_against_loss_from_non_speculative_business",
                    "income_setoff_against_loss_from_speculative_business",
                    "income_setoff_against_loss_from_specified_business",
                    "income_setoff_against_loss_from_stcl",
                    "income_setoff_against_loss_from_ltcl",
                    "income_setoff_against_loss_from_owning_and_maintaining_race_horse",
                    "income_setoff",
                    "net_taxable_income"
                  ],
                  "rows": [
                    [
                      "salary",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "specified",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      null,
                      0,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      "111A",
                      "15",
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      "111A",
                      "30",
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      null,
                      "slab_rate",
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      null,
                      null,
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112",
                      "10",
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      0,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112A",
                      "10",
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      0,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112",
                      "20",
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      0,
                      null,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "DTAA",
                      null,
                      0,
                      0,
                      0,
                      null,
                      null,
                      0,
                      0,
                      null,
                      0,
                      0
                    ],
                    [
                      "other",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0
                    ],
                    [
                      "other",
                      "horse_race",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      "DTAA",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0
                    ]
                  ],
                  "name": "current_year_income_adjustment_against_brought_forward_loss_table"
                },
                "carryForwardLossTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "loss_head",
                    "loss_sub_head",
                    "holding_period",
                    "assessment_year",
                    "carry_forward_losses"
                  ],
                  "rows": [
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2017-18",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2017-18",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2017-18",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2017-18",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2017-18",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2018-19",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2018-19",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2018-19",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2018-19",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2018-19",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2019-20",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2019-20",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2019-20",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2019-20",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2019-20",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2020-21",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2020-21",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2020-21",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2020-21",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2020-21",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2021-22",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2021-22",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2021-22",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2021-22",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2021-22",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2022-23",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2022-23",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2022-23",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2022-23",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2022-23",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2023-24",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2023-24",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2023-24",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2023-24",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2023-24",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2024-25",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2024-25",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2024-25",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2024-25",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2024-25",
                      0
                    ]
                  ],
                  "name": "carry_forward_loss_table"
                },
                "taxReliefTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "country",
                    "income_head",
                    "income_sub_head",
                    "credit_amount",
                    "tax_amount",
                    "tax_payable_in_india",
                    "relief",
                    "dtaa_section",
                    "dtaa_article"
                  ],
                  "rows": [],
                  "name": "tax_relief_table"
                },
                "form": "itr_3",
                "currentAssessmentYear": false,
                "id": "1e2c6f8c-0f03-4979-a7bc-37f62d4e20f8",
                "assessment_year": "AY 2024-25",
                "itr_form": "itr_3",
                "tax_regime": "new",
                "status": "in_progress",
                "due_date": 1722450599999,
                "filing_type": "original",
                "filed_under_section": "after_the_due_date_us_139_4",
                "tax_payer": {
                  "@entity": "com.quicko.it.tax_payer.individual",
                  "id": "18565E3E89012506E0630100007F84BA",
                  "updated_at": 1751438351230,
                  "created_at": 1749660075333,
                  "pan": "AVPPJ6869G",
                  "pan_holder_type": "individual",
                  "address": {
                    "@entity": "org.quicko.address",
                    "completeAddress": true,
                    "street": "Paldi",
                    "area": "Ahmedabad",
                    "city": "Ahmedabad",
                    "state": "Gujarat",
                    "postal_code": "380015",
                    "country": "India"
                  },
                  "contact": {
                    "@entity": "org.quicko.contact",
                    "email": "akash@quicko.com",
                    "country_code": "91",
                    "mobile": "9924725019"
                  },
                  "filing_category": "general",
                  "tax_payer_status": "active",
                  "residential_status": "resident",
                  "first_name": "Akash",
                  "last_name": "Jhaveri",
                  "gender": "male",
                  "fathers_name": "Mahesh Jhaveri",
                  "dob": 782332200000,
                  "age": 30,
                  "aadhaar": "355444182134"
                },
                "incomes": [
                  {
                    "@entity": "com.quicko.it.year_2024.income.taxable_income.business_profession_income.business_income.securities_trading_income",
                    "id": "c442e89f-a4c9-403b-b496-a95516797b71",
                    "gross_income": 100000,
                    "head": "business_and_profession",
                    "sub_head": "non_speculative",
                    "is_exempt": false,
                    "is_foreign": false,
                    "taxable_income": 100000,
                    "net_taxable_income": 100000,
                    "deductions": [],
                    "gross_revenue": 100000,
                    "gross_profit": 100000,
                    "taxation_scheme": "with_books_of_accounts",
                    "business_id": "7fca639b-3902-47de-aaf7-a7bf6ad63f28",
                    "cost_of_goods_sold": 0,
                    "total_sales": 100000,
                    "turnover": 100000
                  }
                ],
                "chapter_vi_a_deductions": [],
                "tax_credits": [],
                "bank_accounts": [
                  {
                    "@entity": "org.quicko.bank_account.domestic_bank_account",
                    "id": "b1e100e4-3a95-4826-a4a4-09ba0103f9df",
                    "created_at": 1750677987136,
                    "account_number": "123456789",
                    "bank_name": "Bank of India",
                    "account_type": "other",
                    "ifsc": "BKID0002036"
                  },
                  {
                    "@entity": "org.quicko.bank_account.domestic_bank_account",
                    "id": "c122cabf-de4a-43f8-ba82-5ed060a13b59",
                    "created_at": 1750678381934,
                    "account_number": "777777777",
                    "bank_name": "HDFC",
                    "account_type": "current",
                    "ifsc": "ABCD0123456"
                  }
                ],
                "capital_gains_accounts": [],
                "brought_forward_losses": [],
                "proprietorship_assets": [
                  {
                    "@entity": "com.quicko.it.year_2024.business.asset",
                    "id": "6effd0a5-5094-4692-829a-44a144ba8859",
                    "business_id": "7fca639b-3902-47de-aaf7-a7bf6ad63f28",
                    "head": "investments",
                    "sub_head": "long_term_investments",
                    "purchase_value": 1000,
                    "book_value": 1000,
                    "net_value": 1000
                  }
                ],
                "proprietorship_liabilities": [
                  {
                    "@entity": "com.quicko.it.year_2024.business.liability",
                    "business_id": "7fca639b-3902-47de-aaf7-a7bf6ad63f28",
                    "head": "equities",
                    "sub_head": "proprietors_capital",
                    "amount": 1000
                  }
                ],
                "proprietorship_expenses": [],
                "personal_assets": [],
                "personal_liabilities": [],
                "businesses": [
                  {
                    "@entity": "com.quicko.it.year_2024.business",
                    "id": "7fca639b-3902-47de-aaf7-a7bf6ad63f28",
                    "description": "JZ3557",
                    "name": "Zerodha Trading Account",
                    "nature_of_business": "securities_trading",
                    "category": "wholesale_and_retail_trade",
                    "sub_category": "retail_sale_of_other_products_n.e.c",
                    "taxation_scheme": "with_books_of_accounts"
                  }
                ],
                "settlements_us_112_a": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "id",
                    "account_id",
                    "description",
                    "isin",
                    "asset_class",
                    "asset_type",
                    "is_listed",
                    "is_stt_paid",
                    "quantity",
                    "buy_date",
                    "buy_price",
                    "sell_date",
                    "sell_price",
                    "holding_period",
                    "fmv",
                    "brokerage",
                    "clearing_charges",
                    "exchange_transaction_charges",
                    "sebi_turnover_fee",
                    "stt",
                    "stamp_duty",
                    "sgst",
                    "cgst",
                    "igst",
                    "other_transfer_expenses",
                    "total_indexed_cost_of_improvement",
                    "realized_profit_and_loss",
                    "net_realized_profit_and_loss",
                    "taxable_profit_and_loss",
                    "nature_of_settlement",
                    "country",
                    "status",
                    "created_at",
                    "updated_at"
                  ],
                  "rows": [],
                  "name": "settlement_table"
                }
              }
            }
          }
        }
      }
    },
    "/it/report/2025/itr": {
      "post": {
        "summary": "ITR json",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "eyJ0eXAiOiJKV1MiLCJhbGciOiJSU0FTU0FfUFNTX1NIQV81MTIiLCJraWQiOiIwYzYwMGUzMS01MDAwLTRkYTItYjM3YS01ODdkYTA0ZTk4NTEifQ.eyJ3b3Jrc3BhY2VfaWQiOiJmNjY2NjMwNy02YjQzLTRmODEtYjRkZS01MjhiMTg3M2ZjOGMiLCJzdWIiOiJrZXlfbGl2ZV80OTc4Y2VmOWE2OTI0Zjc1ODI5ZmQwYzY0MGFlMmM3MyIsImFwaV9rZXkiOiJrZXlfbGl2ZV80OTc4Y2VmOWE2OTI0Zjc1ODI5ZmQwYzY0MGFlMmM3MyIsImF1ZCI6IkFQSSIsImludGVudCI6IkFDQ0VTU19UT0tFTiIsImlzcyI6InByb2QxLWFwaS5zYW5kYm94LmNvLmluIiwiaWF0IjoxNzU4Nzk2MDYzLCJleHAiOjE3NTg4ODI0NjN9.ha58dL-L45ix-uWe7iLY7NYKitIFZp-LvdBiiJH2AJ7Wx5U-a_66rZdyL462-mlmknOLr92IUZIsWuJG0xDiIWrekcUmk0qqZlL-wUK4JkQzoYVqO8fh9NcijfRIbDmOVFsKYPgLbCYPaa2OUFj0XDuIDQTc4f7lSCNGsho-vI5epTstMvJ-Cr1ad7K9KXGiud14s37TlBCD64prEeRoCx0PSH0fYoXdKmToaU_VfeFBKBS1jT9DjyqCBRifavzAmQdccnPLRSujieQeZSTh_WddGHnfvOzMV6fb_F6JzUzEhU7v1_5ObfpuNThct2eaI4XD88ZgEpRTxa5ARuT5AQ"
          },
          {
            "name": "x-api-key",
            "in": "header",
            "schema": {
              "type": "string"
            },
            "example": "{{api_key}}"
          }
        ],
        "responses": {
          "200": {
            "description": "200 OK",
            "headers": {
              "Transfer-Encoding": {
                "schema": {
                  "type": "string"
                },
                "example": "chunked"
              },
              "Date": {
                "schema": {
                  "type": "string"
                },
                "example": "Mon, 16 Jun 2025 12:33:51 GMT"
              },
              "Keep-Alive": {
                "schema": {
                  "type": "string"
                },
                "example": "timeout=60"
              },
              "Connection": {
                "schema": {
                  "type": "string"
                },
                "example": "keep-alive"
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "integer"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "ITR": {
                          "type": "object",
                          "properties": {
                            "ITR1": {
                              "type": "object",
                              "properties": {
                                "CreationInfo": {
                                  "type": "object",
                                  "properties": {
                                    "IntermediaryCity": {
                                      "type": "string"
                                    },
                                    "JSONCreationDate": {
                                      "type": "string",
                                      "format": "date"
                                    },
                                    "Digest": {
                                      "type": "string"
                                    },
                                    "SWVersionNo": {
                                      "type": "string"
                                    },
                                    "SWCreatedBy": {
                                      "type": "string"
                                    },
                                    "JSONCreatedBy": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "LTCG112A": {
                                  "type": "object",
                                  "properties": {
                                    "TotCstAcqisn": {
                                      "type": "integer"
                                    },
                                    "LongCap112A": {
                                      "type": "integer"
                                    },
                                    "TotSaleCnsdrn": {
                                      "type": "integer"
                                    }
                                  }
                                },
                                "ITR1_IncomeDeductions": {
                                  "type": "object",
                                  "properties": {
                                    "Salary": {
                                      "type": "integer"
                                    },
                                    "GrossSalary": {
                                      "type": "integer"
                                    },
                                    "TotalIncomeOfHP": {
                                      "type": "integer"
                                    },
                                    "IncomeNotified89AType": {
                                      "type": "array",
                                      "items": {}
                                    },
                                    "AllwncExemptUs10": {
                                      "type": "object",
                                      "properties": {
                                        "TotalAllwncExemptUs10": {
                                          "type": "integer"
                                        },
                                        "AllwncExemptUs10Dtls": {
                                          "type": "array",
                                          "items": {}
                                        }
                                      }
                                    },
                                    "NetSalary": {
                                      "type": "integer"
                                    },
                                    "ExemptIncAgriOthUs10": {
                                      "type": "object",
                                      "properties": {
                                        "ExemptIncAgriOthUs10Total": {
                                          "type": "integer"
                                        },
                                        "ExemptIncAgriOthUs10Dtls": {
                                          "type": "array",
                                          "items": {}
                                        }
                                      }
                                    },
                                    "GrossTotIncome": {
                                      "type": "integer"
                                    },
                                    "UsrDeductUndChapVIA": {
                                      "type": "object",
                                      "properties": {
                                        "Section80DD": {
                                          "type": "integer"
                                        },
                                        "Section80EE": {
                                          "type": "integer"
                                        },
                                        "Section80GG": {
                                          "type": "integer"
                                        },
                                        "Section80EEA": {
                                          "type": "integer"
                                        },
                                        "Section80GGA": {
                                          "type": "integer"
                                        },
                                        "Section80TTA": {
                                          "type": "integer"
                                        },
                                        "Section80DDB": {
                                          "type": "integer"
                                        },
                                        "Section80EEB": {
                                          "type": "integer"
                                        },
                                        "Section80TTB": {
                                          "type": "integer"
                                        },
                                        "Section80CCC": {
                                          "type": "integer"
                                        },
                                        "Section80GGC": {
                                          "type": "integer"
                                        },
                                        "Section80U": {
                                          "type": "integer"
                                        },
                                        "Section80CCDEmployer": {
                                          "type": "integer"
                                        },
                                        "TotalChapVIADeductions": {
                                          "type": "integer"
                                        },
                                        "Section80C": {
                                          "type": "integer"
                                        },
                                        "Section80D": {
                                          "type": "integer"
                                        },
                                        "Section80CCD1B": {
                                          "type": "integer"
                                        },
                                        "Section80G": {
                                          "type": "integer"
                                        },
                                        "AnyOthSec80CCH": {
                                          "type": "integer"
                                        },
                                        "Section80E": {
                                          "type": "integer"
                                        },
                                        "Section80CCDEmployeeOrSE": {
                                          "type": "integer"
                                        }
                                      }
                                    },
                                    "IncomeFromSal": {
                                      "type": "integer"
                                    },
                                    "TotalIncome": {
                                      "type": "integer"
                                    },
                                    "StandardDeduction": {
                                      "type": "integer"
                                    },
                                    "ProfitsInSalary": {
                                      "type": "integer"
                                    },
                                    "DeductionUs16": {
                                      "type": "integer"
                                    },
                                    "AnnualValue": {
                                      "type": "integer"
                                    },
                                    "IncomeNotified89A": {
                                      "type": "integer"
                                    },
                                    "GrossTotIncomeIncLTCG112A": {
                                      "type": "integer"
                                    },
                                    "OthersInc": {
                                      "type": "object",
                                      "properties": {
                                        "OthersIncDtlsOthSrc": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "OthSrcNatureDesc": {
                                                "type": "string"
                                              },
                                              "NOT89A": {
                                                "type": "array",
                                                "items": {}
                                              },
                                              "OthSrcOthNatOfInc": {
                                                "type": "string"
                                              },
                                              "OthSrcOthAmount": {
                                                "type": "integer"
                                              }
                                            }
                                          }
                                        }
                                      }
                                    },
                                    "DeductionUs16ia": {
                                      "type": "integer"
                                    },
                                    "PerquisitesValue": {
                                      "type": "integer"
                                    },
                                    "IncomeOthSrc": {
                                      "type": "integer"
                                    },
                                    "DeductUndChapVIA": {
                                      "type": "object",
                                      "properties": {
                                        "Section80DD": {
                                          "type": "integer"
                                        },
                                        "Section80EE": {
                                          "type": "integer"
                                        },
                                        "Section80GG": {
                                          "type": "integer"
                                        },
                                        "Section80EEA": {
                                          "type": "integer"
                                        },
                                        "Section80GGA": {
                                          "type": "integer"
                                        },
                                        "Section80TTA": {
                                          "type": "integer"
                                        },
                                        "Section80DDB": {
                                          "type": "integer"
                                        },
                                        "Section80EEB": {
                                          "type": "integer"
                                        },
                                        "Section80TTB": {
                                          "type": "integer"
                                        },
                                        "Section80CCC": {
                                          "type": "integer"
                                        },
                                        "Section80GGC": {
                                          "type": "integer"
                                        },
                                        "Section80U": {
                                          "type": "integer"
                                        },
                                        "Section80CCDEmployer": {
                                          "type": "integer"
                                        },
                                        "TotalChapVIADeductions": {
                                          "type": "integer"
                                        },
                                        "Section80C": {
                                          "type": "integer"
                                        },
                                        "Section80D": {
                                          "type": "integer"
                                        },
                                        "Section80CCD1B": {
                                          "type": "integer"
                                        },
                                        "Section80G": {
                                          "type": "integer"
                                        },
                                        "AnyOthSec80CCH": {
                                          "type": "integer"
                                        },
                                        "Section80E": {
                                          "type": "integer"
                                        },
                                        "Section80CCDEmployeeOrSE": {
                                          "type": "integer"
                                        }
                                      }
                                    }
                                  }
                                },
                                "Refund": {
                                  "type": "object",
                                  "properties": {
                                    "BankAccountDtls": {
                                      "type": "object",
                                      "properties": {
                                        "AddtnlBankDetails": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "BankName": {
                                                "type": "string"
                                              },
                                              "IFSCCode": {
                                                "type": "string"
                                              },
                                              "UseForRefund": {
                                                "type": "string"
                                              },
                                              "BankAccountNo": {
                                                "type": "string",
                                                "format": "utc-millisec"
                                              },
                                              "AccountType": {
                                                "type": "string"
                                              }
                                            }
                                          }
                                        }
                                      }
                                    },
                                    "RefundDue": {
                                      "type": "integer"
                                    }
                                  }
                                },
                                "PersonalInfo": {
                                  "type": "object",
                                  "properties": {
                                    "EmployerCategory": {
                                      "type": "string"
                                    },
                                    "Address": {
                                      "type": "object",
                                      "properties": {
                                        "MobileNo": {
                                          "type": "integer"
                                        },
                                        "ZipCode": {
                                          "type": "string",
                                          "format": "utc-millisec"
                                        },
                                        "StateCode": {
                                          "type": "string",
                                          "format": "utc-millisec"
                                        },
                                        "CountryCode": {
                                          "type": "string",
                                          "format": "utc-millisec"
                                        },
                                        "LocalityOrArea": {
                                          "type": "string"
                                        },
                                        "ResidenceNo": {
                                          "type": "string"
                                        },
                                        "CityOrTownOrDistrict": {
                                          "type": "string"
                                        },
                                        "EmailAddress": {
                                          "type": "string",
                                          "format": "email"
                                        },
                                        "CountryCodeMobile": {
                                          "type": "integer"
                                        }
                                      }
                                    },
                                    "DOB": {
                                      "type": "string",
                                      "format": "date"
                                    },
                                    "AadhaarCardNo": {
                                      "type": "string",
                                      "format": "utc-millisec"
                                    },
                                    "AssesseeName": {
                                      "type": "object",
                                      "properties": {
                                        "SurNameOrOrgName": {
                                          "type": "string"
                                        },
                                        "FirstName": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "PAN": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "TaxPaid": {
                                  "type": "object",
                                  "properties": {
                                    "BalTaxPayable": {
                                      "type": "integer"
                                    },
                                    "TaxesPaid": {
                                      "type": "object",
                                      "properties": {
                                        "TDS": {
                                          "type": "integer"
                                        },
                                        "TCS": {
                                          "type": "integer"
                                        },
                                        "AdvanceTax": {
                                          "type": "integer"
                                        },
                                        "SelfAssessmentTax": {
                                          "type": "integer"
                                        },
                                        "TotalTaxesPaid": {
                                          "type": "integer"
                                        }
                                      }
                                    }
                                  }
                                },
                                "FilingStatus": {
                                  "type": "object",
                                  "properties": {
                                    "IncrExpAggAmt1LkElctrctyPrYrFlg": {
                                      "type": "string"
                                    },
                                    "ItrFilingDueDate": {
                                      "type": "string",
                                      "format": "date"
                                    },
                                    "clauseiv7provisio139iDtls": {
                                      "type": "array",
                                      "items": {}
                                    },
                                    "IncrExpAggAmt2LkTrvFrgnCntryFlg": {
                                      "type": "string"
                                    },
                                    "SeventhProvisio139": {
                                      "type": "string"
                                    },
                                    "ReturnFileSec": {
                                      "type": "integer"
                                    },
                                    "OptOutNewTaxRegime": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "TDSonOthThanSals": {
                                  "type": "object",
                                  "properties": {
                                    "TotalTDSonOthThanSals": {
                                      "type": "integer"
                                    },
                                    "TDSonOthThanSal": {
                                      "type": "array",
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "AmtForTaxDeduct": {
                                            "type": "integer"
                                          },
                                          "EmployerOrDeductorOrCollectDetl": {
                                            "type": "object",
                                            "properties": {
                                              "TAN": {
                                                "type": "string"
                                              },
                                              "EmployerOrDeductorOrCollecterName": {
                                                "type": "string"
                                              }
                                            }
                                          },
                                          "TotTDSOnAmtPaid": {
                                            "type": "integer"
                                          },
                                          "ClaimOutOfTotTDSOnAmtPaid": {
                                            "type": "integer"
                                          },
                                          "DeductedYr": {
                                            "type": "string",
                                            "format": "utc-millisec"
                                          }
                                        }
                                      }
                                    }
                                  }
                                },
                                "Form_ITR1": {
                                  "type": "object",
                                  "properties": {
                                    "SchemaVer": {
                                      "type": "string"
                                    },
                                    "Description": {
                                      "type": "string"
                                    },
                                    "FormVer": {
                                      "type": "string"
                                    },
                                    "AssessmentYear": {
                                      "type": "string",
                                      "format": "utc-millisec"
                                    },
                                    "FormName": {
                                      "type": "string"
                                    }
                                  }
                                },
                                "ITR1_TaxComputation": {
                                  "type": "object",
                                  "properties": {
                                    "TotTaxPlusIntrstPay": {
                                      "type": "integer"
                                    },
                                    "Rebate87A": {
                                      "type": "integer"
                                    },
                                    "TotalIntrstPay": {
                                      "type": "integer"
                                    },
                                    "EducationCess": {
                                      "type": "integer"
                                    },
                                    "TaxPayableOnRebate": {
                                      "type": "integer"
                                    },
                                    "GrossTaxLiability": {
                                      "type": "integer"
                                    },
                                    "NetTaxLiability": {
                                      "type": "integer"
                                    },
                                    "Section89": {
                                      "type": "integer"
                                    },
                                    "TotalTaxPayable": {
                                      "type": "integer"
                                    },
                                    "IntrstPay": {
                                      "type": "object",
                                      "properties": {
                                        "IntrstPayUs234C": {
                                          "type": "integer"
                                        },
                                        "IntrstPayUs234A": {
                                          "type": "integer"
                                        },
                                        "LateFilingFee234F": {
                                          "type": "integer"
                                        },
                                        "IntrstPayUs234B": {
                                          "type": "integer"
                                        }
                                      }
                                    }
                                  }
                                },
                                "Verification": {
                                  "type": "object",
                                  "properties": {
                                    "Capacity": {
                                      "type": "string"
                                    },
                                    "Declaration": {
                                      "type": "object",
                                      "properties": {
                                        "AssesseeVerName": {
                                          "type": "string"
                                        },
                                        "AssesseeVerPAN": {
                                          "type": "string"
                                        },
                                        "FatherName": {
                                          "type": "string"
                                        }
                                      }
                                    },
                                    "Place": {
                                      "type": "string"
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "example": {
                  "code": 200,
                  "data": {
                    "ITR": {
                      "ITR1": {
                        "CreationInfo": {
                          "IntermediaryCity": "Ahmedabad",
                          "JSONCreationDate": "2025-06-16",
                          "Digest": "IdMfc/+EDd69tgXy3n000XT149I73mUCZTiGiOLnZdY=",
                          "SWVersionNo": "6799d3323e",
                          "SWCreatedBy": "SW10012425",
                          "JSONCreatedBy": "SW10012425"
                        },
                        "LTCG112A": {
                          "TotCstAcqisn": 0,
                          "LongCap112A": 0,
                          "TotSaleCnsdrn": 0
                        },
                        "ITR1_IncomeDeductions": {
                          "Salary": 800000,
                          "GrossSalary": 800000,
                          "TotalIncomeOfHP": 0,
                          "IncomeNotified89AType": [],
                          "AllwncExemptUs10": {
                            "TotalAllwncExemptUs10": 0,
                            "AllwncExemptUs10Dtls": []
                          },
                          "NetSalary": 800000,
                          "ExemptIncAgriOthUs10": {
                            "ExemptIncAgriOthUs10Total": 0,
                            "ExemptIncAgriOthUs10Dtls": []
                          },
                          "GrossTotIncome": 1725000,
                          "UsrDeductUndChapVIA": {
                            "Section80DD": 0,
                            "Section80EE": 0,
                            "Section80GG": 0,
                            "Section80EEA": 0,
                            "Section80GGA": 0,
                            "Section80TTA": 0,
                            "Section80DDB": 0,
                            "Section80EEB": 0,
                            "Section80TTB": 0,
                            "Section80CCC": 0,
                            "Section80GGC": 0,
                            "Section80U": 0,
                            "Section80CCDEmployer": 0,
                            "TotalChapVIADeductions": 0,
                            "Section80C": 0,
                            "Section80D": 0,
                            "Section80CCD1B": 0,
                            "Section80G": 0,
                            "AnyOthSec80CCH": 0,
                            "Section80E": 0,
                            "Section80CCDEmployeeOrSE": 0
                          },
                          "IncomeFromSal": 725000,
                          "TotalIncome": 1725000,
                          "StandardDeduction": 0,
                          "ProfitsInSalary": 0,
                          "DeductionUs16": 75000,
                          "AnnualValue": 0,
                          "IncomeNotified89A": 0,
                          "GrossTotIncomeIncLTCG112A": 0,
                          "OthersInc": {
                            "OthersIncDtlsOthSrc": [
                              {
                                "OthSrcNatureDesc": "OTH",
                                "NOT89A": [],
                                "OthSrcOthNatOfInc": "income_from_other_sources",
                                "OthSrcOthAmount": 1000000
                              }
                            ]
                          },
                          "DeductionUs16ia": 75000,
                          "PerquisitesValue": 0,
                          "IncomeOthSrc": 1000000,
                          "DeductUndChapVIA": {
                            "Section80DD": 0,
                            "Section80EE": 0,
                            "Section80GG": 0,
                            "Section80EEA": 0,
                            "Section80GGA": 0,
                            "Section80TTA": 0,
                            "Section80DDB": 0,
                            "Section80EEB": 0,
                            "Section80TTB": 0,
                            "Section80CCC": 0,
                            "Section80GGC": 0,
                            "Section80U": 0,
                            "Section80CCDEmployer": 0,
                            "TotalChapVIADeductions": 0,
                            "Section80C": 0,
                            "Section80D": 0,
                            "Section80CCD1B": 0,
                            "Section80G": 0,
                            "AnyOthSec80CCH": 0,
                            "Section80E": 0,
                            "Section80CCDEmployeeOrSE": 0
                          }
                        },
                        "Refund": {
                          "BankAccountDtls": {
                            "AddtnlBankDetails": [
                              {
                                "BankName": "ICICI Bank",
                                "IFSCCode": "ICIC0000004",
                                "UseForRefund": "false",
                                "BankAccountNo": "000405007899",
                                "AccountType": "SB"
                              }
                            ]
                          },
                          "RefundDue": 84200
                        },
                        "PersonalInfo": {
                          "EmployerCategory": "CGOV",
                          "Address": {
                            "MobileNo": 9426588587,
                            "ZipCode": "45612",
                            "StateCode": "99",
                            "CountryCode": "9999",
                            "LocalityOrArea": "fgd",
                            "ResidenceNo": "dfdsf",
                            "CityOrTownOrDistrict": "gdf",
                            "EmailAddress": "parth.choksi@quicko.com",
                            "CountryCodeMobile": 91
                          },
                          "DOB": "2025-04-04",
                          "AadhaarCardNo": "662223509284",
                          "AssesseeName": {
                            "SurNameOrOrgName": "Patel",
                            "FirstName": "Utsav"
                          },
                          "PAN": "BMLPC3046C"
                        },
                        "TaxPaid": {
                          "BalTaxPayable": 0,
                          "TaxesPaid": {
                            "TDS": 300000,
                            "TCS": 0,
                            "AdvanceTax": 0,
                            "SelfAssessmentTax": 0,
                            "TotalTaxesPaid": 300000
                          }
                        },
                        "FilingStatus": {
                          "IncrExpAggAmt1LkElctrctyPrYrFlg": "N",
                          "ItrFilingDueDate": "2025-07-31",
                          "clauseiv7provisio139iDtls": [],
                          "IncrExpAggAmt2LkTrvFrgnCntryFlg": "N",
                          "SeventhProvisio139": "N",
                          "ReturnFileSec": 11,
                          "OptOutNewTaxRegime": "N"
                        },
                        "TDSonOthThanSals": {
                          "TotalTDSonOthThanSals": 300000,
                          "TDSonOthThanSal": [
                            {
                              "AmtForTaxDeduct": 500000,
                              "EmployerOrDeductorOrCollectDetl": {
                                "TAN": "DELH12345B",
                                "EmployerOrDeductorOrCollecterName": "Test"
                              },
                              "TotTDSOnAmtPaid": 300000,
                              "ClaimOutOfTotTDSOnAmtPaid": 300000,
                              "DeductedYr": "2024"
                            }
                          ]
                        },
                        "Form_ITR1": {
                          "SchemaVer": "Ver1.0",
                          "Description": "For Indls having Income from Salary, Pension, family pension and Interest",
                          "FormVer": "Ver1.0",
                          "AssessmentYear": "2025",
                          "FormName": "ITR-1"
                        },
                        "ITR1_TaxComputation": {
                          "TotTaxPlusIntrstPay": 215800,
                          "Rebate87A": 0,
                          "TotalIntrstPay": 0,
                          "EducationCess": 8300,
                          "TaxPayableOnRebate": 207500,
                          "GrossTaxLiability": 215800,
                          "NetTaxLiability": 215800,
                          "Section89": 0,
                          "TotalTaxPayable": 207500,
                          "IntrstPay": {
                            "IntrstPayUs234C": 0,
                            "IntrstPayUs234A": 0,
                            "LateFilingFee234F": 0,
                            "IntrstPayUs234B": 0
                          }
                        },
                        "Verification": {
                          "Capacity": "S",
                          "Declaration": {
                            "AssesseeVerName": "Utsav Patel",
                            "AssesseeVerPAN": "BMLPC3046C",
                            "FatherName": "Bhavesh Chokshi"
                          },
                          "Place": "gdf"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "income-tax",
          "2025"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "@entity": {
                    "type": "string"
                  },
                  "taxComputationList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "total_taxable_salary": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "advanceTaxInstallmentTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "integer"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithBooksOfAccountsSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithoutBooksOfAccountsSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithPresumptiveTaxSchemeSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "professionWithBooksOfAccountsSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "professionWithoutBooksOfAccountsSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "professionWithPresumptiveTaxSchemeSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithSpeculativeTradingSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithNonSpeculativeTradingSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithFuturesAndOptionsTradingSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "balanceSheetDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "equity": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "proprietorshipWithBooksOfAccountsBalanceSheetDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "equity": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "proprietorshipWithPresumptiveTaxSchemeBalanceSheetDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "equity": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "proprietorshipWithoutBooksOfAccountsBalanceSheetDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "equity": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "profitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "incomes": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "proprietorshipWithBooksOfAccountsProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "incomes": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "proprietorshipWithPresumptiveTaxSchemeProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "proprietorshipWithoutBooksOfAccountsProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "total_indirect_expenses": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithBooksOfAccountsProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "incomes": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithNonSpeculativeProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "turnover": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithPresumptiveTaxSchemeProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithSpeculativeProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "turnover": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessWithoutBooksOfAccountsProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "total_indirect_expenses": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "professionWithBooksOfAccountsProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "incomes": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "professionWithPresumptiveTaxSchemeProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "gross_revenue": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "professionWithoutBooksOfAccountsProfitAndLossDetailList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "total_indirect_expenses": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "headwiseCapitalGainsSummaryTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "businessTurnoverSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "total_turnover": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "professionTurnoverSummaryList": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "items": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "total_turnover": {
                              "type": "integer"
                            }
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "currentYearCapitalLossAdjustmentTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "currentYearCapitalGainsAdjustmentTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "accruedCapitalGainsTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "integer"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "currentYearLossAdjustmentTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "currentYearIncomeAdjustmentAgainstCurrentYearLossTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "broughtForwardLossAdjustmentTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "currentYearIncomeAdjustmentAgainstBroughtForwardLossTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "carryForwardLossTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "taxPayableSummaryTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {
                          "type": "array",
                          "items": {
                            "nullable": true
                          }
                        }
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "taxReliefTable": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {}
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  },
                  "form": {
                    "type": "string"
                  },
                  "currentAssessmentYear": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "string"
                  },
                  "updated_at": {
                    "type": "integer"
                  },
                  "created_at": {
                    "type": "integer"
                  },
                  "assessment_year": {
                    "type": "string"
                  },
                  "itr_form": {
                    "type": "string"
                  },
                  "tax_regime": {
                    "type": "string"
                  },
                  "status": {
                    "type": "string"
                  },
                  "due_date": {
                    "type": "integer"
                  },
                  "filing_type": {
                    "type": "string"
                  },
                  "original_acknowledgement_number": {
                    "type": "string",
                    "format": "utc-millisec"
                  },
                  "filed_under_section": {
                    "type": "string"
                  },
                  "tax_payer": {
                    "type": "object",
                    "properties": {
                      "@entity": {
                        "type": "string"
                      },
                      "id": {
                        "type": "string"
                      },
                      "updated_at": {
                        "type": "integer"
                      },
                      "pan": {
                        "type": "string"
                      },
                      "pan_holder_type": {
                        "type": "string"
                      },
                      "address": {
                        "type": "object",
                        "properties": {
                          "@entity": {
                            "type": "string"
                          },
                          "completeAddress": {
                            "type": "boolean"
                          },
                          "street": {
                            "type": "string"
                          },
                          "area": {
                            "type": "string"
                          },
                          "city": {
                            "type": "string"
                          },
                          "state": {
                            "type": "string"
                          },
                          "postal_code": {
                            "type": "string",
                            "format": "color"
                          },
                          "country": {
                            "type": "string"
                          }
                        }
                      },
                      "contact": {
                        "type": "object",
                        "properties": {
                          "@entity": {
                            "type": "string"
                          },
                          "email": {
                            "type": "string",
                            "format": "email"
                          },
                          "country_code": {
                            "type": "string",
                            "format": "utc-millisec"
                          },
                          "mobile": {
                            "type": "string",
                            "format": "utc-millisec"
                          }
                        }
                      },
                      "filing_category": {
                        "type": "string"
                      },
                      "tax_payer_status": {
                        "type": "string"
                      },
                      "residential_status": {
                        "type": "string"
                      },
                      "last_name": {
                        "type": "string"
                      },
                      "gender": {
                        "type": "string"
                      },
                      "fathers_name": {
                        "type": "string"
                      },
                      "dob": {
                        "type": "integer"
                      },
                      "age": {
                        "type": "integer"
                      },
                      "aadhaar": {
                        "type": "string",
                        "format": "utc-millisec"
                      }
                    }
                  },
                  "incomes": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "gross_income": {
                          "type": "integer"
                        },
                        "head": {
                          "type": "string"
                        },
                        "sub_head": {
                          "type": "string"
                        },
                        "is_exempt": {
                          "type": "boolean"
                        },
                        "is_foreign": {
                          "type": "boolean"
                        },
                        "taxable_income": {
                          "type": "integer"
                        },
                        "net_taxable_income": {
                          "type": "integer"
                        },
                        "tds": {
                          "type": "object",
                          "properties": {
                            "@entity": {
                              "type": "string"
                            },
                            "id": {
                              "type": "string"
                            },
                            "financial_year": {
                              "type": "string"
                            },
                            "tax_amount": {
                              "type": "integer"
                            },
                            "tan": {
                              "type": "string"
                            },
                            "deductor": {
                              "type": "string"
                            },
                            "income_head": {
                              "type": "string"
                            },
                            "credit_amount": {
                              "type": "integer"
                            },
                            "country": {
                              "type": "string"
                            },
                            "assessment_year": {
                              "type": "string"
                            }
                          }
                        },
                        "deductions": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "@entity": {
                                "type": "string"
                              },
                              "id": {
                                "type": "string"
                              },
                              "qualified": {
                                "type": "integer"
                              },
                              "deductible": {
                                "type": "integer"
                              },
                              "gross_deductible": {
                                "type": "integer"
                              },
                              "allowable": {
                                "type": "integer"
                              },
                              "section": {
                                "type": "string"
                              },
                              "is_under_chapter_vi_a": {
                                "type": "boolean"
                              }
                            }
                          }
                        },
                        "employer": {
                          "type": "object",
                          "properties": {
                            "@entity": {
                              "type": "string"
                            },
                            "id": {
                              "type": "string"
                            },
                            "updated_at": {
                              "type": "integer"
                            },
                            "name": {
                              "type": "string"
                            },
                            "address": {
                              "type": "object",
                              "properties": {
                                "@entity": {
                                  "type": "string"
                                },
                                "completeAddress": {
                                  "type": "boolean"
                                },
                                "street": {
                                  "type": "string"
                                },
                                "area": {
                                  "type": "string"
                                },
                                "city": {
                                  "type": "string"
                                },
                                "state": {
                                  "type": "string"
                                },
                                "postal_code": {
                                  "type": "string",
                                  "format": "color"
                                },
                                "country": {
                                  "type": "string"
                                }
                              }
                            },
                            "residential_status": {
                              "type": "string"
                            },
                            "tan": {
                              "type": "string"
                            },
                            "category": {
                              "type": "string"
                            }
                          }
                        },
                        "allowances": {
                          "type": "array",
                          "items": {}
                        },
                        "perquisites": {
                          "type": "integer"
                        },
                        "basic_salary": {
                          "type": "integer"
                        },
                        "profit": {
                          "type": "integer"
                        },
                        "net_salary": {
                          "type": "integer"
                        }
                      }
                    }
                  },
                  "chapter_vi_a_deductions": {
                    "type": "array",
                    "items": {}
                  },
                  "tax_credits": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "financial_year": {
                          "type": "string"
                        },
                        "tax_amount": {
                          "type": "integer"
                        },
                        "paid_on_date": {
                          "type": "integer"
                        },
                        "challan_number": {
                          "type": "string",
                          "format": "utc-millisec"
                        },
                        "bsr_code": {
                          "type": "string",
                          "format": "utc-millisec"
                        },
                        "assessment_year": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "bank_accounts": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "created_at": {
                          "type": "integer"
                        },
                        "account_number": {
                          "type": "string",
                          "format": "utc-millisec"
                        },
                        "bank_name": {
                          "type": "string"
                        },
                        "account_type": {
                          "type": "string"
                        },
                        "ifsc": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "capital_gains_accounts": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "updated_at": {
                          "type": "integer"
                        },
                        "created_at": {
                          "type": "integer"
                        },
                        "name": {
                          "type": "string"
                        },
                        "external_id": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "brought_forward_losses": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "loss": {
                          "type": "integer"
                        },
                        "net_loss": {
                          "type": "integer"
                        },
                        "head": {
                          "type": "string"
                        },
                        "sub_head": {
                          "type": "string"
                        },
                        "assessment_year": {
                          "type": "string"
                        },
                        "original_filed_on": {
                          "type": "integer"
                        }
                      }
                    }
                  },
                  "proprietorship_assets": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "business_id": {
                          "type": "string"
                        },
                        "head": {
                          "type": "string"
                        },
                        "sub_head": {
                          "type": "string"
                        },
                        "purchase_value": {
                          "type": "integer"
                        },
                        "book_value": {
                          "type": "integer"
                        },
                        "net_value": {
                          "type": "integer"
                        }
                      }
                    }
                  },
                  "proprietorship_liabilities": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "business_id": {
                          "type": "string"
                        },
                        "head": {
                          "type": "string"
                        },
                        "sub_head": {
                          "type": "string"
                        },
                        "amount": {
                          "type": "integer"
                        }
                      }
                    }
                  },
                  "proprietorship_expenses": {
                    "type": "array",
                    "items": {}
                  },
                  "personal_assets": {
                    "type": "array",
                    "items": {}
                  },
                  "personal_liabilities": {
                    "type": "array",
                    "items": {}
                  },
                  "businesses": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "@entity": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "nature_of_business": {
                          "type": "string"
                        },
                        "category": {
                          "type": "string"
                        },
                        "sub_category": {
                          "type": "string"
                        },
                        "taxation_scheme": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "tax_regime_disclosure": {
                    "type": "object",
                    "properties": {
                      "@entity": {
                        "type": "string"
                      },
                      "id": {
                        "type": "string"
                      },
                      "itr_filed_for_previous_year": {
                        "type": "boolean"
                      },
                      "itr_form_for_previous_year": {
                        "type": "string"
                      },
                      "tax_regime_for_previous_year": {
                        "type": "string"
                      }
                    }
                  },
                  "settlements_us_112_a": {
                    "type": "object",
                    "properties": {
                      "metadata": {
                        "type": "object"
                      },
                      "@entity": {
                        "type": "string"
                      },
                      "header": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "rows": {
                        "type": "array",
                        "items": {}
                      },
                      "name": {
                        "type": "string"
                      }
                    }
                  }
                }
              },
              "example": {
                "@entity": "com.quicko.it.file.ay_2025.income_tax_return_wrapper",
                "taxComputationList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "total_taxable_salary": 1712837
                    },
                    {
                      "total_taxable_house_property": 0
                    },
                    {
                      "total_taxable_capital_gains": 1265028
                    },
                    {
                      "total_taxable_other": 66922
                    },
                    {
                      "total_taxable_business_profession": 0
                    },
                    {
                      "total_headwise_income": 3044787
                    },
                    {
                      "current_year_loss_adjusted": 0
                    },
                    {
                      "brought_forward_loss_adjusted": 0
                    },
                    {
                      "losses_adjusted": 0
                    },
                    {
                      "carry_forward_loss": 611463
                    },
                    {
                      "gross_normal_income": 1779759
                    },
                    {
                      "gross_special_income": 1265028
                    },
                    {
                      "gross_total_income": 3044787
                    },
                    {
                      "total_chapter_vi_a_deduction": 0
                    },
                    {
                      "total_normal_income": 1779762
                    },
                    {
                      "total_special_income": 1265028
                    },
                    {
                      "aggregate_income": 1779762
                    },
                    {
                      "total_income": 3044790
                    },
                    {
                      "total_exempt_income": 0
                    },
                    {
                      "exempt_ltcg_under_112a": 0
                    },
                    {
                      "tax_payable_on_normal_rate_income": 223928
                    },
                    {
                      "tax_payable_on_special_rate_income": 200196
                    },
                    {
                      "tax_payable_on_total_income": 424124
                    },
                    {
                      "rebate": 0
                    },
                    {
                      "tax_after_rebate": 424124
                    },
                    {
                      "surcharge_before_marginal_relief": 0
                    },
                    {
                      "surcharge": 0
                    },
                    {
                      "cess": 16964
                    },
                    {
                      "surcharge_and_cess": 16964
                    },
                    {
                      "gross_tax_payable": 441088
                    },
                    {
                      "relief_us_89": 0
                    },
                    {
                      "relief_us_90_and_90a": 0
                    },
                    {
                      "relief_us_91": 0
                    },
                    {
                      "total_relief": 0
                    },
                    {
                      "effective_tax_rate": 14.48
                    },
                    {
                      "interest_234_a": 0
                    },
                    {
                      "interest_234_b": 13404
                    },
                    {
                      "interest_234_c": 10877
                    },
                    {
                      "fees_234_f": 0
                    },
                    {
                      "total_interest_and_penalty": 24281
                    },
                    {
                      "net_tax_payable": 465369
                    },
                    {
                      "total_advance_tax_paid": 0
                    },
                    {
                      "total_self_assessment_tax": 246380
                    },
                    {
                      "total_tax_deducted_at_source": 217618
                    },
                    {
                      "total_tax_collected_at_source": 0
                    },
                    {
                      "total_tax_withheld_outside_india": 0
                    },
                    {
                      "total_taxes_paid": 463998
                    },
                    {
                      "refund": 0
                    },
                    {
                      "due": 1370
                    }
                  ],
                  "name": "tax_computation_list"
                },
                "advanceTaxInstallmentTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "quarter",
                    "due_date",
                    "tax_payable",
                    "installment_percentage",
                    "installment",
                    "tax_credits",
                    "tax_outstanding",
                    "interest_percentage",
                    "interest"
                  ],
                  "rows": [
                    [
                      1,
                      1718476199999,
                      175534,
                      15,
                      26330,
                      0,
                      26330,
                      3,
                      789
                    ],
                    [
                      2,
                      1726424999999,
                      213197,
                      45,
                      95938,
                      0,
                      95938,
                      3,
                      2878
                    ],
                    [
                      3,
                      1734287399999,
                      221188,
                      75,
                      165891,
                      0,
                      165891,
                      3,
                      4976
                    ],
                    [
                      4,
                      1742063399999,
                      223469,
                      100,
                      223469,
                      0,
                      223469,
                      1,
                      2234
                    ]
                  ],
                  "name": "advance_tax_installment_table"
                },
                "businessWithBooksOfAccountsSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 58076947
                    },
                    {
                      "total_sales_of_trading_goods": 0
                    },
                    {
                      "total_sales_of_trading_services": 0
                    },
                    {
                      "total_sales_of_trading_securities": 58076947
                    },
                    {
                      "total_turnover_of_trading_securities": 659441
                    },
                    {
                      "other_direct_incomes": 0
                    },
                    {
                      "cost_of_goods_sold": 58513204
                    },
                    {
                      "opening_stock": 0
                    },
                    {
                      "total_purchases": 58486733
                    },
                    {
                      "closing_stock": 0
                    },
                    {
                      "direct_expenses": 26471
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "gross_loss": -436257
                    }
                  ],
                  "name": "business_with_books_of_accounts_summary_list"
                },
                "businessWithoutBooksOfAccountsSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 0
                    },
                    {
                      "gross_bank_revenue": 0
                    },
                    {
                      "gross_cash_revenue": 0
                    },
                    {
                      "total_expenses": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "net_profit": 0
                    }
                  ],
                  "name": "business_without_books_of_accounts_summary_list"
                },
                "businessWithPresumptiveTaxSchemeSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 0
                    },
                    {
                      "total_bank_revenue": 0
                    },
                    {
                      "total_cash_revenue": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "gross_bank_profit": 0
                    },
                    {
                      "gross_cash_profit": 0
                    }
                  ],
                  "name": "business_with_presumptive_tax_scheme_summary_list"
                },
                "professionWithBooksOfAccountsSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 0
                    },
                    {
                      "gross_receipts_of_profession": 0
                    },
                    {
                      "other_direct_incomes": 0
                    },
                    {
                      "cost_of_goods_sold": 0
                    },
                    {
                      "opening_stock": 0
                    },
                    {
                      "total_purchases": 0
                    },
                    {
                      "closing_stock": 0
                    },
                    {
                      "direct_expenses": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "gross_loss": 0
                    }
                  ],
                  "name": "profession_with_books_of_accounts_summary_list"
                },
                "professionWithoutBooksOfAccountsSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 0
                    },
                    {
                      "gross_bank_revenue": 0
                    },
                    {
                      "gross_cash_revenue": 0
                    },
                    {
                      "total_expenses": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "net_profit": 0
                    }
                  ],
                  "name": "profession_without_books_of_accounts_summary_list"
                },
                "professionWithPresumptiveTaxSchemeSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 0
                    },
                    {
                      "total_bank_revenue": 0
                    },
                    {
                      "total_cash_revenue": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "gross_bank_profit": 0
                    },
                    {
                      "gross_cash_profit": 0
                    }
                  ],
                  "name": "profession_with_presumptive_tax_scheme_summary_list"
                },
                "businessWithSpeculativeTradingSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 58076947
                    },
                    {
                      "total_turnover_of_trading_securities": 659441
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "gross_loss": -436257
                    }
                  ],
                  "name": "business_with_speculative_trading_summary_list"
                },
                "businessWithNonSpeculativeTradingSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 0
                    },
                    {
                      "total_sales_of_trading_goods": 0
                    },
                    {
                      "total_sales_of_trading_services": 0
                    },
                    {
                      "total_sales_of_trading_securities": 0
                    },
                    {
                      "total_turnover_of_trading_securities": 0
                    },
                    {
                      "other_direct_incomes": 0
                    },
                    {
                      "cost_of_goods_sold": 0
                    },
                    {
                      "opening_stock": 0
                    },
                    {
                      "total_purchases": 0
                    },
                    {
                      "closing_stock": 0
                    },
                    {
                      "direct_expenses": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "gross_loss": 0
                    }
                  ],
                  "name": "business_with_non_speculative_trading_summary_list"
                },
                "businessWithFuturesAndOptionsTradingSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 0
                    },
                    {
                      "total_sales_of_trading_securities": 0
                    },
                    {
                      "total_turnover_of_trading_securities": 0
                    },
                    {
                      "other_direct_incomes": 0
                    },
                    {
                      "cost_of_securities_sold": 0
                    },
                    {
                      "opening_stock": 0
                    },
                    {
                      "total_purchases": 0
                    },
                    {
                      "closing_stock": 0
                    },
                    {
                      "direct_expenses": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "gross_loss": 0
                    }
                  ],
                  "name": "business_with_futures_and_options_trading_summary_list"
                },
                "balanceSheetDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "equity": 126870
                    },
                    {
                      "proprietors_capital": 126870
                    },
                    {
                      "reserves_and_surplus": 0
                    },
                    {
                      "non_current_liabilities": 0
                    },
                    {
                      "secured_loans": 0
                    },
                    {
                      "unsecured_loans": 0
                    },
                    {
                      "advances": 0
                    },
                    {
                      "current_liabilities": 0
                    },
                    {
                      "payables": 0
                    },
                    {
                      "provisions_for_expenses": 0
                    },
                    {
                      "other_current_liabilities": 0
                    },
                    {
                      "total_equity_and_liabilities": 126870
                    },
                    {
                      "fixed_assets": 0
                    },
                    {
                      "laptop_computers": 0
                    },
                    {
                      "mobile_phone": 0
                    },
                    {
                      "other_plant_and_machinery": 0
                    },
                    {
                      "agricultural_land": 0
                    },
                    {
                      "non_agricultural_land": 0
                    },
                    {
                      "residential_building": 0
                    },
                    {
                      "non_residential_builiding": 0
                    },
                    {
                      "furniture_and_fitting": 0
                    },
                    {
                      "intangible_asset": 0
                    },
                    {
                      "investments": 0
                    },
                    {
                      "long_term_investments": 0
                    },
                    {
                      "short_term_investments": 0
                    },
                    {
                      "current_assets": 126870
                    },
                    {
                      "stock": 0
                    },
                    {
                      "cash_balance": 0
                    },
                    {
                      "bank_balance": 126870
                    },
                    {
                      "receivables": 0
                    },
                    {
                      "loans_and_advances": 0
                    },
                    {
                      "other_current_assets": 0
                    },
                    {
                      "total_assets": 126870
                    }
                  ],
                  "name": "balance_sheet_detail_list"
                },
                "proprietorshipWithBooksOfAccountsBalanceSheetDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "equity": 126870
                    },
                    {
                      "proprietors_capital": 126870
                    },
                    {
                      "reserves_and_surplus": 0
                    },
                    {
                      "non_current_liabilities": 0
                    },
                    {
                      "secured_loans": 0
                    },
                    {
                      "unsecured_loans": 0
                    },
                    {
                      "advances": 0
                    },
                    {
                      "current_liabilities": 0
                    },
                    {
                      "payables": 0
                    },
                    {
                      "provisions_for_expenses": 0
                    },
                    {
                      "other_current_liabilities": 0
                    },
                    {
                      "total_equity_and_liabilities": 126870
                    },
                    {
                      "fixed_assets": 0
                    },
                    {
                      "laptop_computers": 0
                    },
                    {
                      "mobile_phone": 0
                    },
                    {
                      "other_plant_and_machinery": 0
                    },
                    {
                      "agricultural_land": 0
                    },
                    {
                      "non_agricultural_land": 0
                    },
                    {
                      "residential_building": 0
                    },
                    {
                      "non_residential_builiding": 0
                    },
                    {
                      "furniture_and_fitting": 0
                    },
                    {
                      "intangible_asset": 0
                    },
                    {
                      "investments": 0
                    },
                    {
                      "long_term_investments": 0
                    },
                    {
                      "short_term_investments": 0
                    },
                    {
                      "current_assets": 126870
                    },
                    {
                      "stock": 0
                    },
                    {
                      "cash_balance": 0
                    },
                    {
                      "bank_balance": 126870
                    },
                    {
                      "receivables": 0
                    },
                    {
                      "loans_and_advances": 0
                    },
                    {
                      "other_current_assets": 0
                    },
                    {
                      "total_assets": 126870
                    }
                  ],
                  "name": "proprietorship_with_books_of_accounts_balance_sheet_detail_list"
                },
                "proprietorshipWithPresumptiveTaxSchemeBalanceSheetDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "equity": 0
                    },
                    {
                      "proprietors_capital": 0
                    },
                    {
                      "reserves_and_surplus": 0
                    },
                    {
                      "non_current_liabilities": 0
                    },
                    {
                      "secured_loans": 0
                    },
                    {
                      "unsecured_loans": 0
                    },
                    {
                      "advances": 0
                    },
                    {
                      "current_liabilities": 0
                    },
                    {
                      "payables": 0
                    },
                    {
                      "provisions_for_expenses": 0
                    },
                    {
                      "other_current_liabilities": 0
                    },
                    {
                      "total_equity_and_liabilities": 0
                    },
                    {
                      "investments": 0
                    },
                    {
                      "long_term_investments": 0
                    },
                    {
                      "short_term_investments": 0
                    },
                    {
                      "current_assets": 0
                    },
                    {
                      "stock": 0
                    },
                    {
                      "cash_balance": 0
                    },
                    {
                      "bank_balance": 0
                    },
                    {
                      "receivables": 0
                    },
                    {
                      "loans_and_advances": 0
                    },
                    {
                      "other_current_assets": 0
                    },
                    {
                      "total_assets": 0
                    }
                  ],
                  "name": "proprietorship_with_presumptive_tax_scheme_balance_sheet_detail_list"
                },
                "proprietorshipWithoutBooksOfAccountsBalanceSheetDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "equity": 0
                    },
                    {
                      "proprietors_capital": 0
                    },
                    {
                      "current_liabilities": 0
                    },
                    {
                      "payables": 0
                    },
                    {
                      "other_current_liabilities": 0
                    },
                    {
                      "total_equity_and_liabilities": 0
                    },
                    {
                      "current_assets": 0
                    },
                    {
                      "stock": 0
                    },
                    {
                      "cash_balance": 0
                    },
                    {
                      "receivables": 0
                    },
                    {
                      "total_assets": 0
                    }
                  ],
                  "name": "proprietorship_without_books_of_accounts_balance_sheet_detail_list"
                },
                "profitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "incomes": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "indirect_income": 0
                    },
                    {
                      "expenses": 436257
                    },
                    {
                      "loss": 436257
                    },
                    {
                      "gross_loss": 436257
                    },
                    {
                      "compensation_to_employees": 0
                    },
                    {
                      "salary_and_wages": 0
                    },
                    {
                      "bonus": 0
                    },
                    {
                      "leave_encashment": 0
                    },
                    {
                      "contribution_to_pf": 0
                    },
                    {
                      "contribution_to_gratuity_fund": 0
                    },
                    {
                      "professional_and_consultancy_expenses": 0
                    },
                    {
                      "audit_fees": 0
                    },
                    {
                      "accounting_fees": 0
                    },
                    {
                      "advisory_expenses": 0
                    },
                    {
                      "legal_fees": 0
                    },
                    {
                      "duties_and_taxes": 0
                    },
                    {
                      "securities_transaction_tax": 0
                    },
                    {
                      "commodities_transaction_tax": 0
                    },
                    {
                      "central_goods_and_services_tax": 0
                    },
                    {
                      "state_goods_and_services_tax": 0
                    },
                    {
                      "integrated_goods_and_services_tax": 0
                    },
                    {
                      "union_territory_goods_and_services_tax": 0
                    },
                    {
                      "stamp_duty": 0
                    },
                    {
                      "insurance": 0
                    },
                    {
                      "medical_insurance": 0
                    },
                    {
                      "life_insurance": 0
                    },
                    {
                      "other_insurance": 0
                    },
                    {
                      "operating_expenses": 0
                    },
                    {
                      "office_supplies": 0
                    },
                    {
                      "meals_and_entertainment": 0
                    },
                    {
                      "subscription_charges": 0
                    },
                    {
                      "marketing_and_advertisement": 0
                    },
                    {
                      "bank_charges": 0
                    },
                    {
                      "rent": 0
                    },
                    {
                      "commission": 0
                    },
                    {
                      "interest_expenses": 0
                    },
                    {
                      "festival_celebration_expenses": 0
                    },
                    {
                      "donation": 0
                    },
                    {
                      "gift": 0
                    },
                    {
                      "computer_repairs": 0
                    },
                    {
                      "hotel_expenses": 0
                    },
                    {
                      "other_expenses": 0
                    },
                    {
                      "travel_expenses": 0
                    },
                    {
                      "domestic_travelling_expenses": 0
                    },
                    {
                      "foreign_travelling_expenses": 0
                    },
                    {
                      "transfer_expenses": 0
                    },
                    {
                      "brokerage": 0
                    },
                    {
                      "exchange_transaction_charges": 0
                    },
                    {
                      "sebi_turnover_fees": 0
                    },
                    {
                      "clearing_charges": 0
                    },
                    {
                      "depositary_participant_charges": 0
                    },
                    {
                      "margin_trading_interest": 0
                    },
                    {
                      "other_transfer_expenses": 0
                    },
                    {
                      "utility_expenses": 0
                    },
                    {
                      "electricity_and_fuel_expenses": 0
                    },
                    {
                      "mobile_bill": 0
                    },
                    {
                      "internet_bill": 0
                    },
                    {
                      "depreciation_and_amortization": 0
                    },
                    {
                      "depreciation": 0
                    },
                    {
                      "net_profit": 0
                    },
                    {
                      "net_loss": 436257
                    }
                  ],
                  "name": "profit_and_loss_detail_list"
                },
                "proprietorshipWithBooksOfAccountsProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "incomes": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "indirect_income": 0
                    },
                    {
                      "expenses": 436257
                    },
                    {
                      "loss": 436257
                    },
                    {
                      "gross_loss": 436257
                    },
                    {
                      "compensation_to_employees": 0
                    },
                    {
                      "salary_and_wages": 0
                    },
                    {
                      "bonus": 0
                    },
                    {
                      "leave_encashment": 0
                    },
                    {
                      "contribution_to_pf": 0
                    },
                    {
                      "contribution_to_gratuity_fund": 0
                    },
                    {
                      "professional_and_consultancy_expenses": 0
                    },
                    {
                      "audit_fees": 0
                    },
                    {
                      "accounting_fees": 0
                    },
                    {
                      "advisory_expenses": 0
                    },
                    {
                      "legal_fees": 0
                    },
                    {
                      "duties_and_taxes": 0
                    },
                    {
                      "securities_transaction_tax": 0
                    },
                    {
                      "commodities_transaction_tax": 0
                    },
                    {
                      "central_goods_and_services_tax": 0
                    },
                    {
                      "state_goods_and_services_tax": 0
                    },
                    {
                      "integrated_goods_and_services_tax": 0
                    },
                    {
                      "union_territory_goods_and_services_tax": 0
                    },
                    {
                      "stamp_duty": 0
                    },
                    {
                      "insurance": 0
                    },
                    {
                      "medical_insurance": 0
                    },
                    {
                      "life_insurance": 0
                    },
                    {
                      "other_insurance": 0
                    },
                    {
                      "operating_expenses": 0
                    },
                    {
                      "office_supplies": 0
                    },
                    {
                      "meals_and_entertainment": 0
                    },
                    {
                      "subscription_charges": 0
                    },
                    {
                      "marketing_and_advertisement": 0
                    },
                    {
                      "bank_charges": 0
                    },
                    {
                      "rent": 0
                    },
                    {
                      "commission": 0
                    },
                    {
                      "interest_expenses": 0
                    },
                    {
                      "festival_celebration_expenses": 0
                    },
                    {
                      "donation": 0
                    },
                    {
                      "gift": 0
                    },
                    {
                      "computer_repairs": 0
                    },
                    {
                      "hotel_expenses": 0
                    },
                    {
                      "other_expenses": 0
                    },
                    {
                      "travel_expenses": 0
                    },
                    {
                      "domestic_travelling_expenses": 0
                    },
                    {
                      "foreign_travelling_expenses": 0
                    },
                    {
                      "transfer_expenses": 0
                    },
                    {
                      "brokerage": 0
                    },
                    {
                      "exchange_transaction_charges": 0
                    },
                    {
                      "sebi_turnover_fees": 0
                    },
                    {
                      "clearing_charges": 0
                    },
                    {
                      "depositary_participant_charges": 0
                    },
                    {
                      "margin_trading_interest": 0
                    },
                    {
                      "other_transfer_expenses": 0
                    },
                    {
                      "utility_expenses": 0
                    },
                    {
                      "electricity_and_fuel_expenses": 0
                    },
                    {
                      "mobile_bill": 0
                    },
                    {
                      "internet_bill": 0
                    },
                    {
                      "depreciation_and_amortization": 0
                    },
                    {
                      "depreciation": 0
                    },
                    {
                      "net_profit": 0
                    },
                    {
                      "net_loss": 436257
                    }
                  ],
                  "name": "proprietorship_with_books_of_accounts_profit_and_loss_detail_list"
                },
                "proprietorshipWithPresumptiveTaxSchemeProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 0
                    },
                    {
                      "gross_bank_revenue": 0
                    },
                    {
                      "gross_cash_revenue": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "gross_bank_profit": 0
                    },
                    {
                      "gross_cash_profit": 0
                    }
                  ],
                  "name": "proprietorship_with_presumptive_tax_scheme_profit_and_loss_detail_list"
                },
                "proprietorshipWithoutBooksOfAccountsProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "total_indirect_expenses": 0
                    },
                    {
                      "gross_revenue": 0
                    },
                    {
                      "gross_bank_revenue": 0
                    },
                    {
                      "gross_cash_revenue": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "net_profit": 0
                    }
                  ],
                  "name": "proprietorship_without_books_of_accounts_profit_and_loss_detail_list"
                },
                "businessWithBooksOfAccountsProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "incomes": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "indirect_income": 0
                    },
                    {
                      "expenses": 436257
                    },
                    {
                      "loss": 436257
                    },
                    {
                      "gross_loss": 436257
                    },
                    {
                      "compensation_to_employees": 0
                    },
                    {
                      "salary_and_wages": 0
                    },
                    {
                      "bonus": 0
                    },
                    {
                      "leave_encashment": 0
                    },
                    {
                      "contribution_to_pf": 0
                    },
                    {
                      "contribution_to_gratuity_fund": 0
                    },
                    {
                      "professional_and_consultancy_expenses": 0
                    },
                    {
                      "audit_fees": 0
                    },
                    {
                      "accounting_fees": 0
                    },
                    {
                      "advisory_expenses": 0
                    },
                    {
                      "legal_fees": 0
                    },
                    {
                      "duties_and_taxes": 0
                    },
                    {
                      "securities_transaction_tax": 0
                    },
                    {
                      "commodities_transaction_tax": 0
                    },
                    {
                      "central_goods_and_services_tax": 0
                    },
                    {
                      "state_goods_and_services_tax": 0
                    },
                    {
                      "integrated_goods_and_services_tax": 0
                    },
                    {
                      "union_territory_goods_and_services_tax": 0
                    },
                    {
                      "stamp_duty": 0
                    },
                    {
                      "insurance": 0
                    },
                    {
                      "medical_insurance": 0
                    },
                    {
                      "life_insurance": 0
                    },
                    {
                      "other_insurance": 0
                    },
                    {
                      "operating_expenses": 0
                    },
                    {
                      "office_supplies": 0
                    },
                    {
                      "meals_and_entertainment": 0
                    },
                    {
                      "subscription_charges": 0
                    },
                    {
                      "marketing_and_advertisement": 0
                    },
                    {
                      "bank_charges": 0
                    },
                    {
                      "rent": 0
                    },
                    {
                      "commission": 0
                    },
                    {
                      "interest_expenses": 0
                    },
                    {
                      "festival_celebration_expenses": 0
                    },
                    {
                      "donation": 0
                    },
                    {
                      "gift": 0
                    },
                    {
                      "computer_repairs": 0
                    },
                    {
                      "hotel_expenses": 0
                    },
                    {
                      "other_expenses": 0
                    },
                    {
                      "travel_expenses": 0
                    },
                    {
                      "domestic_travelling_expenses": 0
                    },
                    {
                      "foreign_travelling_expenses": 0
                    },
                    {
                      "transfer_expenses": 0
                    },
                    {
                      "brokerage": 0
                    },
                    {
                      "exchange_transaction_charges": 0
                    },
                    {
                      "sebi_turnover_fees": 0
                    },
                    {
                      "clearing_charges": 0
                    },
                    {
                      "depositary_participant_charges": 0
                    },
                    {
                      "margin_trading_interest": 0
                    },
                    {
                      "other_transfer_expenses": 0
                    },
                    {
                      "utility_expenses": 0
                    },
                    {
                      "electricity_and_fuel_expenses": 0
                    },
                    {
                      "mobile_bill": 0
                    },
                    {
                      "internet_bill": 0
                    },
                    {
                      "depreciation_and_amortization": 0
                    },
                    {
                      "depreciation": 0
                    },
                    {
                      "net_profit": 0
                    },
                    {
                      "net_loss": 436257
                    }
                  ],
                  "name": "business_with_books_of_accounts_profit_and_loss_detail_list"
                },
                "businessWithNonSpeculativeProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "turnover": 0
                    },
                    {
                      "incomes": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "indirect_income": 0
                    },
                    {
                      "expenses": 0
                    },
                    {
                      "loss": 0
                    },
                    {
                      "gross_loss": 0
                    },
                    {
                      "compensation_to_employees": 0
                    },
                    {
                      "salary_and_wages": 0
                    },
                    {
                      "bonus": 0
                    },
                    {
                      "leave_encashment": 0
                    },
                    {
                      "contribution_to_pf": 0
                    },
                    {
                      "contribution_to_gratuity_fund": 0
                    },
                    {
                      "professional_and_consultancy_expenses": 0
                    },
                    {
                      "audit_fees": 0
                    },
                    {
                      "accounting_fees": 0
                    },
                    {
                      "advisory_expenses": 0
                    },
                    {
                      "legal_fees": 0
                    },
                    {
                      "duties_and_taxes": 0
                    },
                    {
                      "securities_transaction_tax": 0
                    },
                    {
                      "commodities_transaction_tax": 0
                    },
                    {
                      "central_goods_and_services_tax": 0
                    },
                    {
                      "state_goods_and_services_tax": 0
                    },
                    {
                      "integrated_goods_and_services_tax": 0
                    },
                    {
                      "union_territory_goods_and_services_tax": 0
                    },
                    {
                      "stamp_duty": 0
                    },
                    {
                      "insurance": 0
                    },
                    {
                      "medical_insurance": 0
                    },
                    {
                      "life_insurance": 0
                    },
                    {
                      "other_insurance": 0
                    },
                    {
                      "operating_expenses": 0
                    },
                    {
                      "office_supplies": 0
                    },
                    {
                      "meals_and_entertainment": 0
                    },
                    {
                      "subscription_charges": 0
                    },
                    {
                      "marketing_and_advertisement": 0
                    },
                    {
                      "bank_charges": 0
                    },
                    {
                      "rent": 0
                    },
                    {
                      "commission": 0
                    },
                    {
                      "interest_expenses": 0
                    },
                    {
                      "festival_celebration_expenses": 0
                    },
                    {
                      "donation": 0
                    },
                    {
                      "gift": 0
                    },
                    {
                      "computer_repairs": 0
                    },
                    {
                      "hotel_expenses": 0
                    },
                    {
                      "other_expenses": 0
                    },
                    {
                      "travel_expenses": 0
                    },
                    {
                      "domestic_travelling_expenses": 0
                    },
                    {
                      "foreign_travelling_expenses": 0
                    },
                    {
                      "transfer_expenses": 0
                    },
                    {
                      "brokerage": 0
                    },
                    {
                      "exchange_transaction_charges": 0
                    },
                    {
                      "sebi_turnover_fees": 0
                    },
                    {
                      "clearing_charges": 0
                    },
                    {
                      "depositary_participant_charges": 0
                    },
                    {
                      "margin_trading_interest": 0
                    },
                    {
                      "other_transfer_expenses": 0
                    },
                    {
                      "utility_expenses": 0
                    },
                    {
                      "electricity_and_fuel_expenses": 0
                    },
                    {
                      "mobile_bill": 0
                    },
                    {
                      "internet_bill": 0
                    },
                    {
                      "depreciation_and_amortization": 0
                    },
                    {
                      "depreciation": 0
                    },
                    {
                      "net_profit": 0
                    },
                    {
                      "net_loss": 0
                    }
                  ],
                  "name": "business_with_non_speculative_profit_and_loss_detail_list"
                },
                "businessWithPresumptiveTaxSchemeProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 0
                    },
                    {
                      "gross_bank_revenue": 0
                    },
                    {
                      "gross_cash_revenue": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "gross_bank_profit": 0
                    },
                    {
                      "gross_cash_profit": 0
                    }
                  ],
                  "name": "business_with_presumptive_tax_scheme_profit_and_loss_detail_list"
                },
                "businessWithSpeculativeProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "turnover": 659441
                    },
                    {
                      "incomes": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "indirect_income": 0
                    },
                    {
                      "expenses": 436257
                    },
                    {
                      "loss": 436257
                    },
                    {
                      "gross_loss": 436257
                    },
                    {
                      "net_profit": 0
                    },
                    {
                      "net_loss": 436257
                    }
                  ],
                  "name": "business_with_speculative_profit_and_loss_detail_list"
                },
                "businessWithoutBooksOfAccountsProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "total_indirect_expenses": 0
                    },
                    {
                      "gross_revenue": 0
                    },
                    {
                      "gross_bank_revenue": 0
                    },
                    {
                      "gross_cash_revenue": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "net_profit": 0
                    }
                  ],
                  "name": "business_without_books_of_accounts_profit_and_loss_detail_list"
                },
                "professionWithBooksOfAccountsProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "incomes": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "indirect_income": 0
                    },
                    {
                      "expenses": 0
                    },
                    {
                      "loss": 0
                    },
                    {
                      "gross_loss": 0
                    },
                    {
                      "compensation_to_employees": 0
                    },
                    {
                      "salary_and_wages": 0
                    },
                    {
                      "bonus": 0
                    },
                    {
                      "leave_encashment": 0
                    },
                    {
                      "contribution_to_pf": 0
                    },
                    {
                      "contribution_to_gratuity_fund": 0
                    },
                    {
                      "professional_and_consultancy_expenses": 0
                    },
                    {
                      "audit_fees": 0
                    },
                    {
                      "accounting_fees": 0
                    },
                    {
                      "advisory_expenses": 0
                    },
                    {
                      "legal_fees": 0
                    },
                    {
                      "duties_and_taxes": 0
                    },
                    {
                      "securities_transaction_tax": 0
                    },
                    {
                      "commodities_transaction_tax": 0
                    },
                    {
                      "central_goods_and_services_tax": 0
                    },
                    {
                      "state_goods_and_services_tax": 0
                    },
                    {
                      "integrated_goods_and_services_tax": 0
                    },
                    {
                      "union_territory_goods_and_services_tax": 0
                    },
                    {
                      "stamp_duty": 0
                    },
                    {
                      "insurance": 0
                    },
                    {
                      "medical_insurance": 0
                    },
                    {
                      "life_insurance": 0
                    },
                    {
                      "other_insurance": 0
                    },
                    {
                      "operating_expenses": 0
                    },
                    {
                      "office_supplies": 0
                    },
                    {
                      "meals_and_entertainment": 0
                    },
                    {
                      "subscription_charges": 0
                    },
                    {
                      "marketing_and_advertisement": 0
                    },
                    {
                      "bank_charges": 0
                    },
                    {
                      "rent": 0
                    },
                    {
                      "commission": 0
                    },
                    {
                      "interest_expenses": 0
                    },
                    {
                      "festival_celebration_expenses": 0
                    },
                    {
                      "donation": 0
                    },
                    {
                      "gift": 0
                    },
                    {
                      "computer_repairs": 0
                    },
                    {
                      "hotel_expenses": 0
                    },
                    {
                      "other_expenses": 0
                    },
                    {
                      "travel_expenses": 0
                    },
                    {
                      "domestic_travelling_expenses": 0
                    },
                    {
                      "foreign_travelling_expenses": 0
                    },
                    {
                      "transfer_expenses": 0
                    },
                    {
                      "brokerage": 0
                    },
                    {
                      "exchange_transaction_charges": 0
                    },
                    {
                      "sebi_turnover_fees": 0
                    },
                    {
                      "clearing_charges": 0
                    },
                    {
                      "depositary_participant_charges": 0
                    },
                    {
                      "margin_trading_interest": 0
                    },
                    {
                      "other_transfer_expenses": 0
                    },
                    {
                      "utility_expenses": 0
                    },
                    {
                      "electricity_and_fuel_expenses": 0
                    },
                    {
                      "mobile_bill": 0
                    },
                    {
                      "internet_bill": 0
                    },
                    {
                      "depreciation_and_amortization": 0
                    },
                    {
                      "depreciation": 0
                    },
                    {
                      "net_profit": 0
                    },
                    {
                      "net_loss": 0
                    }
                  ],
                  "name": "profession_with_books_of_accounts_profit_and_loss_detail_list"
                },
                "professionWithPresumptiveTaxSchemeProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "gross_revenue": 0
                    },
                    {
                      "gross_bank_revenue": 0
                    },
                    {
                      "gross_cash_revenue": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "gross_bank_profit": 0
                    },
                    {
                      "gross_cash_profit": 0
                    }
                  ],
                  "name": "profession_with_presumptive_tax_scheme_profit_and_loss_detail_list"
                },
                "professionWithoutBooksOfAccountsProfitAndLossDetailList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "total_indirect_expenses": 0
                    },
                    {
                      "gross_revenue": 0
                    },
                    {
                      "gross_bank_revenue": 0
                    },
                    {
                      "gross_cash_revenue": 0
                    },
                    {
                      "gross_profit": 0
                    },
                    {
                      "net_profit": 0
                    }
                  ],
                  "name": "profession_without_books_of_accounts_profit_and_loss_detail_list"
                },
                "headwiseCapitalGainsSummaryTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "sub_head",
                    "taxable_income",
                    "losses_adjusted",
                    "losses_remaining"
                  ],
                  "rows": [
                    [
                      "securities",
                      1265028,
                      0,
                      0
                    ],
                    [
                      "real_estate",
                      0,
                      0,
                      0
                    ],
                    [
                      "other_capital_gains",
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "headwise_capital_gains_summary_table"
                },
                "businessTurnoverSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "total_turnover": 659441
                    },
                    {
                      "net_profit_and_loss": -436257
                    },
                    {
                      "audit_applicable": false
                    }
                  ],
                  "name": "business_turnover_summary_list"
                },
                "professionTurnoverSummaryList": {
                  "metadata": {},
                  "@entity": "list",
                  "items": [
                    {
                      "total_turnover": 0
                    },
                    {
                      "net_profit_and_loss": 0
                    },
                    {
                      "audit_applicable": false
                    }
                  ],
                  "name": "profession_turnover_summary_list"
                },
                "currentYearCapitalLossAdjustmentTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "holding_period",
                    "section",
                    "tax_rate",
                    "loss",
                    "loss_setoff_against_stcg_15_percent",
                    "loss_setoff_against_stcg_20_percent",
                    "loss_setoff_against_stcg_30_percent",
                    "loss_setoff_against_stcg_slab_rate",
                    "loss_setoff_against_ltcg_10_percent",
                    "loss_setoff_against_ltcg_10_percent_112a",
                    "loss_setoff_against_ltcg_12_5_percent",
                    "loss_setoff_against_ltcg_12_5_percent_112a",
                    "loss_setoff_against_ltcg_20_percent",
                    "losses_setoff",
                    "losses_remaining"
                  ],
                  "rows": [
                    [
                      "short_term",
                      "111A",
                      "15",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "short_term",
                      "111A",
                      "20",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "short_term",
                      "",
                      "30",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "short_term",
                      "45",
                      "slab_rate",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112A",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112",
                      "12.5",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112A",
                      "12.5",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112",
                      "20",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "current_year_capital_loss_adjustment_table"
                },
                "currentYearCapitalGainsAdjustmentTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "holding_period",
                    "section",
                    "tax_rate",
                    "taxable_income",
                    "income_setoff_against_stcl_15_percent",
                    "income_setoff_against_stcl_20_percent",
                    "income_setoff_against_stcl_30_percent",
                    "income_setoff_against_stcl_slab_rate",
                    "income_setoff_against_ltcl_10_percent",
                    "income_setoff_against_ltcl_10_percent_112a",
                    "income_setoff_against_ltcl_12_5_percent",
                    "income_setoff_against_ltcl_12_5_percent_112a",
                    "income_setoff_against_ltcl_20_percent",
                    "income_setoff",
                    "net_taxable_income"
                  ],
                  "rows": [
                    [
                      "short_term",
                      "111A",
                      "15",
                      1056193,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      1056193
                    ],
                    [
                      "short_term",
                      "111A",
                      "20",
                      208835,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      208835
                    ],
                    [
                      "short_term",
                      "115BBH",
                      "30",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "short_term",
                      "45",
                      "slab_rate",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112A",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112",
                      "12.5",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112A",
                      "12.5",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "long_term",
                      "112",
                      "20",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "current_year_capital_gains_adjustment_table"
                },
                "accruedCapitalGainsTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "quarter",
                    "short_term_capital_gains",
                    "long_term_capital_gains",
                    "short_term_15_percent_capital_gains",
                    "short_term_20_percent_capital_gains",
                    "short_term_30_percent_capital_gains",
                    "short_term_slab_capital_gains",
                    "long_term_10_percent_capital_gains",
                    "long_term_10_percent_112A_capital_gains",
                    "long_term_12_5_percent_capital_gains",
                    "long_term_12_5_percent_112A_capital_gains",
                    "long_term_20_percent_capital_gains"
                  ],
                  "rows": [
                    [
                      1,
                      1027356,
                      0,
                      1027356,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      2,
                      188285,
                      0,
                      28837,
                      159448,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      3,
                      38413,
                      0,
                      0,
                      38413,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      4,
                      10974,
                      0,
                      0,
                      10974,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      5,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "accrued_capital_gains_table"
                },
                "currentYearLossAdjustmentTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "loss_head",
                    "loss_sub_head",
                    "holding_period",
                    "section",
                    "tax_rate",
                    "loss",
                    "loss_setoff_against_salary_income",
                    "loss_setoff_against_house_property_income",
                    "loss_setoff_against_stcg_15_percent",
                    "loss_setoff_against_stcg_20_percent",
                    "loss_setoff_against_stcg_30_percent",
                    "loss_setoff_against_stcg_slab_rate",
                    "loss_setoff_against_ltcg_10_percent",
                    "loss_setoff_against_ltcg_10_percent_112a",
                    "loss_setoff_against_ltcg_12_5_percent",
                    "loss_setoff_against_ltcg_12_5_percent_112a",
                    "loss_setoff_against_ltcg_20_percent",
                    "loss_setoff_against_business_and_profession_income",
                    "loss_setoff_against_speculative_business_income",
                    "loss_setoff_against_other_income",
                    "losses_setoff",
                    "losses_remaining"
                  ],
                  "rows": [
                    [
                      "house_property",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      null,
                      "15",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      null,
                      "20",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      null,
                      "30",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      null,
                      "slab_rate",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      null,
                      "10",
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "112A",
                      "10",
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      null,
                      "12.5",
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "112A",
                      "12.5",
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      null,
                      "20",
                      0,
                      0,
                      0,
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "current_year_loss_adjustment_table"
                },
                "currentYearIncomeAdjustmentAgainstCurrentYearLossTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "income_head",
                    "income_sub_head",
                    "holding_period",
                    "section",
                    "tax_rate",
                    "taxable_income",
                    "income_setoff_against_loss_from_house_property",
                    "income_setoff_against_business_and_profession_loss",
                    "income_setoff_against_loss_from_other_sources",
                    "income_setoff",
                    "net_taxable_income"
                  ],
                  "rows": [
                    [
                      "salary",
                      "salary",
                      null,
                      null,
                      null,
                      1712837,
                      0,
                      0,
                      0,
                      0,
                      1712837
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "specified",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      "111A",
                      "15",
                      1056193,
                      0,
                      0,
                      0,
                      0,
                      1056193
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      "111A",
                      "20",
                      208835,
                      0,
                      0,
                      0,
                      0,
                      208835
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      "111A",
                      "30",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      null,
                      "slab_rate",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112A",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112",
                      "12.5",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112A",
                      "12.5",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112",
                      "20",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      null,
                      null,
                      null,
                      null,
                      66922,
                      0,
                      0,
                      0,
                      0,
                      66922
                    ],
                    [
                      "other",
                      "horse_race",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "current_year_income_adjustment_against_current_year_loss_table"
                },
                "broughtForwardLossAdjustmentTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "loss_head",
                    "loss_sub_head",
                    "holding_period",
                    "section",
                    "tax_rate",
                    "loss",
                    "loss_setoff_against_salary_income",
                    "loss_setoff_against_house_property_income",
                    "loss_setoff_against_stcg_15_percent",
                    "loss_setoff_against_stcg_20_percent",
                    "loss_setoff_against_stcg_30_percent",
                    "loss_setoff_against_stcg_slab_rate",
                    "loss_setoff_against_ltcg_10_percent",
                    "loss_setoff_against_ltcg_10_percent_112a",
                    "loss_setoff_against_ltcg_12_5_percent",
                    "loss_setoff_against_ltcg_12_5_percent_112a",
                    "loss_setoff_against_ltcg_20_percent",
                    "loss_setoff_against_business_and_profession_income",
                    "loss_setoff_against_speculative_business_income",
                    "loss_setoff_against_other_income",
                    "losses_setoff",
                    "losses_remaining"
                  ],
                  "rows": [
                    [
                      "house_property",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      null,
                      null,
                      175206,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      175206
                    ],
                    [
                      "business_and_profession",
                      "specified",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      "horse_race",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "brought_forward_loss_adjustment_table"
                },
                "currentYearIncomeAdjustmentAgainstBroughtForwardLossTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "income_head",
                    "income_sub_head",
                    "holding_period",
                    "section",
                    "tax_rate",
                    "taxable_income",
                    "income_setoff_against_loss_from_house_property",
                    "income_setoff_against_loss_from_non_speculative_business",
                    "income_setoff_against_loss_from_speculative_business",
                    "income_setoff_against_loss_from_specified_business",
                    "income_setoff_against_loss_from_stcl",
                    "income_setoff_against_loss_from_ltcl",
                    "income_setoff_against_loss_from_owning_and_maintaining_race_horse",
                    "income_setoff",
                    "net_taxable_income"
                  ],
                  "rows": [
                    [
                      "salary",
                      "salary",
                      null,
                      null,
                      null,
                      1712837,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      1712837
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "business_and_profession",
                      "specified",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      "111A",
                      "15",
                      1056193,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      1056193
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      "111A",
                      "20",
                      208835,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      208835
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      "111A",
                      "30",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      null,
                      "slab_rate",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "short_term",
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112A",
                      "10",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112",
                      "12.5",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112A",
                      "12.5",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "112",
                      "20",
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "capital_gains",
                      "securities",
                      "long_term",
                      "DTAA",
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      null,
                      null,
                      null,
                      null,
                      66922,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      66922
                    ],
                    [
                      "other",
                      "horse_race",
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "other",
                      null,
                      null,
                      null,
                      null,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "current_year_income_adjustment_against_brought_forward_loss_table"
                },
                "carryForwardLossTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "loss_head",
                    "loss_sub_head",
                    "holding_period",
                    "assessment_year",
                    "carry_forward_losses"
                  ],
                  "rows": [
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2018-19",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2018-19",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2018-19",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2018-19",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2018-19",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2019-20",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2019-20",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2019-20",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2019-20",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2019-20",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2020-21",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2020-21",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2020-21",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2020-21",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2020-21",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2021-22",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2021-22",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2021-22",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2021-22",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2021-22",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2022-23",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2022-23",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2022-23",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2022-23",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2022-23",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2023-24",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2023-24",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2023-24",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2023-24",
                      0
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2023-24",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2024-25",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2024-25",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2024-25",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2024-25",
                      175206
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2024-25",
                      0
                    ],
                    [
                      "house_property",
                      null,
                      null,
                      "AY 2025-26",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "short_term",
                      "AY 2025-26",
                      0
                    ],
                    [
                      "capital_gains",
                      null,
                      "long_term",
                      "AY 2025-26",
                      0
                    ],
                    [
                      "business_and_profession",
                      "speculative",
                      null,
                      "AY 2025-26",
                      436257
                    ],
                    [
                      "business_and_profession",
                      "non_speculative",
                      null,
                      "AY 2025-26",
                      0
                    ]
                  ],
                  "name": "carry_forward_loss_table"
                },
                "taxPayableSummaryTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "section",
                    "tax_rate",
                    "holding_period",
                    "taxable_income",
                    "basic_exemption",
                    "other_exemption",
                    "net_taxable_income",
                    "tax_payable"
                  ],
                  "rows": [
                    [
                      null,
                      "slab_rate",
                      null,
                      1779762,
                      300000,
                      0,
                      1479762,
                      223928
                    ],
                    [
                      "112",
                      "10",
                      "long_term",
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "112A",
                      "10",
                      "long_term",
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "112",
                      "12.5",
                      "long_term",
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "112A",
                      "12.5",
                      "long_term",
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "112",
                      "20",
                      "long_term",
                      0,
                      0,
                      0,
                      0,
                      0
                    ],
                    [
                      "111A",
                      "15",
                      "short_term",
                      1056193,
                      0,
                      0,
                      1056193,
                      158429
                    ],
                    [
                      "111A",
                      "20",
                      "short_term",
                      208835,
                      0,
                      0,
                      208835,
                      41767
                    ],
                    [
                      null,
                      "30",
                      "short_term",
                      0,
                      0,
                      0,
                      0,
                      0
                    ]
                  ],
                  "name": "tax_payable_summary_table"
                },
                "taxReliefTable": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "country",
                    "income_head",
                    "income_sub_head",
                    "credit_amount",
                    "tax_amount",
                    "tax_payable_in_india",
                    "relief",
                    "dtaa_section",
                    "dtaa_article",
                    "tax_identification_number"
                  ],
                  "rows": [],
                  "name": "tax_relief_table"
                },
                "form": "itr_3",
                "currentAssessmentYear": true,
                "id": "25ac1292-e8f1-466e-9e7d-a2c6d436af1f",
                "updated_at": 1758795515853,
                "created_at": 1758792847219,
                "assessment_year": "AY 2025-26",
                "itr_form": "itr_3",
                "tax_regime": "new",
                "status": "in_progress",
                "due_date": 1758047399999,
                "filing_type": "revised",
                "original_acknowledgement_number": "577685930150925",
                "filed_under_section": "revised_return_us_139_5",
                "tax_payer": {
                  "@entity": "com.quicko.it.tax_payer.individual",
                  "id": "1DF0DC72902F1B88E0630100007F9C38",
                  "updated_at": 1757851959797,
                  "pan": "BCMPS5309F",
                  "pan_holder_type": "individual",
                  "address": {
                    "@entity": "org.quicko.address",
                    "completeAddress": true,
                    "street": "CISF UNIT PATNA AIRPORT,PATNA,Rukanpura",
                    "area": "PATNA",
                    "city": "Patna Aerodrome S.O",
                    "state": "Bihar",
                    "postal_code": "800014",
                    "country": "India"
                  },
                  "contact": {
                    "@entity": "org.quicko.contact",
                    "email": "bhanuji09@yahoo.in",
                    "country_code": "91",
                    "mobile": "8757233632"
                  },
                  "filing_category": "general",
                  "tax_payer_status": "active",
                  "residential_status": "resident",
                  "last_name": "SANDEEPKUMAR",
                  "gender": "male",
                  "fathers_name": "RAJPAL SINGH",
                  "dob": 283372200000,
                  "age": 46,
                  "aadhaar": "280956987385"
                },
                "incomes": [
                  {
                    "@entity": "com.quicko.it.year_2025.income.taxable_income.salary",
                    "id": "d6f44076-8ced-42f7-b86b-62009426d8a6",
                    "gross_income": 1787837,
                    "head": "salary",
                    "sub_head": "salary",
                    "is_exempt": false,
                    "is_foreign": false,
                    "taxable_income": 1712837,
                    "net_taxable_income": 1712837,
                    "tds": {
                      "@entity": "com.quicko.it.year_2025.tax_credit.tds",
                      "id": "3067476a-43ee-4e0f-84a3-e41e68346ef2",
                      "financial_year": "FY 2024-25",
                      "tax_amount": 212006,
                      "tan": "RCHC00535D",
                      "deductor": "CISF UNIT BSL BOKARO",
                      "income_head": "salary",
                      "credit_amount": 1712837,
                      "country": "India",
                      "assessment_year": "AY 2025-26"
                    },
                    "deductions": [
                      {
                        "@entity": "com.quicko.it.year_2025.deduction",
                        "id": "6b02aa9c-105c-4cb3-9905-da36a1fb0217",
                        "qualified": 75000,
                        "deductible": 75000,
                        "gross_deductible": 0,
                        "allowable": 75000,
                        "section": "16(ia)",
                        "is_under_chapter_vi_a": false
                      }
                    ],
                    "employer": {
                      "@entity": "com.quicko.it.tax_payer.employer",
                      "id": "86237753-c403-49a0-a8ef-9fa022c67a7e",
                      "updated_at": 1758794467380,
                      "name": "CISF UNIT BSL BOKARO",
                      "address": {
                        "@entity": "org.quicko.address",
                        "completeAddress": true,
                        "street": "BOKARO STEEL CITY BOKARO STEELCITY",
                        "area": "BOKARO",
                        "city": "BOKARO",
                        "state": "Jharkhand",
                        "postal_code": "827001",
                        "country": "India"
                      },
                      "residential_status": "resident",
                      "tan": "RCHC00535D",
                      "category": "other"
                    },
                    "allowances": [],
                    "perquisites": 0,
                    "basic_salary": 1787837,
                    "profit": 0,
                    "net_salary": 1787837
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.income.taxable_income.capital_gains.securities_capital_gains",
                    "empty": false,
                    "gross_income": 1056193,
                    "head": "capital_gains",
                    "sub_head": "securities",
                    "is_exempt": false,
                    "is_foreign": false,
                    "taxable_income": 1056193,
                    "net_taxable_income": 1056193,
                    "deductions": [],
                    "holding_period": "short_term",
                    "asset_class": "equity",
                    "asset_type": "stock",
                    "section": "111A",
                    "rate": "15",
                    "purchase_value": 13364311,
                    "cost_of_acquisition": 13364311,
                    "sell_value": 14422296,
                    "transfer_expenses": 1792,
                    "country": "India",
                    "account_id": "888852dc-3688-4b8b-afe6-6e787e7eec72"
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.income.taxable_income.capital_gains.securities_capital_gains",
                    "empty": false,
                    "gross_income": 208835,
                    "head": "capital_gains",
                    "sub_head": "securities",
                    "is_exempt": false,
                    "is_foreign": false,
                    "taxable_income": 208835,
                    "net_taxable_income": 208835,
                    "deductions": [],
                    "holding_period": "short_term",
                    "asset_class": "equity",
                    "asset_type": "stock",
                    "section": "111A",
                    "rate": "20",
                    "purchase_value": 1498810,
                    "cost_of_acquisition": 1498810,
                    "sell_value": 1708149,
                    "transfer_expenses": 504,
                    "country": "India",
                    "account_id": "888852dc-3688-4b8b-afe6-6e787e7eec72"
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.income.taxable_income.other_income.dividend_income",
                    "id": "d6e7c8e6-02aa-49d6-a1ea-07ab5b32226c",
                    "description": "DIV",
                    "gross_income": 62134,
                    "head": "other",
                    "sub_head": "dividend",
                    "is_exempt": false,
                    "is_foreign": false,
                    "taxable_income": 62134,
                    "net_taxable_income": 62134,
                    "deductions": [],
                    "country": "India",
                    "quarter": 1
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.income.taxable_income.other_income",
                    "id": "ab3b99a8-713d-4fd0-8570-400fa1278fb5",
                    "description": "SAV",
                    "gross_income": 3903,
                    "head": "other",
                    "sub_head": "savings_interest",
                    "is_exempt": false,
                    "is_foreign": false,
                    "taxable_income": 3903,
                    "net_taxable_income": 3903,
                    "deductions": [],
                    "country": "India"
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.income.taxable_income.other_income",
                    "id": "3986f834-43c6-40cc-b87b-f69ed33b0321",
                    "description": "IFD",
                    "gross_income": 885,
                    "head": "other",
                    "sub_head": "fixed_deposit_interest",
                    "is_exempt": false,
                    "is_foreign": false,
                    "taxable_income": 885,
                    "net_taxable_income": 885,
                    "deductions": [],
                    "country": "India"
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.income.taxable_income.business_profession_income.business_income.securities_trading_income",
                    "id": "0d64b04b-df8d-4a6d-bdac-a8a852fb7c1d",
                    "gross_income": 0,
                    "head": "business_and_profession",
                    "sub_head": "non_speculative",
                    "is_exempt": false,
                    "is_foreign": false,
                    "taxable_income": 0,
                    "net_taxable_income": 0,
                    "deductions": [],
                    "gross_revenue": 0,
                    "gross_profit": 0,
                    "taxation_scheme": "with_books_of_accounts",
                    "business_id": "888852dc-3688-4b8b-afe6-6e787e7eec72",
                    "opening_stock": 0,
                    "total_purchases": 0,
                    "direct_expenses": 0,
                    "cost_of_goods_sold": 0,
                    "total_sales": 0,
                    "turnover": 0
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.income.taxable_income.business_profession_income.business_income.securities_trading_income",
                    "id": "9f00912d-3892-41af-adac-4c936730d43b",
                    "gross_income": -436257,
                    "head": "business_and_profession",
                    "sub_head": "speculative",
                    "is_exempt": false,
                    "is_foreign": false,
                    "taxable_income": -436257,
                    "net_taxable_income": -436257,
                    "deductions": [],
                    "gross_revenue": 58076947,
                    "gross_profit": -436257,
                    "taxation_scheme": "with_books_of_accounts",
                    "business_id": "888852dc-3688-4b8b-afe6-6e787e7eec72",
                    "total_purchases": 58486733,
                    "direct_expenses": 26471,
                    "cost_of_goods_sold": 58513204,
                    "total_sales": 58076947,
                    "turnover": 659441
                  }
                ],
                "chapter_vi_a_deductions": [],
                "tax_credits": [
                  {
                    "@entity": "com.quicko.it.year_2025.tax_credit.tax_paid_by_you.self_assessment_tax",
                    "id": "517aa5d7-903d-423f-b4e8-837162243178",
                    "financial_year": "FY 2023-24",
                    "tax_amount": 246380,
                    "paid_on_date": 1757874600000,
                    "challan_number": "84098",
                    "bsr_code": "0008964",
                    "assessment_year": "AY 2024-25"
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.tax_credit.tds",
                    "id": "07067cba-a849-4eb1-9b6e-03cb5647e17f",
                    "financial_year": "FY 2024-25",
                    "tax_amount": 0,
                    "tan": "DELG11331F",
                    "deductor": "GAIL INDIA LIMITED",
                    "section": "194",
                    "income_head": "other",
                    "credit_amount": 6,
                    "assessment_year": "AY 2025-26"
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.tax_credit.tds",
                    "id": "52814fbf-2762-4af5-8099-cc62f30c38f4",
                    "financial_year": "FY 2024-25",
                    "tax_amount": 718,
                    "tan": "DELO07879E",
                    "deductor": "OIL AND NATURAL GAS CORPORATION LIMITED",
                    "section": "194",
                    "income_head": "other",
                    "credit_amount": 3805,
                    "assessment_year": "AY 2025-26"
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.tax_credit.tds",
                    "id": "4ebf5510-3db1-46c5-974a-c9fe90e98b11",
                    "financial_year": "FY 2024-25",
                    "tax_amount": 0,
                    "tan": "DELR09664E",
                    "deductor": "RITES LTD",
                    "section": "194",
                    "income_head": "other",
                    "credit_amount": 370,
                    "assessment_year": "AY 2025-26"
                  },
                  {
                    "@entity": "com.quicko.it.year_2025.tax_credit.tds",
                    "id": "9b48493e-9065-45dd-8729-2b2c7bbbe921",
                    "financial_year": "FY 2024-25",
                    "tax_amount": 4894,
                    "tan": "DELS21126A",
                    "deductor": "STEEL AUTHORITY OF INDIA LTD",
                    "section": "194",
                    "income_head": "other",
                    "credit_amount": 48945,
                    "assessment_year": "AY 2025-26"
                  }
                ],
                "bank_accounts": [
                  {
                    "@entity": "org.quicko.bank_account.domestic_bank_account",
                    "id": "51ae841a-b6fe-4696-a881-076c1dd1d031",
                    "created_at": 1757851959722,
                    "account_number": "10367107192",
                    "bank_name": "STATE BANK OF INDIA",
                    "account_type": "savings",
                    "ifsc": "SBIN0003240"
                  }
                ],
                "capital_gains_accounts": [
                  {
                    "@entity": "com.quicko.it.tax_payer.account",
                    "id": "888852dc-3688-4b8b-afe6-6e787e7eec72",
                    "updated_at": 1758793919557,
                    "created_at": 1758793593613,
                    "name": "Sandeepkumar .'s Zerodha Account",
                    "external_id": "UHU733"
                  }
                ],
                "brought_forward_losses": [
                  {
                    "@entity": "com.quicko.it.year_2025.loss",
                    "id": "b3c7a36d-e2c3-42fb-ba39-e3f0855aa55c",
                    "loss": 175206,
                    "net_loss": 175206,
                    "head": "business_and_profession",
                    "sub_head": "speculative",
                    "assessment_year": "AY 2024-25",
                    "original_filed_on": 1722364200000
                  }
                ],
                "proprietorship_assets": [
                  {
                    "@entity": "com.quicko.it.year_2025.business.asset",
                    "id": "f545931e-10b9-4647-84ab-30130b59a48b",
                    "business_id": "888852dc-3688-4b8b-afe6-6e787e7eec72",
                    "head": "current_assets",
                    "sub_head": "bank_balance",
                    "purchase_value": 126870,
                    "book_value": 126870,
                    "net_value": 126870
                  }
                ],
                "proprietorship_liabilities": [
                  {
                    "@entity": "com.quicko.it.year_2025.business.liability",
                    "business_id": "888852dc-3688-4b8b-afe6-6e787e7eec72",
                    "head": "equities",
                    "sub_head": "proprietors_capital",
                    "amount": 126870
                  }
                ],
                "proprietorship_expenses": [],
                "personal_assets": [],
                "personal_liabilities": [],
                "businesses": [
                  {
                    "@entity": "com.quicko.it.year_2025.business",
                    "id": "888852dc-3688-4b8b-afe6-6e787e7eec72",
                    "name": "Zerodha Trading Business",
                    "nature_of_business": "securities_trading",
                    "category": "trading_securities",
                    "sub_category": "speculative_trading",
                    "taxation_scheme": "with_books_of_accounts"
                  }
                ],
                "tax_regime_disclosure": {
                  "@entity": "com.quicko.it.year_2025.tax_regime_disclosure",
                  "id": "704538d6-21fe-4dbe-8397-32d9c765ff43",
                  "itr_filed_for_previous_year": true,
                  "itr_form_for_previous_year": "itr_3",
                  "tax_regime_for_previous_year": "new"
                },
                "settlements_us_112_a": {
                  "metadata": {},
                  "@entity": "table",
                  "header": [
                    "id",
                    "account_id",
                    "description",
                    "type",
                    "isin",
                    "asset_class",
                    "asset_type",
                    "is_listed",
                    "is_stt_paid",
                    "quantity",
                    "buy_date",
                    "buy_price",
                    "sell_date",
                    "sell_price",
                    "holding_period",
                    "section",
                    "tax_rate",
                    "fmv",
                    "brokerage",
                    "clearing_charges",
                    "exchange_transaction_charges",
                    "sebi_turnover_fee",
                    "stt",
                    "stamp_duty",
                    "sgst",
                    "cgst",
                    "igst",
                    "other_transfer_expenses",
                    "total_indexed_cost_of_improvement",
                    "realized_profit_and_loss",
                    "net_realized_profit_and_loss",
                    "taxable_profit_and_loss",
                    "nature_of_settlement",
                    "country",
                    "status",
                    "created_at",
                    "updated_at"
                  ],
                  "rows": [],
                  "name": "settlement_table"
                }
              }
            }
          }
        }
      }
    }
  }
}
