I couldn't find a way to read from a string, without spamming a temporary file. ```py from openapi_spec_validator import validate schema_text = """{"openapi": "3.0.0"}""" schema: Schema = ???(schema_text) validate(schema) ````