diff options
Diffstat (limited to 'tests/modeling-toscaparsers-javatoscachecker/APIs/data/test_schema.yaml')
-rw-r--r-- | tests/modeling-toscaparsers-javatoscachecker/APIs/data/test_schema.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/modeling-toscaparsers-javatoscachecker/APIs/data/test_schema.yaml b/tests/modeling-toscaparsers-javatoscachecker/APIs/data/test_schema.yaml new file mode 100644 index 00000000..9575e27c --- /dev/null +++ b/tests/modeling-toscaparsers-javatoscachecker/APIs/data/test_schema.yaml @@ -0,0 +1,17 @@ +tosca_definitions_version: tosca_simple_yaml_1_1 + +data_types: + org.onap.tosca.checker.service.Person: + properties: + firstName: + type: string + required: true + lastName: + type: string + required: true + +node_types: + org.onap.tosca.checker.service.Residence: + properties: + owner: + type: org.onap.tosca.checker.service.Person |