37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties" : {
|
|
"id": { "type": "integer" },
|
|
"project_id": { "type": ["integer", "null"] },
|
|
"title": { "type": "string" },
|
|
"file_name": { "type": ["string", "null"] },
|
|
"description": { "type": ["string", "null"] },
|
|
"visibility": { "type": "string" },
|
|
"web_url": { "type": "string" },
|
|
"raw_url": { "type": "string" },
|
|
"created_at": { "type": "date" },
|
|
"updated_at": { "type": "date" },
|
|
"author": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"username": { "type": "string" },
|
|
"id": { "type": "integer" },
|
|
"state": { "type": "string" },
|
|
"avatar_url": { "type": "uri" },
|
|
"web_url": { "type": "uri" }
|
|
},
|
|
"required" : [
|
|
"id", "name", "username", "state", "avatar_url", "web_url"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"id", "title", "file_name", "description", "web_url",
|
|
"created_at", "updated_at", "author", "raw_url"
|
|
],
|
|
"additionalProperties": false
|
|
}
|
|
}
|