* 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>
112 lines
2.4 KiB
JSON
112 lines
2.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"repository": {
|
|
"type": ["string"]
|
|
},
|
|
"url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"html_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"assets_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"upload_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"tarball_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"zipball_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"node_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"tag_name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"target_commitish": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"body": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"draft": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"prerelease": {
|
|
"type": ["null", "boolean"]
|
|
},
|
|
"created_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"published_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"author": {
|
|
"$ref": "user.json"
|
|
},
|
|
"assets": {
|
|
"type": ["null", "array"],
|
|
"items": {
|
|
"type": ["null", "object"],
|
|
"properties": {
|
|
"url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"browser_download_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"node_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"label": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"state": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"content_type": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"size": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"download_count": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"created_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"updated_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"uploader_id": {
|
|
"type": ["null", "integer"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|