Expand user schema to support extension_props

This commit is contained in:
Dalai Felinto 2017-09-17 00:23:41 +02:00
parent 5df68c4ead
commit 7d48c02fa3

View File

@ -127,7 +127,16 @@ users_schema = {
'schema': {'type': 'string'}
}
}
}
},
# Properties defined by extensions. Extensions should use their name
# (see the PillarExtension.name property) as the key, and are free to
# use whatever they want as value (but we suggest a dict for future
# extendability).
'extension_props': {
'type': 'dict',
'required': False,
},
}
organizations_schema = {