-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproperties.schema
35 lines (35 loc) · 1019 Bytes
/
properties.schema
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"id": "http://jsonschema.net",
"required": false,
"properties": {
"pluginLocations": {
"type": "object",
"required": true,
"properties": {
"contentobject": {
"type": "object",
"properties": {
"_aichat": {
"type": "object",
"required": true,
"legend": "AI Chat",
"properties": {
"_isEnabled": {
"type": "boolean",
"required": true,
"title": "Enable AI Chat",
"help": "Enable access to the AI Chatbot on this contentObject",
"inputType" : "Checkbox",
"default": true,
"validators": ["required"]
}
}
}
}
}
}
}
}
}