{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListRegistry",
"title": "ListRegistry",
"description": "ListRegistry information.",
"required": [
"name",
"deliveryToOwner"
],
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "List name defined by the store.",
"example": "My gift list."
},
"deliveryToOwner": {
"type": "boolean",
"description": "Defines if the order will be delivered to list creator (`true`) or not (`false`).",
"example": false
}
}
}