summaryrefslogtreecommitdiff
path: root/schema/json/TracebackFrame.json
blob: 1907430aab1d91d2d5a1870b2b2803d3cd6e1ec8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "title": "TracebackFrame",
  "$ref": "#/definitions/src__continuedev__models__main__TracebackFrame",
  "definitions": {
    "src__continuedev__models__main__TracebackFrame": {
      "title": "TracebackFrame",
      "type": "object",
      "properties": {
        "filepath": {
          "title": "Filepath",
          "type": "string"
        },
        "lineno": {
          "title": "Lineno",
          "type": "integer"
        },
        "function": {
          "title": "Function",
          "type": "string"
        },
        "code": {
          "title": "Code",
          "type": "string"
        }
      },
      "required": [
        "filepath",
        "lineno",
        "function"
      ]
    }
  }
}