/** * CASE Item Types * * Types for CASE Framework Items (CFItems). * A CFItem represents an individual competency, standard, or learning objective. */ import type { OptionalLinkURI } from './base'; /** * A CASE Framework Item. * * Represents a single competency, standard, or learning objective * within a curriculum framework. */ export interface CFItem { sourcedId: string; fullStatement: string; alternativeLabel?: string; CFItemType: string; uri: string; humanCodingScheme?: string; listEnumeration?: string; abbreviatedStatement?: string; conceptKeywords?: string[]; conceptKeywordsURI?: OptionalLinkURI; notes?: string; subject?: string[]; subjectURI?: OptionalLinkURI[]; language?: string; educationLevel?: string[]; CFItemTypeURI?: OptionalLinkURI; licenseURI?: OptionalLinkURI; statusStartDate?: string; statusEndDate?: string; lastChangeDateTime: string; extensions?: Record; CFDocumentURI?: OptionalLinkURI; } //# sourceMappingURL=items.d.ts.map