forked from h5p/h5p-accordion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
semantics.json
57 lines (57 loc) · 1.22 KB
/
semantics.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[
{
"name": "panels",
"type": "list",
"label": "Panels",
"entity": "panel",
"max": 100,
"min": 1,
"field": {
"name": "content",
"type": "group",
"label": "Content",
"importance": "high",
"entity": "content",
"fields": [
{
"name": "title",
"type": "text",
"label": "Title",
"importance": "high"
},
{
"name": "content",
"type": "library",
"label": "Content type",
"importance": "medium",
"entity": "content",
"options": [
"H5P.AdvancedText 1.1"
]
}
]
}
},
{
"name": "hTag",
"type": "select",
"label": "H tags for labels (does not affect the size of the label)",
"importance": "low",
"description": "The h tag used on the labels. Normally H2 but if this belongs under an H2 heading use H3. Does not affect the size of the labels, only used for semantical purposes.",
"options": [
{
"value": "h2",
"label": "H2"
},
{
"value": "h3",
"label": "H3"
},
{
"value": "h4",
"label": "H4"
}
],
"default": "h2"
}
]