/** * CASE Base Types * * Shared types for the CASE (Competency and Academic Standards Exchange) v1p1 API. */ /** * URI reference to a CASE entity. * * A common pattern across CASE responses for linking to related entities. */ export interface LinkURI { sourcedId: string; title: string; uri: string; } /** * Optional URI reference (uri may be absent). */ export interface OptionalLinkURI { sourcedId: string; title: string; uri?: string; } //# sourceMappingURL=base.d.ts.map