1
0
mirror of synced 2026-01-06 06:04:16 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/releases.json
Yevhenii 05fd4e76f3 Source Github: Support syncing multiple repositories/organizations (#5136)
Support syncing multiple repositories/organizations

Co-authored-by: ykurochkin <y.kurochkin@zazmic.com>
2021-08-13 16:24:24 +03:00

112 lines
2.4 KiB
JSON

{
"$schema": "http://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_id": {
"type": ["null", "integer"]
},
"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"]
}
}
}
}
}
}