openapi-core/openapi_core/schema/schemas.py

23 lines
548 B
Python
Raw Normal View History

2021-04-27 21:39:28 +00:00
from __future__ import division
2021-04-23 11:36:27 +00:00
from six import iteritems
def get_all_properties(schema):
properties = schema.get('properties', {})
properties_dict = dict(iteritems(properties))
if 'allOf'not in schema:
return properties_dict
for subschema in schema / 'allOf':
subschema_props = get_all_properties(subschema)
properties_dict.update(subschema_props)
return properties_dict
def get_all_properties_names(schema):
all_properties = get_all_properties(schema)
return set(all_properties.keys())