Trivial fix to default_schema

Added parenthesis that was missing to regex.
This commit is contained in:
Felipe Monteiro
2017-07-11 16:22:44 -04:00
committed by GitHub
parent 6389b9c536
commit 81a87c5444

View File

@@ -43,7 +43,7 @@ schema = {
}, },
'kind': { 'kind': {
'type': 'string', 'type': 'string',
'pattern': '^([A-Za-z]+$' 'pattern': '^([A-Za-z]+)$'
}, },
'metadata': { 'metadata': {
'type': 'object', 'type': 'object',