1
0
mirror of synced 2026-01-15 06:06:30 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/stargazers.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

20 lines
347 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"repository": {
"type": ["string"]
},
"user_id": {
"type": ["null", "integer"]
},
"starred_at": {
"type": ["null", "string"],
"format": "date-time"
},
"user": {
"$ref": "user.json"
}
}
}