casekValidateErrorMultipleOf:returnRAPIDJSON_ERROR_STRING("Number '%actual' is not a multiple of the 'multipleOf' value '%expected'.");
casekValidateErrorMaximum:returnRAPIDJSON_ERROR_STRING("Number '%actual' is greater than the 'maximum' value '%expected'.");
casekValidateErrorExclusiveMaximum:returnRAPIDJSON_ERROR_STRING("Number '%actual' is greater than or equal to the 'exclusiveMaximum' value '%expected'.");
casekValidateErrorMinimum:returnRAPIDJSON_ERROR_STRING("Number '%actual' is less than the 'minimum' value '%expected'.");
casekValidateErrorExclusiveMinimum:returnRAPIDJSON_ERROR_STRING("Number '%actual' is less than or equal to the 'exclusiveMinimum' value '%expected'.");
casekValidateErrorMaxLength:returnRAPIDJSON_ERROR_STRING("String '%actual' is longer than the 'maxLength' value '%expected'.");
casekValidateErrorMinLength:returnRAPIDJSON_ERROR_STRING("String '%actual' is shorter than the 'minLength' value '%expected'.");
casekValidateErrorPattern:returnRAPIDJSON_ERROR_STRING("String '%actual' does not match the 'pattern' regular expression.");
casekValidateErrorMaxItems:returnRAPIDJSON_ERROR_STRING("Array of length '%actual' is longer than the 'maxItems' value '%expected'.");
casekValidateErrorMinItems:returnRAPIDJSON_ERROR_STRING("Array of length '%actual' is shorter than the 'minItems' value '%expected'.");
casekValidateErrorUniqueItems:returnRAPIDJSON_ERROR_STRING("Array has duplicate items at indices '%duplicates' but 'uniqueItems' is true.");
casekValidateErrorAdditionalItems:returnRAPIDJSON_ERROR_STRING("Array has an additional item at index '%disallowed' that is not allowed by the schema.");
casekValidateErrorMaxProperties:returnRAPIDJSON_ERROR_STRING("Object has '%actual' members which is more than 'maxProperties' value '%expected'.");
casekValidateErrorMinProperties:returnRAPIDJSON_ERROR_STRING("Object has '%actual' members which is less than 'minProperties' value '%expected'.");
casekValidateErrorRequired:returnRAPIDJSON_ERROR_STRING("Object is missing the following members required by the schema: '%missing'.");
casekValidateErrorAdditionalProperties:returnRAPIDJSON_ERROR_STRING("Object has an additional member '%disallowed' that is not allowed by the schema.");
casekValidateErrorPatternProperties:returnRAPIDJSON_ERROR_STRING("Object has 'patternProperties' that are not allowed by the schema.");
casekValidateErrorDependencies:returnRAPIDJSON_ERROR_STRING("Object has missing property or schema dependencies, refer to following errors.");
casekValidateErrorEnum:returnRAPIDJSON_ERROR_STRING("Property has a value that is not one of its allowed enumerated values.");
casekValidateErrorType:returnRAPIDJSON_ERROR_STRING("Property has a type '%actual' that is not in the following list: '%expected'.");
casekValidateErrorOneOf:returnRAPIDJSON_ERROR_STRING("Property did not match any of the sub-schemas specified by 'oneOf', refer to following errors.");
casekValidateErrorOneOfMatch:returnRAPIDJSON_ERROR_STRING("Property matched more than one of the sub-schemas specified by 'oneOf', indices '%matches'.");
casekValidateErrorAllOf:returnRAPIDJSON_ERROR_STRING("Property did not match all of the sub-schemas specified by 'allOf', refer to following errors.");
casekValidateErrorAnyOf:returnRAPIDJSON_ERROR_STRING("Property did not match any of the sub-schemas specified by 'anyOf', refer to following errors.");
casekValidateErrorNot:returnRAPIDJSON_ERROR_STRING("Property matched the sub-schema specified by 'not'.");
casekValidateErrorReadOnly:returnRAPIDJSON_ERROR_STRING("Property is read-only but has been provided when validation is for writing.");
casekValidateErrorWriteOnly:returnRAPIDJSON_ERROR_STRING("Property is write-only but has been provided when validation is for reading.");