1
0
mirror of synced 2026-01-16 18:06:29 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/stargazers.json

24 lines
630 B
JSON

{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"repository": {
"description": "The repository that was starred by a user.",
"type": "string"
},
"user_id": {
"description": "The unique identifier of the user who starred the repository.",
"type": ["null", "integer"]
},
"starred_at": {
"description": "The date and time when the user starred the repository.",
"type": "string",
"format": "date-time"
},
"user": {
"description": "The user who starred the repository.",
"$ref": "user.json"
}
}
}