1{ 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "title": "default_schema", 5 "description": "Default Description", 6 "properties": { 7 "tags": { 8 "type": "array", 9 "items": [ 10 { 11 "type": "object", 12 "properties": { 13 "value" : { 14 "type": "string" 15 }, 16 "category" : { 17 "type": "string" 18 } 19 }, 20 "required": [ "value" ] 21 } 22 ] 23 } 24 }, 25 "required": [ "tags" ] 26}