X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=examples%2Fbiojson-doc%2Ftests%2Fexample2.json;fp=examples%2Fbiojson-doc%2Ftests%2Fexample2.json;h=0000000000000000000000000000000000000000;hb=4f77328104498504339216829abf5ea87e2791ec;hp=d6d69adf8e19220faebe7460aec0a66b515a3eec;hpb=2b8c0785318a3528e1876e8e2dd48b7d831eae69;p=jalview.git diff --git a/examples/biojson-doc/tests/example2.json b/examples/biojson-doc/tests/example2.json deleted file mode 100755 index d6d69ad..0000000 --- a/examples/biojson-doc/tests/example2.json +++ /dev/null @@ -1,49 +0,0 @@ -[ - { - "schema" : { - "$schema": "http://json-schema.org/draft-04/schema#", - "title": "Product set", - "type": "array", - "items": { - "title": "Product", - "type": "object", - "properties": { - "id": { - "description": "The unique identifier for a product", - "type": "number" - }, - "name": { - "type": "string" - }, - "price": { - "type": "number", - "minimum": 0, - "exclusiveMinimum": true - }, - "tags": { - "type": "array", - "items": { - "type": "string" - }, - "minItems": 1, - "uniqueItems": true - }, - "dimensions": { - "type": "object", - "properties": { - "length": {"type": "number"}, - "width": {"type": "number"}, - "height": {"type": "number"} - }, - "required": ["length", "width", "height"] - }, - "warehouseLocation": { - "description": "Coordinates of the warehouse with the product", - "$ref": "http://localhost:8000/docson/tests/geo.json" - } - }, - "required": ["id", "name", "price"] - } - } - } -]