summaryrefslogtreecommitdiffstats
path: root/meta/files/layers.schema.json
blob: 659ee8da49823d378758a506cbee3f9809608f33 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
    "description": "OpenEmbedder Layer Setup Manifest",
    "type": "object",
    "additionalProperties": false,
    "required": [
        "version"
    ],
    "properties": {
        "version": {
            "description": "The version of this document; currently '1.0'",
            "enum": ["1.0"]
        },
        "sources": {
            "description": "The dict of layer sources",
            "type": "object",
            "patternProperties": { ".*" : {
                "type": "object",
                "description": "The upstream source from which a set of layers may be fetched",
                "additionalProperties": false,
                "required": [
                    "path"
                ],
                "properties": {
                    "path": {
                        "description": "The path where this layer source will be placed when fetching",
                        "type": "string"
                    },
                    "contains_this_file": {
                        "description": "Whether the directory with the layer source also contains this json description. Tools may want to skip the checkout of the source then.",
                        "type": "boolean"
                    },
                    "git-remote": {
                                "description": "A remote git source from which to fetch",
                                "type": "object",
                                "additionalProperties": false,
                                "required": [
                                    "rev"
                                ],
                                "properties": {
                                    "branch": {
                                        "description": "The git branch to fetch (optional)",
                                        "type": "string"
                                    },
                                    "rev": {
                                        "description": "The git revision to checkout",
                                        "type": "string"
                                    },
                                    "describe": {
                                        "description": "The output of 'git describe' (human readable description of the revision using tags in revision history).",
                                        "type": "string"
                                    },
                                    "remotes": {
                                        "description": "The dict of git remotes to add to this repository",
                                        "type": "object",
                                        "patternProperties": { ".*" : {
                                            "description": "A git remote",
                                            "type": "object",
                                            "addtionalProperties": false,
                                            "required": [
                                                "uri"
                                            ],
                                            "properties": {
                                                "uri": {
                                                    "description": "The URI for the remote",
                                                    "type": "string"
                                                }
                                            }
                                        }}
                                    }
                                }
                    }
                }
            }
        }}
    }
}