From 8c63f2159cdcae88b69bad3ea9462442fac36e7f Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 10 Nov 2020 19:38:02 +0100 Subject: [PATCH] Update to seating plan schema --- .../static/seating/seating-plan.schema.json | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/src/pretix/static/seating/seating-plan.schema.json b/src/pretix/static/seating/seating-plan.schema.json index a95dd40b5..663b00ee3 100644 --- a/src/pretix/static/seating/seating-plan.schema.json +++ b/src/pretix/static/seating/seating-plan.schema.json @@ -50,12 +50,6 @@ "type": "array", "description": "List of areas", "items": { "$ref": "#/definitions/area" } - }, - "row_number_position": { - "type": ["string", "null"], - "enum": ["left", "right", null], - "description": "Should the row numbers be hidden?", - "$comment": "Currently not implemented." } }, "required": ["position", "rows"], @@ -71,7 +65,7 @@ }, "row_label": { "type": ["string", "null"], - "description": "Human-readable name for the row. May include %s as a placeholder for the row_number value. Not used for rendering the plan, but for describing the seats in text." + "description": "Human-readable name for the row. Not used for rendering the plan, but for describing the seats in text." }, "seat_label": { "type": ["string", "null"], @@ -82,14 +76,10 @@ "description": "List of seats in this row", "items": { "$ref": "#/definitions/seat" } }, - "seats_spacing": { - "type": "integer", - "description": "How far apart should the seats be positioned? This value is ignored for rendering, it is just useful to keep to modify the row later." - }, "row_number_position": { "type": ["string", "null"], - "enum": ["left", "right", null], - "description": "Should the row numbers be hidden? (Overrides the zone setting)" + "enum": ["start", "end", "both", null], + "description": "Should the row numbers be shown?" }, "position": { "$ref": "#/definitions/position"