diff options
Diffstat (limited to 'schema/json/Position.json')
-rw-r--r-- | schema/json/Position.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/schema/json/Position.json b/schema/json/Position.json new file mode 100644 index 00000000..e550572e --- /dev/null +++ b/schema/json/Position.json @@ -0,0 +1,24 @@ +{ + "title": "Position", + "$ref": "#/definitions/continuedev__src__continuedev__models__main__Position", + "definitions": { + "continuedev__src__continuedev__models__main__Position": { + "title": "Position", + "type": "object", + "properties": { + "line": { + "title": "Line", + "type": "integer" + }, + "character": { + "title": "Character", + "type": "integer" + } + }, + "required": [ + "line", + "character" + ] + } + } +}
\ No newline at end of file |