geopackage-ts
    Preparing search index...

    Interface Metadata

    Represents a row in the gpkg_metadata table.

    Each record holds a single metadata document, identified by scope, standard URI, MIME type, and the metadata content itself.

    interface Metadata {
        id: number;
        md_scope: string;
        md_standard_uri: string;
        metadata: string;
        mime_type: string;
    }
    Index

    Properties

    id: number

    The unique identifier for this metadata record.

    md_scope: string

    The scope of the metadata (e.g., 'dataset', 'series', 'attribute', 'undefined').

    md_standard_uri: string

    The URI of the metadata standard that the metadata conforms to.

    metadata: string

    The metadata content.

    mime_type: string

    The MIME type of the metadata content (e.g., 'text/xml').