Merge "Allow Description in properties schema"

This commit is contained in:
Jenkins 2013-08-20 15:15:24 +00:00 committed by Gerrit Code Review
commit 1623b03517

View File

@ -22,11 +22,11 @@ from heat.engine import parameters
SCHEMA_KEYS = (
REQUIRED, IMPLEMENTED, DEFAULT, TYPE, SCHEMA,
ALLOWED_PATTERN, MIN_VALUE, MAX_VALUE, ALLOWED_VALUES,
MIN_LENGTH, MAX_LENGTH,
MIN_LENGTH, MAX_LENGTH, DESCRIPTION,
) = (
'Required', 'Implemented', 'Default', 'Type', 'Schema',
'AllowedPattern', 'MinValue', 'MaxValue', 'AllowedValues',
'MinLength', 'MaxLength',
'MinLength', 'MaxLength', 'Description',
)
SCHEMA_TYPES = (