debian-mirror-gitlab/spec/fixtures/api/schemas/entities/diff_line.json

16 lines
472 B
JSON
Raw Normal View History

2018-11-20 20:47:30 +05:30
{
"type": "object",
"required": ["type"],
"properties": {
"line_code": { "type": ["string", "null"] },
"type": { "type": ["string", "null"] },
"old_line": { "type": ["integer", "null"] },
"new_line": { "type": ["integer", "null"] },
"text": { "type": ["string"] },
"rich_text": { "type": ["string"] },
2018-12-23 12:14:25 +05:30
"meta_data": { "type": ["object", "null"] },
"can_receive_suggestion": { "type": "boolean" }
2018-11-20 20:47:30 +05:30
},
"additionalProperties": false
}