Interface QueryIrSourceIdentity

interface QueryIrSourceIdentity {
    authorizationScope: readonly string[];
    capabilities: readonly Capability[];
    collectionId?: string | number;
    endpoint: string;
    entitySet?: string;
    geometryProperty?: string;
    geoparquet?: QueryIrGeoparquetIdentity;
    id: string;
    layerId?: number;
    protocol: Protocol;
    schemaVersion?: string;
    serviceId?: string;
    sourceVersion?: string;
    srsName?: string;
    typeName?: string;
}

Properties

authorizationScope: readonly string[]
capabilities: readonly Capability[]
collectionId?: string | number
endpoint: string

Credential-free endpoint identity: origin/path plus protocol locator ids.

entitySet?: string
geometryProperty?: string

Descriptor-derived geometry property used by the metadata-free OData compiler.

DuckDB/GeoParquet addressing derived from the descriptor for the SQL compiler.

id: string
layerId?: number
protocol: Protocol
schemaVersion?: string
serviceId?: string
sourceVersion?: string
srsName?: string
typeName?: string