{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InvalidField", "title": "InvalidField", "properties": { "message": { "description": "Description of the validation error.", "type": "string" }, "name": { "description": "The field that has an invalid value.", "type": "string" }, "value": { "description": "The invalid value.", "type": "string" } }, "required": [ "name", "value", "message" ], "type": "object" }