1
0
mirror of synced 2025-12-31 06:05:12 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/source_github/schemas/project_cards.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

51 lines
910 B
JSON

{
"$schema": "https://json-schema.org/schema#",
"type": "object",
"properties": {
"url": {
"type": ["null", "string"]
},
"project_url": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "integer"]
},
"node_id": {
"type": ["null", "string"]
},
"note": {
"type": ["null", "string"]
},
"archived": {
"type": ["null", "boolean"]
},
"creator": {
"$ref": "user.json"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"column_url": {
"type": ["null", "string"]
},
"content_url": {
"type": ["null", "string"]
},
"repository": {
"type": "string"
},
"project_id": {
"type": "integer"
},
"column_id": {
"type": "integer"
}
}
}