2018-03-17 18:26:18 +05:30
|
|
|
{
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"properties" : {
|
|
|
|
"id": { "type": "integer" },
|
|
|
|
"name": { "type": "string" },
|
|
|
|
"name_with_namespace": { "type": "string" },
|
|
|
|
"description": { "type": ["string", "null"] },
|
|
|
|
"path": { "type": "string" },
|
|
|
|
"path_with_namespace": { "type": "string" },
|
|
|
|
"created_at": { "type": "date" },
|
|
|
|
"default_branch": { "type": ["string", "null"] },
|
|
|
|
"tag_list": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"ssh_url_to_repo": { "type": "string" },
|
|
|
|
"http_url_to_repo": { "type": "string" },
|
|
|
|
"web_url": { "type": "string" },
|
2018-11-08 19:23:39 +05:30
|
|
|
"readme_url": { "type": ["string", "null"] },
|
2018-03-17 18:26:18 +05:30
|
|
|
"avatar_url": { "type": ["string", "null"] },
|
|
|
|
"star_count": { "type": "integer" },
|
|
|
|
"forks_count": { "type": "integer" },
|
|
|
|
"last_activity_at": { "type": "date" }
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"id", "name", "name_with_namespace", "description", "path",
|
|
|
|
"path_with_namespace", "created_at", "default_branch", "tag_list",
|
|
|
|
"ssh_url_to_repo", "http_url_to_repo", "web_url", "avatar_url",
|
|
|
|
"star_count", "last_activity_at"
|
|
|
|
],
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
}
|