Any way to access the contents of a json schema from within a connector?

I need to pass a &fields param in the URL of the connector I"m working on, and it just so happens to correspond exactly to the contents of the JSON Schema file I’ve put together for the Stream - is there any way to expose / access the the JSON schema in the stream so that I can just do a .keys() on it to get the fields?

Yeah as you will store all the schemas in the schema folder you can load those files and use them in python

AH ok, that works too. I was thinking there might’ve been some way to surface it in HttpStream subclasses, but this way can work too.

Yeah you can also find get_json_schema which you can use