blob: fb2874f5aa7dec98625d2e5684a294156affae3d [file] [log] [blame]
{
"$id": "https://unomi.apache.org/schemas/json/customitems/page/1-0-0",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"self":{
"vendor":"org.apache.unomi",
"target" : "customitems",
"name":"page",
"format":"jsonschema",
"version":"1-0-0"
},
"title": "PageCustomItem",
"type": "object",
"allOf": [
{
"$ref": "https://unomi.apache.org/schemas/json/customitem/1-0-0"
}
],
"properties": {
"pageInfo": {
"type" : "object",
"properties" : {
"templateName": {
"type" : "string"
},
"language": {
"type" : "string",
"maxLength": 5
},
"destinationURL": {
"type" : "string",
"format" : "uri"
},
"categories": {
"type" : "array",
"items" : { "type" : "string"}
},
"pageID": {
"type" : "string",
"pattern" : "^(\\w|[-_@\\.]){0,60}$"
},
"nodeType": {
"type" : "string"
},
"pagePath": {
"type" : "string"
},
"pageName": {
"type" : "string"
},
"referringURL": {
"type" : "string",
"format" : "uri"
},
"tags": {
"type" : "array",
"items" : { "type" : "string" }
},
"isContentTemplate": {
"type" : "boolean"
}
}
},
"attributes": {
"type" : ["null", "object"]
},
"consentTypes": {
"type" : ["null", "array"],
"items" : {
"$href" : "https://unomi.apache.org/schemas/json/consentType/1-0-0"
}
}
}
}