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
With #2743 and eventual removal of support for schema file paths in constructors, we'll be on the path to support a better public API for arbitrary schema sources that prevents users from reinventing the wheel.
An example of how this might look:
openapi_schema=OpenAPISchema("https://.../openapi.json") # might also accept a 'Traversable' importlib.resources objectclassProjectsStream(RESTStream):
name="projects"path="/projects"schema_source=openapi_schema("ProjectListItem") # a JSON Schema ref
Feature scope
Taps (catalog, state, tests, etc.)
Description
With #2743 and eventual removal of support for schema file paths in constructors, we'll be on the path to support a better public API for arbitrary schema sources that prevents users from reinventing the wheel.
An example of how this might look:
Related:
The text was updated successfully, but these errors were encountered: