@spartacus/cdc
Version:
Customer Data Cloud Integration library for Spartacus
44 lines (43 loc) • 1.14 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "CDCSchematics",
"title": "CDC Schematics",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "The name of the project.",
"$default": {
"$source": "projectName"
}
},
"lazy": {
"type": "boolean",
"description": "Lazy load the CDC feature.",
"default": true
},
"features": {
"type": "array",
"uniqueItems": true,
"default": ["CDC"]
},
"javascriptUrl": {
"type": "string",
"description": "Location of the CDC Java Script SDK in Customer Data Cloud",
"x-prompt": "[CDC] What is the CDC JS SDK URL?"
},
"baseSite": {
"type": "string",
"description": "Name of the Spartcus base site",
"x-prompt": "[CDC] What is the base site?",
"default": "electronics-spa"
},
"sessionExpiration": {
"type": "number",
"description": "Session Expiration time in seconds",
"x-prompt": "[CDC] What is the CDC Session expiration time (in seconds)?",
"default": 3600
}
},
"required": []
}