Integrate using Policy Type to find Matchable
[policy/xacml-pdp.git] / applications / common / src / test / resources / matchable / onap.policies.Test-1.0.0.yaml
1 tosca_definitions_version: tosca_simple_yaml_1_0_0
2 policy_types:
3     onap.policies.Test:
4         derived_from: tosca.policies.Root
5         version: 1.0.0
6         properties:
7             nonmatachableString:
8                 type: string
9             matchableString:
10                 type: string
11                 metadata:
12                    matchable: true
13             nonmatachableInteger:
14                 type: integer
15                 metadata:
16                    matchable: false
17             matachableInteger:
18                 type: integer
19                 metadata:
20                    matchable: true
21             nonmatachableDouble:
22                 type: double
23             matchableDouble:
24                 type: double
25                 metadata:
26                    matchable: true
27             nonmatachableBoolean:
28                 type: boolean
29             matachableBoolean:
30                 type: boolean
31                 metadata:
32                    matchable: true
33             matchableListString:
34                 type: list
35                 metadata:
36                    matchable: true
37                 entry_schema:
38                    type: string