SchemaReadRequest is the request message for the Read method in the Schema service. It contains tenant_id and metadata about the schema to be read.
Name | Type | Description | Notes |
---|---|---|---|
metadata | SchemaReadRequestMetadata | [optional] |
from permify.models.schema_read_body import SchemaReadBody
# TODO update the JSON string below
json = "{}"
# create an instance of SchemaReadBody from a JSON string
schema_read_body_instance = SchemaReadBody.from_json(json)
# print the JSON string representation of the object
print(SchemaReadBody.to_json())
# convert the object into a dict
schema_read_body_dict = schema_read_body_instance.to_dict()
# create an instance of SchemaReadBody from a dict
schema_read_body_from_dict = SchemaReadBody.from_dict(schema_read_body_dict)