summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/commit_note.json
blob: 02081989271098128a1b486d4e87b3fa51c42f8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "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" }
  }
}