{ "type": "object", "name": "Donor", "properties": { "donorType": { "type": "string" }, "id": { "type": "string" }, "organizationName": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "phone": { "type": "string" }, "email": { "type": "string" }, "address": { "type": "array", "description": "", "items": { "type": "object", "properties": { "addressType": { "type": "string" }, "street": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" }, "postalCode": { "type": "string" }, "country": { "type": "string" } }, "required": [ "addressType", "street", "city", "state", "postalCode", "country" ] } }, "accountCustomFields": { "type": "array", "description": "", "items": { "type": "object", "properties": { "fieldName": { "type": "string" }, "fieldValue": { "type": "string" } }, "required": [ "fieldName", "fieldValue" ] } } }, "required": [ "donorType", "id", "organizationName", "firstName", "lastName", "phone", "email", "address", "accountCustomFields" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }