Function: getCcdaProfile()
getCcdaProfile(
name):CcdaProfile|undefined
Look up a built-in profile by name. Returns undefined when no built-in has
that name (a user-defined profile is not in this registry, pass it directly).
Parameters
name
string
Returns
CcdaProfile | undefined
Example
import { getCcdaProfile } from "@cosyte/ccda";
const p = getCcdaProfile("smartScorecard");
console.log(p?.provenance?.source);