summaryrefslogtreecommitdiffstats
path: root/javatoscachecker/checker/src/test/resources/spec/node_types/node_type_basic.yaml
blob: 0600a1203e08d671be420fc2a09c41589b72f664 (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
tosca_definitions_version: tosca_simple_yaml_1_1

metadata:
  outcome: "success"
 
node_types:
  org.onap.tosca.checker.Appliance:
    properties:
      brand:
        type: string
        required: true
      color:
        type: string
        required: true
      warrantyDuration:
        type: string
        required: true
      price:
        type: float
        required: true
      power_type:
        type: string
        default: "electric"
        constraints:
          - valid_values: ["electric", "gas"]