Interfaces
ISchemaRegistry
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
struct SchemaRecord {
bytes32 uid;
bool revocable;
string schema;
}
function registerfunction register(string schema, bool revocable) external returns (bytes32)
| Name | Description |
|---|---|
schema | The schema data schema. |
revocable | Whether the schema allows revocations explicitly. |
| Description |
|---|
| The UID of the new schema. |
function getSchemafunction getSchema(bytes32 uid) external view returns (struct SchemaRecord)
| Name | Description |
|---|---|
uid | The UID of the schema to retrieve. |
| Description |
|---|
| The schema data members. |
Registeredevent Registeredevent Registered(bytes32 uid, address registerer, struct SchemaRecord schema)
Was this page helpful?
