# tax\_deducted\_at\_source

From **Stripe API**.

- Type: `object`

## Properties

### `id`

- Required: true
- Type: `string`
- maxLength: `5000`

Unique identifier for the object.

### `object`

- Required: true
- Type: `string`
- Allowed values: `"tax_deducted_at_source"`

String representing the object's type. Objects of the same type share the same value.

### `period_end`

- Required: true
- Type: `integer`
- Format: `unix-time`

The end of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.

### `period_start`

- Required: true
- Type: `integer`
- Format: `unix-time`

The start of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.

### `tax_deduction_account_number`

- Required: true
- Type: `string`
- maxLength: `5000`

The TAN that was supplied to Stripe when TDS was assessed

## JSON Schema

```json
{"properties":{"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["tax_deducted_at_source"],"type":"string"},"period_end":{"description":"The end of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.","format":"unix-time","type":"integer"},"period_start":{"description":"The start of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.","format":"unix-time","type":"integer"},"tax_deduction_account_number":{"description":"The TAN that was supplied to Stripe when TDS was assessed","maxLength":5000,"type":"string"}},"required":["id","object","period_end","period_start","tax_deduction_account_number"],"title":"TaxDeductedAtSource","type":"object","x-expandableFields":[]}
```
