debian-mirror-gitlab/spec/fixtures/api/schemas/public_api/v4/commit_note.json
2021-06-08 01:23:25 +05:30

19 lines
442 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": "string", "format": "date-time" }
}
}