From c52bf0be8ce363d8b4eb7ea819f5e374dbdc92ea Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 12 Nov 2020 09:26:25 +0100 Subject: [PATCH] Update seating plan schema to support float-sized areas --- src/pretix/static/seating/seating-plan.schema.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pretix/static/seating/seating-plan.schema.json b/src/pretix/static/seating/seating-plan.schema.json index 165fe8fee4..20ef84a08e 100644 --- a/src/pretix/static/seating/seating-plan.schema.json +++ b/src/pretix/static/seating/seating-plan.schema.json @@ -121,7 +121,7 @@ "description": "Declares this seat as a start point for ordered booking in its row. Can contain '<', '>' or '<>'." }, "radius": { - "type": "integer", + "type": "number", "description": "Defaults to 10" }, "position": { "$ref": "#/definitions/position" }, @@ -169,10 +169,10 @@ "type": "object", "properties": { "width": { - "type": "integer" + "type": "number" }, "height": { - "type": "integer" + "type": "number" } }, "required": ["width", "height"], @@ -190,7 +190,7 @@ "type": "object", "properties": { "radius": { - "type": "integer" + "type": "number" } }, "required": ["radius"], @@ -202,7 +202,7 @@ "text": { "type": "string" }, "color": { "type": "string" }, "size": { - "type": "integer", + "type": "number", "description": "Defaults to 16" }, "position": {