{ "$schema": "http://json-schema.org/draft-07/schema#", "properties": { "updates": { "type": "array", "items": { "type": "object", "properties": { "type": { "anyOf": [ { "type": "string" }, { "enum": [ "''", "'os'" ]} ] }, "method": { "anyOf": [ { "type": "string" }, { "enum": [ "''", "'auto'", "'manual'" ]} ] }, "frequency": { "anyOf": [ { "type": "string" }, { "enum": [ "''", "'auto'", "'daily'", "'weekly'", "'monthly'", "'quarterly'", "'halfyearly'", "'yearly'", "'monday'", "'tuesday'", "'wednesday'", "'thursday'", "'friday'", "'saturday'", "'sonday'" ]} ] }, "time": { "anyOf": [ {"type": "string"}, {"enum": [ "''", "'auto'" ]} ] }, "duration": { "anyOf": [ { "type": "string" }, { "type": "integer" }, {"enum": [ "''" ]} ] } } } } } }