1
0
mirror of synced 2026-01-11 12:04:08 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/workflows.json

42 lines
762 B
JSON

{
"$schema": "http://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": ["null", "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"
}
}
}