blob: 596eb002e84c4b5af3479832c789b3535afcaea9 (
plain)
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
|
{
"title": "Payload schema of Courseware\\BlockType\\LTI",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"height": {
"type": "string"
},
"tool_id": {
"type": "string"
},
"launch_url": {
"type": "string"
},
"consumer_key": {
"type": "string"
},
"consumer_secret": {
"type": "string"
},
"oauth_signature_method": {
"type": "string"
},
"send_lis_person": {
"type": "boolean"
},
"custom_parameters": {
"type": "string"
}
},
"required": [
"tool_id"
],
"additionalProperties": true
}
|