github.com/qsis/helm@v3.0.0-beta.3+incompatible/cmd/helm/testdata/testcharts/chart-with-schema-and-subchart/values.schema.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-07/schema#",
     3    "title": "Values",
     4    "type": "object",
     5    "properties": {
     6      "firstname": {
     7        "description": "First name",
     8        "type": "string"
     9      },
    10      "lastname": {
    11        "type": "string"
    12      }
    13    },
    14    "required": [
    15      "firstname",
    16      "lastname"
    17    ]
    18  }