ReadSchema returns the schema definition for a specific tenant and version as a structured object.
(ctx context.Context, tenantID, version string)
| 109 | type SchemaReader interface { |
| 110 | // ReadSchema returns the schema definition for a specific tenant and version as a structured object. |
| 111 | ReadSchema(ctx context.Context, tenantID, version string) (schema *base.SchemaDefinition, err error) |
| 112 | // ReadSchemaString returns the schema definition for a specific tenant and version as a string. |
| 113 | ReadSchemaString(ctx context.Context, tenantID, version string) (definitions []string, err error) |
| 114 | // ReadEntityDefinition reads entity config from the storage. |
no outgoing calls
no test coverage detected