Api error base.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApiErrorBase", "title": "ApiErrorBase", "type": "object", "description": "Api error base.", "properties": { "code": { "type": "string", "description": "The error code." }, "message": { "type": "string", "description": "The error message." }, "target": { "type": "string", "description": "The target of the particular error." } } }