Properties
| Name | Type | Description |
|---|---|---|
| token | string | The unique token identifier for the Integration. |
| provider | string | The cloud provider (e.g., aws, azure, gcp). |
| status | string | The current status of the Integration. |
| account_identifier | string | The cloud account identifier for the Integration. |
| created_at | string | The date and time the Integration was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Integration",
"type": "object",
"properties": {
"token": {
"type": "string",
"description": "The unique token identifier for the Integration."
},
"provider": {
"type": "string",
"description": "The cloud provider (e.g., aws, azure, gcp)."
},
"status": {
"type": "string",
"description": "The current status of the Integration."
},
"account_identifier": {
"type": "string",
"description": "The cloud account identifier for the Integration."
},
"created_at": {
"type": "string",
"description": "The date and time the Integration was created."
}
}
}