1
0
mirror of synced 2025-12-30 03:02:21 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/deployments.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

78 lines
1.4 KiB
JSON

{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"url": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "integer"]
},
"node_id": {
"type": ["null", "string"]
},
"task": {
"type": ["null", "string"]
},
"original_environment": {
"type": ["null", "string"]
},
"environment": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"statuses_url": {
"type": ["null", "string"]
},
"repository_url": {
"type": ["null", "string"]
},
"creator": {
"$ref": "user.json"
},
"sha": {
"type": ["null", "string"]
},
"ref": {
"type": ["null", "string"]
},
"payload": {
"oneOf": [
{
"type": "object",
"properties": {},
"additionalProperties": true
},
{
"type": "string"
},
{
"type": "null"
}
]
},
"transient_environment": {
"type": ["null", "boolean"]
},
"production_environment": {
"type": ["null", "boolean"]
},
"performed_via_github_app": {
"type": ["null", "string"]
},
"repository": {
"type": "string"
}
}
}