GitHub Actions · Schema
MinimalRepository
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| node_id | string | |
| name | string | |
| full_name | string | |
| private | boolean | |
| html_url | string | |
| url | string | |
| description | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "MinimalRepository",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"node_id": {
"type": "string"
},
"name": {
"type": "string"
},
"full_name": {
"type": "string"
},
"private": {
"type": "boolean"
},
"html_url": {
"type": "string"
},
"url": {
"type": "string"
},
"description": {
"type": "string"
}
}
}