Properties
| Name | Type | Description |
|---|---|---|
| active | boolean | |
| origin_owner_name | string | |
| origin_username | string | |
| credentials | object | |
| created_at | string | |
| updated_at | string | |
| provider | string | |
| origin_owner_id | string | |
| id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LinkedAccount",
"title": "LinkedAccount",
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"origin_owner_name": {
"type": "string"
},
"origin_username": {
"type": "string"
},
"credentials": {
"type": "object"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"provider": {
"type": "string"
},
"origin_owner_id": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": [
"id",
"provider",
"active",
"origin_owner_id",
"origin_owner_name",
"origin_username",
"created_at",
"updated_at"
]
}