{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "UnionApiErrorEntityNotFound", "required": [ "code", "message" ], "type": "object", "properties": { "code": { "type": "string", "enum": [ "NOT_FOUND" ], "default": "NOT_FOUND" }, "message": { "type": "string", "description": "Error message" } } }