SAP Commerce Cloud · Schema
PointOfService
B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Store name |
| displayName | string | Display name |
| description | string | Store description |
| address | object | |
| geoPoint | object | |
| openingHours | object | |
| storeImages | array | |
| features | object | Store features |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PointOfService",
"title": "PointOfService",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Store name"
},
"displayName": {
"type": "string",
"description": "Display name"
},
"description": {
"type": "string",
"description": "Store description"
},
"address": {
"$ref": "#/components/schemas/Address"
},
"geoPoint": {
"$ref": "#/components/schemas/GeoPoint"
},
"openingHours": {
"$ref": "#/components/schemas/OpeningSchedule"
},
"storeImages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Image"
}
},
"features": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Store features"
}
}
}