Databricks SDK for JavaScript
    Preparing search index...

    Schema locator for one side (payload or key) of a message. Identifies which schema to use in the schema registry and the serialization format.

    interface SchemaLocator {
        format?: SchemaLocator_Format;
        registrySchema?: {
            $case: "confluentSchema";
            confluentSchema: SchemaLocator_ConfluentSchema;
        };
    }
    Index

    Properties

    Serialization format for this schema.

    registrySchema?: {
        $case: "confluentSchema";
        confluentSchema: SchemaLocator_ConfluentSchema;
    }

    Registry-specific schema locator.

    Type Declaration