Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
{
2
    "$schema": "https://json-schema.org/draft/2020-12/schema",
3
    "$id": "https://moodle.org/subplugins.schema.json",
4
    "title": "Subplugins",
5
    "description": "Moodle Subplugin types",
6
    "type": "object",
7
    "patternProperties": {
8
        "plugintypes": {
9
            "type": "object",
10
            "properties": {
11
                "^[a-z][a-z0-9]+$": {
12
                    "description": "The path to the subplugin type relative to the Moodle public directory root",
13
                    "type": "string"
14
                }
15
            },
16
            "additionalProperties": false
17
        },
18
        "subplugintypes": {
19
            "type": "object",
20
            "properties": {
21
                "^[a-z][a-z0-9]+$": {
22
                    "description": "The path to the subplugin type relative to the plugin's directory root",
23
                    "type": "string"
24
                }
25
            },
26
            "additionalProperties": false
27
        }
28
    }
29
}