* 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>
46 lines
862 B
JSON
46 lines
862 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"action": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"amount": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"created_at": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"customer": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"description": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"invoice": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"key": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"offer": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"partnership": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"reward_status": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"transaction": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"trigger": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"updated_at": {
|
|
"type": ["null", "integer"]
|
|
}
|
|
}
|
|
}
|