schema.profile.md

January 18, 2023 ยท View on GitHub

Home > @datashaper/schema > Profile

Profile type

Resources must have a profile, which is a key defining how it should be interpreted. Profiles are essentially shorthand for a schema URL. The core profiles for DataShaper are defined here, but any application can define one as a string.

Signature:

export type Profile = KnownProfile
/**
 * Any other custom profile string can be specified by applications.
 */
 | string;

References: KnownProfile