Interface WfsProtocolCompiledQueryV1Experimental

Operation- and source-identity-bound WFS 2.0 artifact used by query plans and the executable protocol-module seam. Output-format negotiation and transport authority remain on the discovered runtime handle.

interface WfsProtocolCompiledQueryV1 {
    authorityFingerprint: `sha256:${string}`;
    bbox?: string;
    compiler: "wfs-2.0-protocol-query-v1";
    count?: number;
    endpoint: string;
    filter?: string;
    filterSrsName?: string;
    method: "GET" | "POST";
    operation: ProtocolModuleQueryOperation;
    propertyName?: readonly string[];
    sortBy?: string;
    sourceId: string;
    srsName?: string;
    startIndex?: number;
    typeName: string;
}

Properties

authorityFingerprint: `sha256:${string}`

Secret-free binding to the runtime handle's endpoint authority and scope.

bbox?: string
compiler
count?: number
endpoint: string

Credential-free endpoint identity; never the request authority itself.

filter?: string
filterSrsName?: string

CRS of the caller-supplied filter geometry, independent of response CRS.

method: "GET" | "POST"
propertyName?: readonly string[]
sortBy?: string
sourceId: string
srsName?: string

Requested response geometry CRS.

startIndex?: number
typeName: string