github.com/jenkins-x/jx/v2@v2.1.155/pkg/surveyutils/test_data/constValues.test.schema.json (about)

     1  
     2  {
     3    "$id": "https:/jenkins-x.io/tests/defaultValue.schema.json",
     4    "$schema": "http://json-schema.org/draft-07/schema#",
     5    "description": "test values.yaml",
     6    "type": "object",
     7    "properties": {
     8      "stringValue": {
     9        "type": "string",
    10        "const": "UK"
    11      },
    12      "booleanValue": {
    13        "type": "boolean",
    14        "const": "false"
    15      },
    16      "numberValue": {
    17        "type": "number",
    18        "const": "123.4"
    19      },
    20      "integerValue": {
    21        "type": "integer",
    22        "const": "123"
    23      }
    24    }
    25  }