summaryrefslogtreecommitdiffstats
path: root/applications/common/src/test/resources/matchable/onap.policies.Test-1.0.0.yaml
blob: 089aad6640dfa1de4d87df3b9f842e6b0dec2e3a (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
27
28
29
30
31
32
33
34
35
36
37
38
tosca_definitions_version: tosca_simple_yaml_1_0_0
policy_types:
    onap.policies.Test:
        derived_from: tosca.policies.Root
        version: 1.0.0
        properties:
            nonmatachableString:
                type: string
            matchableString:
                type: string
                metadata:
                   matchable: true
            nonmatachableInteger:
                type: integer
                metadata:
                   matchable: false
            matachableInteger:
                type: integer
                metadata:
                   matchable: true
            nonmatachableDouble:
                type: double
            matchableDouble:
                type: double
                metadata:
                   matchable: true
            nonmatachableBoolean:
                type: boolean
            matachableBoolean:
                type: boolean
                metadata:
                   matchable: true
            matchableListString:
                type: list
                metadata:
                   matchable: true
                entry_schema:
                   type: string