# application

From **Stripe API**.

- Type: `object`

## Properties

### `id`

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

Unique identifier for the object.

### `name`

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

The name of the application.

### `object`

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

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

## JSON Schema

```json
{"properties":{"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"name":{"description":"The name of the application.","maxLength":5000,"nullable":true,"type":"string"},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["application"],"type":"string"}},"required":["id","object"],"title":"Application","type":"object","x-expandableFields":[]}
```
