Github user aviyoop commented on a diff in the pull request:
https://github.com/apache/incubator-ariatosca/pull/207#discussion_r151400932
--- Diff: aria/parser/presentation/presentation.py ---
@@ -199,6 +199,9 @@ class Presentation(PresentationBase):
"""
def _validate(self, context):
+ if (not
context.presentation.configuration.get('validate_normative', True)) \
--- End diff --
This is the mechanism that skips validating normative types? I think an
explanation should be added to this condition.
---