20 lines
336 B
JSON
20 lines
336 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"repository": {
|
|
"type": "string"
|
|
},
|
|
"user_id": {
|
|
"type": ["null", "integer"]
|
|
},
|
|
"starred_at": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"user": {
|
|
"$ref": "user.json"
|
|
}
|
|
}
|
|
}
|