Hi, I'm getting this error when I trying to use jsonhyperschema codec `load()` method as follow: ```python3.5/site-packages/jsonhyperschema_codec/__init__.py in _get_content(data, base_url, ref) 50 if component != 'definitions' 51 ] ---> 52 item = '_'.join(components).replace('-', '_') 53 url = url.replace(orig, item) 54 fields.append(Field(name=item, location='path', required=True)) UnboundLocalError: local variable 'components' referenced before assignment``` Offtopic: There's be an update for the new draft (draft-07) of JSON Hyper-Schema ?
Hi,
I'm getting this error when I trying to use jsonhyperschema codec
load()method as follow: