summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/jira_connect/file.json
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/schemas/jira_connect/file.json')
-rw-r--r--spec/fixtures/api/schemas/jira_connect/file.json14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/jira_connect/file.json b/spec/fixtures/api/schemas/jira_connect/file.json
new file mode 100644
index 00000000000..34718991237
--- /dev/null
+++ b/spec/fixtures/api/schemas/jira_connect/file.json
@@ -0,0 +1,14 @@
+{
+ "type": "object",
+ "properties": {
+ "path": { "type": "string" },
+ "changeType": { "type": "string" },
+ "linesAdded": { "type": "integer" },
+ "linesRemoved": { "type": "integer" },
+ "url": { "type": "uri" }
+ },
+ "required": [
+ "path", "changeType", "linesAdded", "linesRemoved", "url"
+ ],
+ "additionalProperties": false
+}