You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 18, 2019. It is now read-only.
# The field class, as used by Link objects:
# NOTE: 'type', 'description' and 'example' are now deprecated,
# in favor of 'schema'.
Field = namedtuple('Field', ['name', 'required', 'location', 'schema', 'description', 'type', 'example'])
But the spec for Link Parameters (which are the same thing as Field here right?) doesn't mention anything beyond 'name', 'required', and 'location'.
Q: What's the format of the schema parameter? Is this documented?
Thanks.
UPDATE: Looking further, other fields don't match either. e.g. Link has encoding, title, description which aren't in the spec either. What's canonical here?
The text was updated successfully, but these errors were encountered:
From the source:
But the spec for Link Parameters (which are the same thing as
Field
here right?) doesn't mention anything beyond 'name', 'required', and 'location'.Q: What's the format of the
schema
parameter? Is this documented?Thanks.
UPDATE: Looking further, other fields don't match either. e.g.
Link
hasencoding
,title
,description
which aren't in the spec either. What's canonical here?The text was updated successfully, but these errors were encountered: