@qualithm/kafka-client - v0.1.6
    Preparing search index...

    Type Alias RegisteredSchema

    A schema registered in the Schema Registry.

    type RegisteredSchema = {
        id: number;
        schema: string;
        schemaType?: SchemaType;
        subject?: string;
        version?: number;
    }
    Index

    Properties

    id: number

    Global unique schema ID.

    schema: string

    Schema definition string (JSON for Avro, proto for Protobuf, etc.).

    schemaType?: SchemaType

    Schema type. Defaults to AVRO if not present.

    subject?: string

    Subject the schema is registered under, if known.

    version?: number

    Version number within the subject, if known.