* enable stream for FBA Storage Fees Report * bump version * add stream details for FBA Storage Fees Report * update changelog * chore: formatting * auto-bump connector version Co-authored-by: Harshith Mullapudi <harshithmullapudi@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
30 lines
801 B
JSON
30 lines
801 B
JSON
{
|
|
"documentationUrl": "https://docsurl.com",
|
|
"connectionSpecification": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Timely Integration Spec",
|
|
"type": "object",
|
|
"required": ["account_id", "start_date", "bearer_token"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"account_id": {
|
|
"title": "account_id",
|
|
"type": "string",
|
|
"description": "Timely account id"
|
|
},
|
|
"start_date": {
|
|
"title": "startDate",
|
|
"type": "string",
|
|
"description": "start date",
|
|
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
|
|
"example": "2022-05-06"
|
|
},
|
|
"bearer_token": {
|
|
"title": "Bearer token",
|
|
"type": "string",
|
|
"description": "Timely bearer token"
|
|
}
|
|
}
|
|
}
|
|
}
|