1
0
mirror of synced 2026-01-02 12:02:47 -05:00
Files
airbyte/airbyte-integrations/connectors/source-timely/source_timely/spec.json
Ganpat Agarwal 638db80acc 🎉 Source Amazon Seller Partner: add FBA storage fees report (#14625)
* 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>
2022-07-17 18:19:53 +05:30

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"
}
}
}
}