1{ 2 "definitions": { 3 "Device": { 4 "type": "object", 5 "properties": { 6 "id": { 7 "type": "string" 8 }, 9 "idType": { 10 "type": "string", 11 "enum": [ 12 "class" 13 ] 14 } 15 }, 16 "required": [ 17 "id", 18 "idType" 19 ] 20 } 21 } 22}
View as plain text