debian-mirror-gitlab/spec/fixtures/api/schemas/public_api/v4/commit_note.json
2017-09-10 17:25:29 +05:30

20 lines
417 B
JSON

{
"type": "object",
"required" : [
"note",
"path",
"line",
"line_type",
"author",
"created_at"
],
"properties" : {
"note": { "type": ["string", "null"] },
"path": { "type": ["string", "null"] },
"line": { "type": ["integer", "null"] },
"line_type": { "type": ["string", "null"] },
"author": { "$ref": "user/basic.json" },
"created_at": { "type": "date" }
}
}