summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/diff_line.json
blob: 66e8b443e1b418cdf2bf57423e86c6037c6fee1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "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"] },
    "meta_data": { "type": ["object", "null"] }
  },
  "additionalProperties": false
}