1
0
mirror of synced 2025-12-31 06:05:12 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/issues.json
Serhii Chvaliuk 27c408e7fb Source Github: Add undeclared columns to spec (#24523)
Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
2023-05-08 22:22:57 +03:00

282 lines
6.1 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"]
},
"url": {
"type": ["null", "string"]
},
"repository_url": {
"type": ["null", "string"]
},
"labels_url": {
"type": ["null", "string"]
},
"comments_url": {
"type": ["null", "string"]
},
"events_url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"number": {
"type": ["null", "integer"]
},
"state": {
"type": ["null", "string"]
},
"title": {
"type": ["null", "string"]
},
"user": {
"$ref": "user.json"
},
"body": {
"type": ["null", "string"]
},
"user_id": {
"type": ["null", "integer"]
},
"labels": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"node_id": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"color": {
"type": ["null", "string"]
},
"default": {
"type": ["null", "boolean"]
}
}
}
},
"assignee": {
"$ref": "user.json"
},
"assignees": {
"type": ["null", "array"],
"items": {
"$ref": "user.json"
}
},
"milestone": {
"type": ["null", "object"],
"properties": {
"url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"labels_url": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "integer"]
},
"node_id": {
"type": ["null", "string"]
},
"number": {
"type": ["null", "integer"]
},
"state": {
"type": ["null", "string"]
},
"title": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"creator": {
"$ref": "user.json"
},
"open_issues": {
"type": ["null", "integer"]
},
"closed_issues": {
"type": ["null", "integer"]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"closed_at": {
"type": ["null", "string"],
"format": "date-time"
},
"due_on": {
"type": ["null", "string"],
"format": "date-time"
}
}
},
"locked": {
"type": ["null", "boolean"]
},
"active_lock_reason": {
"type": ["null", "string"]
},
"comments": {
"type": ["null", "integer"]
},
"pull_request": {
"type": ["null", "object"],
"properties": {
"url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"diff_url": {
"type": ["null", "string"]
},
"patch_url": {
"type": ["null", "string"]
},
"merged_at": {
"type": ["null", "string"],
"format": "date-time"
}
}
},
"closed_at": {
"type": ["null", "string"],
"format": "date-time"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"author_association": {
"type": ["null", "string"]
},
"draft": {
"type": ["null", "boolean"]
},
"reactions": {
"$ref": "reactions.json"
},
"timeline_url": {
"type": ["null", "string"]
},
"performed_via_github_app": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"slug": {
"type": ["null", "string"]
},
"node_id": {
"type": ["null", "string"]
},
"owner": {
"$ref": "user.json"
},
"name": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"external_url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"permissions": {
"type": ["null", "object"],
"properties": {
"issues": {
"type": ["null", "string"]
},
"metadata": {
"type": ["null", "string"]
},
"pull_requests": {
"type": ["null", "string"]
},
"actions": {
"type": ["null", "string"]
},
"checks": {
"type": ["null", "string"]
},
"contents": {
"type": ["null", "string"]
},
"deployments": {
"type": ["null", "string"]
},
"discussions": {
"type": ["null", "string"]
},
"repository_projects": {
"type": ["null", "string"]
},
"statuses": {
"type": ["null", "string"]
}
}
},
"events": {
"type": "array",
"items": {
"type": ["null", "string"]
}
}
}
},
"state_reason": {
"type": ["null", "string"]
}
}
}