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

42 lines
753 B
JSON

{
"$schema": "https://json-schema.org/draft-04/schema#",
"type": ["null", "object"],
"properties": {
"id": {
"type": "integer"
},
"node_id": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"path": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"url": {
"type": ["null", "string"]
},
"html_url": {
"type": ["null", "string"]
},
"badge_url": {
"type": ["null", "string"]
},
"repository": {
"type": "string"
}
}
}