* 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
857 B
JSON
46 lines
857 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"amount": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"approved": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"created_at": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"external_key": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"field_data": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"fields": {
|
|
"type": ["null", "array"]
|
|
},
|
|
"group_key": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"key": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"meta": {
|
|
"type": ["null", "object"]
|
|
},
|
|
"mold_key": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"partner_key": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"status": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"updated_at": {
|
|
"type": ["null", "integer"]
|
|
}
|
|
}
|
|
}
|