1{ 2 "$schema": "https://json-schema.org/draft/2019-09/schema", 3 "$id": "https://json-schema.org/draft/2019-09/schema", 4 "type": "object", 5 "properties": { 6 "pictures":{ 7 "type":"array", 8 "maxItems":2, 9 "items":{ 10 "type":"string" 11 } 12 }, 13 "title": { 14 "type": "string", 15 "maxLength": 10 16 } 17 } 18}