EntityValidationResponse Model

represents a developer focused response to a validation query about a particular entity.

Nullable
errors : string []

The set of developer readable error messages associated with this entity validation.

Messages here should be treated as serious problems that require attention

Nullable
warnings : string []

The set of developer readable warning messages associated with this entity validation.

Messages here should be treated as potential issues worth further investigation

Nullable
information : string []

The set of developer readable info messages associated with this entity validation.

Messages here are mainly informational and normally don't require specific corrective action

Example
{
  "errors": ["string value"],
  "warnings": ["string value"],
  "information": ["string value"]
}