42 lines
753 B
JSON
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"
|
|
}
|
|
}
|
|
}
|