79 lines
1.6 KiB
JSON
79 lines
1.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"repository": {
|
|
"type": ["string"]
|
|
},
|
|
"id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"node_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"actor": {
|
|
"$ref": "user.json"
|
|
},
|
|
"event": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"commit_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"commit_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"created_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
},
|
|
"issue": {
|
|
"type": ["null", "object"],
|
|
"properties": {
|
|
"id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"node_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"repository_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"labels_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"comments_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"events_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"html_url": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"number": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"state": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"title": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"body": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"user": {
|
|
"$ref": "user.json"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|