1{ 2 "$schema": "https://json-schema.org/draft/2019-09/schema", 3 "title": "test", 4 "description": "asdasdint", 5 "type": "object", 6 "properties": { 7 "fields": { 8 "type": "object", 9 "propertyNames": { 10 "pattern": "^[a-zA-Z]+$", 11 "maxLength": 5, 12 "minLength": 3 13 }, 14 "additionalProperties": { 15 "type": "object", 16 "properties": { 17 "action": { 18 "type": "string" 19 } 20 }, 21 "additionalProperties": false, 22 "required": [ 23 "action" 24 ] 25 } 26 } 27 } 28}