{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorFieldType", "title": "ErrorFieldType", "properties": { "errorCode": { "description": "The validation error code.", "format": "int32", "type": "integer" }, "errorDescription": { "description": "A description of the validation error.", "type": "string" }, "fieldType": { "description": "The type of error field.", "$ref": "#/components/schemas/FieldType" } }, "type": "object" }