* added user friendly messages, added AirbyteTracedException config_error * added formatting * fixed 'if' condition * removed HTTPError words from error examples * changed http to https for all schemas * removed http adapter * updated expected record file - one record for each stream * updated expected record file * updated expected record file * bumped connector version * auto-bump connector version --------- Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
70 lines
1.4 KiB
JSON
70 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"repository": {
|
|
"type": ["string"]
|
|
},
|
|
"id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"node_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"user": {
|
|
"$ref": "user_graphql.json"
|
|
},
|
|
"body": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"state": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"html_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"pull_request_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"_links": {
|
|
"type": ["null", "object"],
|
|
"properties": {
|
|
"html": {
|
|
"type": ["null", "object"],
|
|
"properties": {
|
|
"href": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
},
|
|
"pull_request": {
|
|
"type": ["null", "object"],
|
|
"properties": {
|
|
"href": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"submitted_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"created_at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"updated_at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"commit_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"author_association": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
}
|