From 4f14379e41cdfd20a0e23ecc814f3e7fdabfd08b Mon Sep 17 00:00:00 2001 From: Alex Eng Date: Tue, 21 Nov 2017 15:45:43 -0800 Subject: [PATCH] [player-2011] -updated schema to include an enum --- skin-schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skin-schema.json b/skin-schema.json index b6568d0..0de4e24 100644 --- a/skin-schema.json +++ b/skin-schema.json @@ -695,8 +695,9 @@ "type":"object", "properties":{ "format":{ - "description":"Determine the format of the quality options. Available formats: bitrate only, resolution only, and resolution + bitrate. Comma or white space separated values of: \'bitrate\' and \'resolution\'", + "description":"Determine the format of the quality options. Available formats: bitrate only, resolution only, and resolution + bitrate.", "type":"string", + "enum": ["bitrate", "resolution", "resolution bitrate"], "default":"bitrate" } }