aboutsummaryrefslogtreecommitdiff
path: root/schemas_json/result.yaml
diff options
context:
space:
mode:
authorbozo.kopic <bozo@kopic.xyz>2021-11-07 15:52:44 +0100
committerbozo.kopic <bozo@kopic.xyz>2021-12-18 02:38:50 +0100
commit0702d13263bf501c1db074ce1544e60b95161210 (patch)
treeebca76946cead0ffcc742a64c15dd6f5e79958fa /schemas_json/result.yaml
parent56a75fcb8f5a9e4c05ccec8eb4a3345a115da441 (diff)
major rewritev0.3.0
Diffstat (limited to 'schemas_json/result.yaml')
-rw-r--r--schemas_json/result.yaml59
1 files changed, 0 insertions, 59 deletions
diff --git a/schemas_json/result.yaml b/schemas_json/result.yaml
deleted file mode 100644
index ceb3f42..0000000
--- a/schemas_json/result.yaml
+++ /dev/null
@@ -1,59 +0,0 @@
----
-"$schema": "http://json-schema.org/schema#"
-id: "opcut://result.yaml#"
-type: object
-required:
- - params
- - used
- - unused
-properties:
- params:
- "$ref": "opcut://params.yaml#"
- used:
- type: array
- items:
- "$ref": "opcut://result.yaml#/definitions/used"
- unused:
- type: array
- items:
- "$ref": "opcut://result.yaml#/definitions/unused"
-definitions:
- used:
- type: object
- required:
- - panel
- - item
- - x
- - y
- - rotate
- properties:
- panel:
- type: string
- item:
- type: string
- x:
- type: number
- y:
- type: number
- rotate:
- type: boolean
- unused:
- type: object
- required:
- - panel
- - width
- - height
- - x
- - y
- properties:
- panel:
- type: string
- width:
- type: number
- height:
- type: number
- x:
- type: number
- y:
- type: number
-...