github.com/docker/app@v0.9.1-beta3.0.20210611140623-a48f773ab002/e2e/testdata/cnab-parameters/bundle.json (about)

     1  {
     2    "schemaVersion": "v1.0.0",
     3    "name": "cnab-parameters",
     4    "version": "0.1.0",
     5    "invocationImages": [
     6      {
     7        "imageType": "docker",
     8        "image": "e2e/cnab-parameters:v0.1.0"
     9      }
    10    ],
    11    "definitions": {
    12      "boolParam_type": {
    13        "type": "boolean"
    14      },
    15      "stringParam_type": {
    16        "type": "string"
    17      },
    18      "intParam_type": {
    19        "type": "integer"
    20      },
    21      "floatParam_type": {
    22        "type": "number"
    23      }
    24    },
    25    "parameters": {
    26      "boolParam": {
    27        "definition": "boolParam_type",
    28        "destination": {
    29          "env": "BOOL_PARAM"
    30        }
    31      },
    32      "stringParam": {
    33        "definition": "stringParam_type",
    34        "destination": {
    35          "env": "STRING_PARAM"
    36        }
    37      },
    38      "intParam": {
    39        "definition": "intParam_type",
    40        "destination": {
    41          "env": "INT_PARAM"
    42        }
    43      }
    44    }
    45  }