github.com/LGUG2Z/story@v0.4.1/meta.json (about)

     1  {
     2      "$schema": "http://json-schema.org/draft-06/schema#",
     3      "$ref": "#/definitions/Meta",
     4      "definitions": {
     5          "Meta": {
     6              "type": "object",
     7              "description": "Trunk .meta file",
     8              "additionalProperties": false,
     9              "properties": {
    10                  "artifacts": {
    11                      "type": "object",
    12                      "description": "Deployable artifacts within the metarepo",
    13                      "additionalProperties": {
    14                          "type": "boolean"
    15                      }
    16                  },
    17                  "organisation": {
    18                      "type": "string",
    19                      "description": "Name of the GitHub user/organisation under which repos are kept"
    20                  },
    21                  "projects": {
    22                      "type": "object",
    23                      "description": "Map of all metarepo projects and their git+ssh URLs",
    24                      "additionalProperties": {
    25                          "type": "string"
    26                      }
    27                  }
    28              },
    29              "required": [
    30                  "artifacts",
    31                  "organisation",
    32                  "projects"
    33              ],
    34              "title": "Meta"
    35          }
    36      }
    37  }