{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PersonName", "type": "object", "properties": { "firstName": { "type": "string" }, "middleName": { "type": "string" }, "lastName": { "type": "string" }, "fullName": { "type": "string" }, "prefix": { "type": "string" }, "suffix": { "type": "string" } } }