{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/accountable", "title": "accountable", "type": "object", "required": [ "name", "email", "phone" ], "properties": { "name": { "type": "string", "title": "name", "description": "Name of the person responsible for the seller.", "default": "Jane Smith" }, "email": { "type": "string", "title": "email", "description": "Email address of the person responsible for the seller.", "default": "email@email.com" }, "phone": { "type": "string", "title": "phone", "description": "Phone number of the person responsible for the seller.", "default": "1234567890" } } }