* add boilerplate * configure schemas * add connector doc * update airbyte docs * edit spec * configure incremental sync * use custom components * add incremental acceptances tests * add partnerstack to source def * auto-bump connector version Co-authored-by: marcosmarxm <marcosmarxm@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
43 lines
813 B
JSON
43 lines
813 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"amount": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"amount_usd": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"approved": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"category_key": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"created_at": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"currency": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"customer": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"customer_key": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"extension": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"key": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"product_key": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"updated_at": {
|
|
"type": ["null", "integer"]
|
|
}
|
|
}
|
|
}
|