You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "CDM Identification defines identifiers and other meta attributes which are common for all entities",
31
+
"required": [
32
+
"id",
33
+
"entityType"
34
+
],
35
+
"properties": {
36
+
"title": {
37
+
"description": "Title of the entity",
38
+
"anyOf": [
39
+
{
40
+
"type": "string",
41
+
"pattern": "^\\{\\{[^\\W][\\w\\.\\-\\|]*\\}\\}$"
42
+
},
43
+
{
44
+
"description": "Fixed, untranslated string in specific language",
45
+
"type": "string"
46
+
}
47
+
]
48
+
},
49
+
"description": {
50
+
"description": "Description of the entity",
51
+
"anyOf": [
52
+
{
53
+
"type": "string",
54
+
"pattern": "^\\{\\{[^\\W][\\w\\.\\-\\|]*\\}\\}$"
55
+
},
56
+
{
57
+
"description": "Fixed, untranslated string in specific language",
58
+
"type": "string"
59
+
}
60
+
]
61
+
},
62
+
"entityType": {
63
+
"description": "Type (enumeration) of the entity",
64
+
"type": "string",
65
+
"enum": [
66
+
"group",
67
+
"catalog",
68
+
"businessapp",
69
+
"urltemplate",
70
+
"viztype",
71
+
"page",
72
+
"space",
73
+
"workpage",
74
+
"site"
75
+
]
76
+
},
77
+
"id": {
78
+
"type": "string",
79
+
"maxLength": 70,
80
+
"pattern": "^[\\w\\-:@+~.#\\/]+$",
81
+
"description": "ID of the entity; it needs to be stable over the entire lifecycle of the entity and unique per entity type exposed via the same content channel"
82
+
},
83
+
"providerId": {
84
+
"description": "The parent content provider of the entity",
85
+
"type": "string",
86
+
"maxLength": 128,
87
+
"pattern": "^[\\w\\-:@+~.#\\/]+$"
88
+
},
89
+
"i18n": {
90
+
"type": "string"
91
+
},
92
+
"softComponent": {
93
+
"type": "string"
94
+
}
95
+
},
96
+
"definitions": {}
97
+
},
98
+
"payload": {
99
+
"type": "object",
100
+
"required": [
101
+
"viz"
102
+
],
103
+
"properties": {
104
+
"viz": {
105
+
"description": "a list of the assigned app visualizations",
0 commit comments