Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the person responsible for the seller. |
| string | Email address of the person responsible for the seller. | |
| phone | string | Phone number of the person responsible for the seller. |
JSON Schema
{
"$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 protected]"
},
"phone": {
"type": "string",
"title": "phone",
"description": "Phone number of the person responsible for the seller.",
"default": "1234567890"
}
}
}