{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PutLineKeyTemplateRequest", "title": "PutLineKeyTemplateRequest", "type": "object", "required": [ "lineKeys" ], "properties": { "userReorderEnabled": { "type": "boolean", "example": true, "description": "Indicates whether the user can reorder the line keys." }, "lineKeys": { "type": "array", "items": { "$ref": "#/components/schemas/ProgrammableLineKeys" }, "description": "List of line keys that are being updated." } } }