Data dictionary deliverable ยท generated 2026-06-19T13:42:31.562Z

Complete Ed-Fi UDM coverage, with every platform-owned divergence labeled and traced.

This dictionary treats Ed-Fi Data Standard for Suite 3 v6.1.0 as the upstream source. Ed-Fi owns the meaning, type, cardinality, and descriptor definitions for UDM fields. Platform3 adds only the approved hosted-surface behavior: OneRoster foreign keys, platform local ids, soft deletion, governed descriptors, draft state, and API contract fields.

1166UDM entries
193canonical resources
280descriptors
3991descriptor values
827physical SQL tables
26domains

Source Contract

What Is Pass-Through And What Is Not

Every UDM entity, association, descriptor, reference, primitive type, field meaning, datatype, range, cardinality, and deprecation flag below is a pass-through from the Ed-Fi v6.1 handbook unless the row is explicitly marked as a platform gap fill. This keeps platform3 from becoming a stale copy of Ed-Fi while still giving integrators a single searchable dictionary.

Two First-Class Paths

Raw-DB-via-Dictionary Guardrails (Same Question, Same Answer)

An agent may answer a question by calling the Ed-Fi 1EdTech API or by querying these edfi.* tables (and the platform3 OneRoster tables they reference) directly through this dictionary -- and must get the same answer either way. The API applies the filters and joins below on every read. A naive select * from edfi.canonical_record silently returns wrong-but-plausible rows -- other tenants, soft-deleted records, never-acknowledged drafts, ungoverned descriptor codes, or a duplicated roster -- unless the raw query reproduces each rule. These guardrails are additive documentation only: they do not change any field, table, type, or allowed value above; they document how the existing columns must be queried. Every rule maps to an explicit GAP-A architecture decision.

1. Tenant scope -- always filter tenant_id (and join on it)

Rule the API enforces: Every read is scoped to the caller's tenant. tenant_id comes from the signed JWT tenant_id claim; ordinary Ed-Fi routes accept no tenant URL segment, query parameter, or header, and the API never returns another tenant's rows.

Why the API enforces it: tenant_id is the platform isolation boundary; it is not an Ed-Fi UDM field. Every edfi.* table (canonical_record, draft_record, descriptor_code, import_job, export_job) is partitioned by tenant_id, and the same edfi_local_id / source_key / descriptor code_value can recur across tenants. An unscoped read mixes tenants and can collide on a primary key.

Raw-DB path must do: Add `where tenant_id = $tenant` to EVERY query against edfi.* AND to every JOIN's ON clause (e.g. `on a.tenant_id = b.tenant_id and ...`). Resolve $tenant from the same JWT identity the API uses; never trust a tenant value carried alongside the data. When joining to platform3 OneRoster (rule 2) pair tenant_id with the sourcedId on the join, never sourcedId alone.

Trace: ITD 1 ยท ITD 2

2. Roster reference boundary -- join to platform3 OneRoster by FK, never a local roster copy (GAP-A1)

Rule the API enforces: Ed-Fi rows that name a student, staff, school, education organization, class/section, course, or enrollment do NOT carry a duplicated roster row. They carry an overlay foreign key (student_sourced_id, staff_sourced_id, school_sourced_id, class_sourced_id, course_sourced_id, enrollment_sourced_id) that references the canonical platform3 OneRoster sourcedId. The API validates every such reference against the caller's OneRoster relationship scope on write and resolves identity through OneRoster on read. `acmesis_class_sourced_id` and `section_sourced_id` are write-only compatibility aliases for `class_sourced_id`, not second stored fields.

Why the API enforces it: There is exactly one roster of record (platform3 OneRoster). edfi.* never stores its own copy of a person, school, or class. A raw querier that invents a local roster table, or that reads names/identity off the Ed-Fi payload_json instead of resolving the *_sourced_id FK against oneroster.*, will drift from the authoritative roster the moment OneRoster changes, and will answer 'who is this student' differently from the API.

Raw-DB path must do: Treat every *_sourced_id overlay column as a foreign key into platform3 OneRoster. Join `edfi.canonical_record.student_sourced_id = oneroster.users.sourced_id` (and staff/school/class/course/enrollment the same way), always pairing tenant_id on both sides: `on u.tenant_id = c.tenant_id and u.sourced_id = c.student_sourced_id`. Apply OneRoster's own guardrails on that join (tenant scope, status soft-delete, enabled_user, point-in-time begin/end dates). Do NOT read a local roster table and do NOT derive student/staff/school/class identity from the Ed-Fi payload_json -- the sourcedId FK is the only roster authority.

Trace: ITD 1 ยท ITD 2

3. Identity provenance -- edfi_local_id is platform-minted, NOT a OneRoster sourcedId (GAP-A2)

Rule the API enforces: edfi_local_id is a platform-minted UUID that identifies an Ed-Fi UDM row. It is explicitly NOT a OneRoster sourcedId and explicitly NOT an Ed-Fi natural key. The natural key lives separately in source_key_json; the roster identity lives in the *_sourced_id overlay FKs (rule 2). The API rejects any write that conflates the three with edfi:id_provenance_conflict.

Why the API enforces it: Three different id spaces coexist on one row: edfi_local_id (platform row id), source_key_json (Ed-Fi natural key such as studentUniqueId+schoolId+date), and *_sourced_id (OneRoster identity). A raw querier that joins edfi_local_id to a OneRoster sourcedId, or treats source_key_json values as a OneRoster id, will match the wrong rows and answer differently from the API.

Raw-DB path must do: Use edfi_local_id ONLY to join edfi.* tables to each other within a tenant (e.g. edfi.draft_record.canonical_edfi_local_id = edfi.canonical_record.edfi_local_id) or to address a single canonical row by (tenant_id, collection_route, edfi_local_id). Never equate edfi_local_id with a OneRoster sourced_id -- cross to OneRoster only through the *_sourced_id FKs (rule 2). Look up Ed-Fi natural keys in source_key_json; do not treat them as platform identity.

Trace: ITD 1 ยท ITD 2

4. Soft delete -- exclude is_deleted, retained but not live (GAP-A3)

Rule the API enforces: Deletes are soft. is_deleted = true keeps the row for history, correction, and audit (with deleted_at, deleted_by, deleted_reason, delete_source) but removes it from ordinary lists and detail reads. The API excludes is_deleted = true rows from every ordinary read; only an authorized caller passing includeDeleted=true sees retained rows, and a hard delete through an ordinary route is refused with edfi:delete_not_hard_delete.

Why the API enforces it: The platform never hard-deletes canonical Ed-Fi rows on an ordinary delete. A raw `select * from edfi.canonical_record` returns soft-deleted rows that the API hides, inflating counts and resurrecting corrected or removed records.

Raw-DB path must do: For the live/current answer add `and is_deleted = false` to every edfi.canonical_record query (and to canonical rows reached through any join). To audit deletions, select `is_deleted = true` explicitly and read deleted_at / delete_source -- never silently include soft-deleted rows in a 'current' count, exactly as includeDeleted gates them in the API.

Trace: ITD 1

5. Draft / pre-canonical state -- filter to canonical, never read drafts as live (GAP-A5)

Rule the API enforces: A record is NOT canonical until platform3 validates it and returns an ack_id and ETag. Pre-canonical work lives in edfi.draft_record with record_state in (draft, rejected); only record_state = canonical (carrying a non-null ack_id) is part of the live model. Ordinary Ed-Fi list/detail endpoints serve only acknowledged canonical rows and never surface drafts; a draft can never satisfy a reference.

Why the API enforces it: Drafts and rejected records are entered or imported but not yet acknowledged -- they may be invalid, unrostered, or ungoverned. A raw querier that reads edfi.draft_record (or unions drafts with canonical rows) treats never-acknowledged data as if it were live, answering differently from the API and potentially exposing data that failed validation.

Raw-DB path must do: For the live answer, read canonical rows from edfi.canonical_record (every row there is acknowledged: ack_id is not null and etag is set). When reading edfi.draft_record, add `and record_state = 'canonical' and ack_id is not null` to get only promoted rows, and never use a draft_id or canonical_edfi_local_id from a draft whose record_state is still draft/rejected to satisfy a reference. Do not union drafts into a canonical list.

Trace: ITD 1

6. Descriptors are governed code lists -- resolve enum values through the tag registry (GAP-A4)

Rule the API enforces: Every Ed-Fi descriptor value (every *Descriptor field) is a governed code list, not free text. Allowed values come from the descriptor tag registry: Ed-Fi standard seed values plus tenant-governed local values in edfi.descriptor_code, each carrying a namespace, code_value, and standard_status. The API rejects a write whose descriptor value is not in the governed registry (or is deprecated) with edfi:descriptor_not_governed.

Why the API enforces it: A descriptor written into payload_json is a `namespace#codeValue` string. A raw querier that accepts any string, or that ignores standard_status, will treat ungoverned or deprecated codes as valid and disagree with the API, which validates each descriptor reference against the registry and excludes standard_status = 'deprecated' for new writes.

Raw-DB path must do: Resolve every descriptor value through edfi.descriptor_code for the tenant: match on `tenant_id = $tenant and namespace = $ns and code_value = $code` (plus the Ed-Fi standard seed values for that descriptor route). To validate a value the same way the API does, require a matching row with `standard_status <> 'deprecated'`. Never treat a descriptor field as an open string or invent enum values not present in the governed registry.

Trace: ITD 1

7. modifiedSince / change discovery -- read updated_at, not created_at

Rule the API enforces: The modifiedSince query parameter returns rows whose canonical record or platform overlay changed at or after the supplied ISO 8601 timestamp, read from updated_at. updated_at advances on canonical value changes, descriptor changes, soft-delete, and privacy redaction -- it is the single change-discovery column.

Why the API enforces it: A raw 'what changed since T' query that compares created_at (which never moves after insert), or that uses a payload timestamp, will miss updates and disagree with the API's modifiedSince result.

Raw-DB path must do: For changed-since-T: `and updated_at >= '<T>'::timestamptz` (the API treats the bound as inclusive). Use updated_at, never created_at or a payload field, and use ISO 8601 UTC. Combine with rule 4 (`and is_deleted = false`) unless you are explicitly auditing deletions.

Trace: ITD 1 ยท ITD 2

Complete UDM Scope

Domain Coverage

The dictionary includes every domain exposed by the official v6.1 handbook snapshot. Alpha cuts do not happen on this 1EdTech surface.

Alternative And Supplemental Services 100 entries ยท 23 resources ยท 77 descriptors Assessment 50 entries ยท 11 resources ยท 39 descriptors Assessment Registration 28 entries ยท 7 resources ยท 21 descriptors Bell Schedule 37 entries ยท 6 resources ยท 31 descriptors Credential 24 entries ยท 5 resources ยท 19 descriptors Discipline 36 entries ยท 8 resources ยท 28 descriptors Education Organization 53 entries ยท 17 resources ยท 36 descriptors Educator Preparation Program 46 entries ยท 8 resources ยท 38 descriptors Enrollment 91 entries ยท 14 resources ยท 77 descriptors Finance 38 entries ยท 17 resources ยท 21 descriptors Graduation 59 entries ยท 8 resources ยท 51 descriptors Intervention 42 entries ยท 12 resources ยท 30 descriptors Path 9 entries ยท 6 resources ยท 3 descriptors Performance Evaluation 30 entries ยท 13 resources ยท 17 descriptors Recruiting and Staffing 47 entries ยท 7 resources ยท 40 descriptors School Calendar 46 entries ยท 9 resources ยท 37 descriptors Special Education 70 entries ยท 15 resources ยท 55 descriptors Special Education Data Model 22 entries ยท 5 resources ยท 17 descriptors Staff 86 entries ยท 18 resources ยท 68 descriptors Student Academic Record 90 entries ยท 20 resources ยท 70 descriptors Student Attendance 51 entries ยท 12 resources ยท 39 descriptors Student Cohort 54 entries ยท 12 resources ยท 42 descriptors Student Health 20 entries ยท 3 resources ยท 17 descriptors Student Identification And Demographics 50 entries ยท 10 resources ยท 40 descriptors Survey 66 entries ยท 23 resources ยท 43 descriptors Teaching And Learning 102 entries ยท 25 resources ยท 77 descriptors

Physical Table Reference

Ed-Fi ODS SQL Tables From The Handbook

The UDM entry catalog above is the semantic source of truth. This section adds a stable physical-table index from the Handbook SQL snippets so migration authors can check table names, column types, and nullability without treating ODS SQL as a separate platform3 design.

edfi.AbsenceEventCategoryDescriptor AbsenceEventCategory ยท 1 columns edfi.AcademicHonorCategoryDescriptor AcademicHonorCategory ยท 1 columns edfi.AcademicSubjectDescriptor AcademicSubject ยท 1 columns edfi.AcademicWeek AcademicWeek ยท 8 columns edfi.AccommodationDescriptor Accommodation ยท 1 columns edfi.AccountabilityRating AccountabilityRating ยท 10 columns edfi.AccountTypeDescriptor AccountType ยท 1 columns edfi.AccreditationStatusDescriptor AccreditationStatus ยท 1 columns edfi.AchievementCategoryDescriptor AchievementCategory ยท 1 columns edfi.AdditionalCreditTypeDescriptor AdditionalCreditType ยท 1 columns edfi.AddressCharacteristicDescriptor AddressCharacteristic ยท 1 columns edfi.AddressTypeDescriptor AddressType ยท 1 columns edfi.AdministrationEnvironmentDescriptor AdministrationEnvironment ยท 1 columns edfi.AdministrativeFundingControlDescriptor AdministrativeFundingControl ยท 1 columns edfi.AidTypeDescriptor AidType ยท 1 columns edfi.AncestryEthnicOriginDescriptor AncestryEthnicOrigin ยท 1 columns edfi.ApplicantProfile ApplicantProfile ยท 23 columns edfi.ApplicantProfileAddress ApplicantProfile ยท 16 columns edfi.ApplicantProfileAddressCharacteristic ApplicantProfile ยท 8 columns edfi.ApplicantProfileAddressPeriod ApplicantProfile ยท 9 columns edfi.ApplicantProfileApplicantCharacteristic ApplicantProfile ยท 6 columns edfi.ApplicantProfileBackgroundCheck ApplicantProfile ยท 7 columns edfi.ApplicantProfileDisability ApplicantProfile ยท 6 columns edfi.ApplicantProfileDisabilityDesignation ApplicantProfile ยท 4 columns edfi.ApplicantProfileEducatorPreparationProgramName ApplicantProfile ยท 3 columns edfi.ApplicantProfileElectronicMail ApplicantProfile ยท 6 columns edfi.ApplicantProfileGradePointAverage ApplicantProfile ยท 6 columns edfi.ApplicantProfileHighlyQualifiedAcademicSubject ApplicantProfile ยท 3 columns edfi.ApplicantProfileIdentificationDocument ApplicantProfile ยท 9 columns edfi.ApplicantProfileInternationalAddress ApplicantProfile ยท 12 columns edfi.ApplicantProfileLanguage ApplicantProfile ยท 3 columns edfi.ApplicantProfileLanguageUse ApplicantProfile ยท 4 columns edfi.ApplicantProfilePersonalIdentificationDocument ApplicantProfile ยท 9 columns edfi.ApplicantProfileRace ApplicantProfile ยท 3 columns edfi.ApplicantProfileTelephone ApplicantProfile ยท 7 columns edfi.ApplicantProfileVisa ApplicantProfile ยท 3 columns edfi.Application Application ยท 19 columns edfi.ApplicationEvent ApplicationEvent ยท 14 columns edfi.ApplicationEventResultDescriptor ApplicationEventResult ยท 1 columns edfi.ApplicationEventTypeDescriptor ApplicationEventType ยท 1 columns edfi.ApplicationRecruitmentEventAttendance Application ยท 7 columns edfi.ApplicationScoreResult Application ยท 7 columns edfi.ApplicationSourceDescriptor ApplicationSource ยท 1 columns edfi.ApplicationStatusDescriptor ApplicationStatus ยท 1 columns edfi.ApplicationTerm Application ยท 5 columns edfi.Assessment Assessment ยท 16 columns edfi.AssessmentAdministration AssessmentAdministration ยท 7 columns edfi.AssessmentAdministrationAssessmentBatteryPart AssessmentAdministration ยท 6 columns edfi.AssessmentAdministrationParticipation AssessmentAdministrationParticipation ยท 8 columns edfi.AssessmentAdministrationParticipationAdministrationPointOfContact AssessmentAdministrationParticipation ยท 11 columns edfi.AssessmentAdministrationPeriod AssessmentAdministration ยท 7 columns edfi.AssessmentAssessedGradeLevel Assessment ยท 4 columns edfi.AssessmentBatteryPart AssessmentBatteryPart ยท 6 columns edfi.AssessmentBatteryPartObjectiveAssessment AssessmentBatteryPart ยท 5 columns edfi.AssessmentCategoryDescriptor AssessmentCategory ยท 1 columns edfi.AssessmentContentStandard Assessment ยท 12 columns edfi.AssessmentContentStandardAuthor Assessment ยท 4 columns edfi.AssessmentIdentificationCode Assessment ยท 6 columns edfi.AssessmentIdentificationSystemDescriptor AssessmentIdentificationSystem ยท 1 columns edfi.AssessmentItem AssessmentItem ยท 12 columns edfi.AssessmentItemCategoryDescriptor AssessmentItemCategory ยท 1 columns edfi.AssessmentItemLearningStandard AssessmentItem ยท 5 columns edfi.AssessmentItemPossibleResponse AssessmentItem ยท 7 columns edfi.AssessmentItemResultDescriptor AssessmentItemResult ยท 1 columns edfi.AssessmentLanguage Assessment ยท 4 columns edfi.AssessmentPerformanceLevel Assessment ยท 9 columns edfi.AssessmentPeriod Assessment ยท 6 columns edfi.AssessmentPeriodDescriptor AssessmentPeriod ยท 1 columns edfi.AssessmentPlatformType Assessment ยท 4 columns edfi.AssessmentProgram Assessment ยท 6 columns edfi.AssessmentReportingMethodDescriptor AssessmentReportingMethod ยท 1 columns edfi.AssessmentScore Assessment ยท 7 columns edfi.AssessmentScoreRangeLearningStandard AssessmentScoreRangeLearningStandard ยท 10 columns edfi.AssessmentScoreRangeLearningStandardLearningStandard AssessmentScoreRangeLearningStandard ยท 5 columns edfi.AssessmentSection Assessment ยท 8 columns edfi.AssignmentLateStatusDescriptor AssignmentLateStatus ยท 1 columns edfi.AttemptStatusDescriptor AttemptStatus ยท 1 columns edfi.AttendanceEventCategoryDescriptor AttendanceEventCategory ยท 1 columns edfi.BackgroundCheckStatusDescriptor BackgroundCheckStatus ยท 1 columns edfi.BackgroundCheckTypeDescriptor BackgroundCheckType ยท 1 columns edfi.BalanceSheetDimension BalanceSheetDimension ยท 6 columns edfi.BalanceSheetDimensionReportingTag BalanceSheetDimension ยท 4 columns edfi.BarrierToInternetAccessInResidenceDescriptor BarrierToInternetAccessInResidence ยท 1 columns edfi.BehaviorDescriptor Behavior ยท 1 columns edfi.BellSchedule BellSchedule ยท 9 columns edfi.BellScheduleClassPeriod BellSchedule ยท 4 columns edfi.BellScheduleDate BellSchedule ยท 4 columns edfi.BellScheduleGradeLevel BellSchedule ยท 4 columns edfi.BusRouteDescriptor BusRoute ยท 1 columns edfi.Calendar Calendar ยท 7 columns edfi.CalendarDate CalendarDate ยท 7 columns edfi.CalendarDateCalendarEvent CalendarDate ยท 6 columns edfi.CalendarEventDescriptor CalendarEvent ยท 1 columns edfi.CalendarGradeLevel Calendar ยท 5 columns edfi.CalendarTypeDescriptor CalendarType ยท 1 columns edfi.Candidate Candidate ยท 35 columns edfi.CandidateAddress Candidate ยท 16 columns edfi.CandidateAddressCharacteristic Candidate ยท 8 columns edfi.CandidateAddressPeriod Candidate ยท 9 columns edfi.CandidateBackgroundCheck Candidate ยท 7 columns edfi.CandidateCharacteristic Candidate ยท 6 columns edfi.CandidateCharacteristicDescriptor CandidateCharacteristic ยท 1 columns edfi.CandidateDisability Candidate ยท 6 columns edfi.CandidateDisabilityDesignation Candidate ยท 4 columns edfi.CandidateEducatorPreparationProgramAssociation CandidateEducatorPreparationProgramAssociation ยท 13 columns edfi.CandidateEducatorPreparationProgramAssociationCandidateIndicator CandidateEducatorPreparationProgramAssociation ยท 12 columns edfi.CandidateEducatorPreparationProgramAssociationCohortYear CandidateEducatorPreparationProgramAssociation ยท 9 columns edfi.CandidateEducatorPreparationProgramAssociationDegreeSpecialization CandidateEducatorPreparationProgramAssociation ยท 10 columns edfi.CandidateElectronicMail Candidate ยท 6 columns edfi.CandidateEPPProgramDegree Candidate ยท 5 columns edfi.CandidateIdentificationCode CandidateIdentificationCode ยท 8 columns edfi.CandidateIdentificationDocument Candidate ยท 9 columns edfi.CandidateIdentificationSystemDescriptor CandidateIdentificationSystem ยท 1 columns edfi.CandidateIndicator Candidate ยท 8 columns edfi.CandidateInternationalAddress Candidate ยท 12 columns edfi.CandidateLanguage Candidate ยท 3 columns edfi.CandidateLanguageUse Candidate ยท 4 columns edfi.CandidateOtherName Candidate ยท 8 columns edfi.CandidatePersonalIdentificationDocument Candidate ยท 9 columns edfi.CandidateRace Candidate ยท 3 columns edfi.CandidateRelationshipToStaffAssociation CandidateRelationshipToStaffAssociation ยท 8 columns edfi.CandidateTelephone Candidate ยท 7 columns edfi.CandidateVisa Candidate ยท 3 columns edfi.CareerPathwayDescriptor CareerPathway ยท 1 columns edfi.Certification Certification ยท 16 columns edfi.CertificationCertificationExam Certification ยท 5 columns edfi.CertificationExam CertificationExam ยท 10 columns edfi.CertificationExamResult CertificationExamResult ยท 16 columns edfi.CertificationExamStatusDescriptor CertificationExamStatus ยท 1 columns edfi.CertificationExamTypeDescriptor CertificationExamType ยท 1 columns edfi.CertificationFieldDescriptor CertificationField ยท 1 columns edfi.CertificationGradeLevel Certification ยท 4 columns edfi.CertificationLevelDescriptor CertificationLevel ยท 1 columns edfi.CertificationRoute Certification ยท 4 columns edfi.CertificationRouteDescriptor CertificationRoute ยท 1 columns edfi.CertificationStandardDescriptor CertificationStandard ยท 1 columns edfi.CharterApprovalAgencyTypeDescriptor CharterApprovalAgencyType ยท 1 columns edfi.CharterStatusDescriptor CharterStatus ยท 1 columns edfi.ChartOfAccount ChartOfAccount ยท 16 columns edfi.ChartOfAccountReportingTag ChartOfAccount ยท 6 columns edfi.CitizenshipStatusDescriptor CitizenshipStatus ยท 1 columns edfi.ClassPeriod ClassPeriod ยท 6 columns edfi.ClassPeriodMeetingTime ClassPeriod ยท 5 columns edfi.ClassroomPositionDescriptor ClassroomPosition ยท 1 columns edfi.Cohort Cohort ยท 9 columns edfi.CohortProgram Cohort ยท 6 columns edfi.CohortScopeDescriptor CohortScope ยท 1 columns edfi.CohortTypeDescriptor CohortType ยท 1 columns edfi.CohortYearTypeDescriptor CohortYearType ยท 1 columns edfi.CommunityOrganization CommunityOrganization ยท 1 columns edfi.CommunityProvider CommunityProvider ยท 7 columns edfi.CommunityProviderLicense CommunityProviderLicense ยท 14 columns edfi.CompetencyLevelDescriptor CompetencyLevel ยท 1 columns edfi.CompetencyObjective CompetencyObjective ยท 9 columns edfi.Contact Contact ยท 19 columns edfi.ContactAddress Contact ยท 16 columns edfi.ContactAddressCharacteristic Contact ยท 8 columns edfi.ContactAddressPeriod Contact ยท 9 columns edfi.ContactElectronicMail Contact ยท 6 columns edfi.ContactIdentificationCode ContactIdentificationCode ยท 8 columns edfi.ContactIdentificationSystemDescriptor ContactIdentificationSystem ยท 1 columns edfi.ContactInternationalAddress Contact ยท 12 columns edfi.ContactLanguage Contact ยท 3 columns edfi.ContactLanguageUse Contact ยท 4 columns edfi.ContactOtherName Contact ยท 8 columns edfi.ContactPersonalIdentificationDocument Contact ยท 9 columns edfi.ContactTelephone Contact ยท 7 columns edfi.ContentClassDescriptor ContentClass ยท 1 columns edfi.ContinuationOfServicesReasonDescriptor ContinuationOfServicesReason ยท 1 columns edfi.CostRateDescriptor CostRate ยท 1 columns edfi.CoteachingStyleObservedDescriptor CoteachingStyleObserved ยท 1 columns edfi.CountryDescriptor Country ยท 1 columns edfi.Course Course ยท 21 columns edfi.CourseAcademicSubject Course ยท 4 columns edfi.CourseAttemptResultDescriptor CourseAttemptResult ยท 1 columns edfi.CourseCompetencyLevel Course ยท 4 columns edfi.CourseDefinedByDescriptor CourseDefinedBy ยท 1 columns edfi.CourseGPAApplicabilityDescriptor CourseGPAApplicability ยท 1 columns edfi.CourseIdentificationCode Course ยท 7 columns edfi.CourseIdentificationSystemDescriptor CourseIdentificationSystem ยท 1 columns edfi.CourseLearningStandard Course ยท 4 columns edfi.CourseLevelCharacteristic Course ยท 4 columns edfi.CourseLevelCharacteristicDescriptor CourseLevelCharacteristic ยท 1 columns edfi.CourseOfferedGradeLevel Course ยท 4 columns edfi.CourseOffering CourseOffering ยท 11 columns edfi.CourseOfferingCourseLevelCharacteristic CourseOffering ยท 6 columns edfi.CourseOfferingCurriculumUsed CourseOffering ยท 6 columns edfi.CourseOfferingOfferedGradeLevel CourseOffering ยท 6 columns edfi.CourseRepeatCodeDescriptor CourseRepeatCode ยท 1 columns edfi.CourseTranscript CourseTranscript ยท 28 columns edfi.CourseTranscriptAcademicSubject CourseTranscript ยท 9 columns edfi.CourseTranscriptAlternativeCourseIdentificationCode CourseTranscript ยท 12 columns edfi.CourseTranscriptCourseProgram CourseTranscript ยท 10 columns edfi.CourseTranscriptCreditCategory CourseTranscript ยท 9 columns edfi.CourseTranscriptEarnedAdditionalCredits CourseTranscript ยท 10 columns edfi.CourseTranscriptPartialCourseTranscriptAwards CourseTranscript ยท 13 columns edfi.CourseTranscriptSection CourseTranscript ยท 12 columns edfi.Credential Credential ยท 23 columns edfi.CredentialAcademicSubject Credential ยท 4 columns edfi.CredentialEndorsement Credential ยท 4 columns edfi.CredentialEvent CredentialEvent ยท 8 columns edfi.CredentialEventTypeDescriptor CredentialEventType ยท 1 columns edfi.CredentialFieldDescriptor CredentialField ยท 1 columns edfi.CredentialGradeLevel Credential ยท 4 columns edfi.CredentialStatusDescriptor CredentialStatus ยท 1 columns edfi.CredentialStudentAcademicRecord Credential ยท 7 columns edfi.CredentialTypeDescriptor CredentialType ยท 1 columns edfi.CreditCategoryDescriptor CreditCategory ยท 1 columns edfi.CreditTypeDescriptor CreditType ยท 1 columns edfi.CrisisEvent CrisisEvent ยท 8 columns edfi.CrisisTypeDescriptor CrisisType ยท 1 columns edfi.CTEProgramServiceDescriptor CTEProgramService ยท 1 columns edfi.CurriculumUsedDescriptor CurriculumUsed ยท 1 columns edfi.DegreeDescriptor Degree ยท 1 columns edfi.DeliveryMethodDescriptor DeliveryMethod ยท 1 columns edfi.DescriptorMapping DescriptorMapping ยท 7 columns edfi.DescriptorMappingModelEntity DescriptorMapping ยท 6 columns edfi.DiagnosisDescriptor Diagnosis ยท 1 columns edfi.DiplomaLevelDescriptor DiplomaLevel ยท 1 columns edfi.DiplomaTypeDescriptor DiplomaType ยท 1 columns edfi.DisabilityDescriptor Disability ยท 1 columns edfi.DisabilityDesignationDescriptor DisabilityDesignation ยท 1 columns edfi.DisabilityDeterminationSourceTypeDescriptor DisabilityDeterminationSourceType ยท 1 columns edfi.DisciplineAction DisciplineAction ยท 13 columns edfi.DisciplineActionDiscipline DisciplineAction ยท 5 columns edfi.DisciplineActionLengthDifferenceReasonDescriptor DisciplineActionLengthDifferenceReason ยท 1 columns edfi.DisciplineActionStaff DisciplineAction ยท 5 columns edfi.DisciplineActionStudentDisciplineIncidentBehaviorAssociation DisciplineAction ยท 7 columns edfi.DisciplineDescriptor Discipline ยท 1 columns edfi.DisciplineIncident DisciplineIncident ยท 14 columns edfi.DisciplineIncidentBehavior DisciplineIncident ยท 5 columns edfi.DisciplineIncidentExternalParticipant DisciplineIncident ยท 6 columns edfi.DisciplineIncidentParticipationCodeDescriptor DisciplineIncidentParticipationCode ยท 1 columns edfi.DisciplineIncidentWeapon DisciplineIncident ยท 4 columns edfi.DisplacedStudentStatusDescriptor DisplacedStudentStatus ยท 1 columns edfi.DualCreditInstitutionDescriptor DualCreditInstitution ยท 1 columns edfi.DualCreditTypeDescriptor DualCreditType ยท 1 columns edfi.DurationIntervalDescriptor DurationInterval ยท 1 columns edfi.EconomicDisadvantageDescriptor EconomicDisadvantage ยท 1 columns edfi.EducationalEnvironmentDescriptor EducationalEnvironment ยท 1 columns edfi.EducationContent EducationContent ยท 20 columns edfi.EducationContentAppropriateGradeLevel EducationContent ยท 3 columns edfi.EducationContentAppropriateSex EducationContent ยท 3 columns edfi.EducationContentAuthor EducationContent ยท 3 columns edfi.EducationContentDerivativeSourceEducationContent EducationContent ยท 3 columns edfi.EducationContentDerivativeSourceLearningResourceMetadataURI EducationContent ยท 3 columns edfi.EducationContentDerivativeSourceURI EducationContent ยท 3 columns edfi.EducationContentLanguage EducationContent ยท 3 columns edfi.EducationOrganization EducationOrganization ยท 8 columns edfi.EducationOrganizationAddress EducationOrganization ยท 16 columns edfi.EducationOrganizationAddressCharacteristic EducationOrganization ยท 8 columns edfi.EducationOrganizationAddressPeriod EducationOrganization ยท 9 columns edfi.EducationOrganizationAssociationTypeDescriptor EducationOrganizationAssociationType ยท 1 columns edfi.EducationOrganizationCategory EducationOrganization ยท 3 columns edfi.EducationOrganizationCategoryDescriptor EducationOrganizationCategory ยท 1 columns edfi.EducationOrganizationIdentificationCode EducationOrganizationIdentificationCode ยท 7 columns edfi.EducationOrganizationIdentificationSystemDescriptor EducationOrganizationIdentificationSystem ยท 1 columns edfi.EducationOrganizationIndicator EducationOrganization ยท 7 columns edfi.EducationOrganizationIndicatorPeriod EducationOrganization ยท 5 columns edfi.EducationOrganizationInstitutionTelephone EducationOrganization ยท 4 columns edfi.EducationOrganizationInternationalAddress EducationOrganization ยท 12 columns edfi.EducationOrganizationInterventionPrescriptionAssociation EducationOrganizationInterventionPrescriptionAssociation ยท 8 columns edfi.EducationOrganizationNetwork EducationOrganizationNetwork ยท 2 columns edfi.EducationOrganizationNetworkAssociation EducationOrganizationNetworkAssociation ยท 7 columns edfi.EducationOrganizationPeerAssociation EducationOrganizationPeerAssociation ยท 5 columns edfi.EducationPlanDescriptor EducationPlan ยท 1 columns edfi.EducationServiceCenter EducationServiceCenter ยท 2 columns edfi.EducatorPreparationProgram EducatorPreparationProgram ยท 8 columns edfi.EducatorPreparationProgramGradeLevel EducatorPreparationProgram ยท 5 columns edfi.EducatorRoleDescriptor EducatorRole ยท 1 columns edfi.ElectronicMailTypeDescriptor ElectronicMailType ยท 1 columns edfi.EligibilityDelayReasonDescriptor EligibilityDelayReason ยท 1 columns edfi.EligibilityEvaluationTypeDescriptor EligibilityEvaluationType ยท 1 columns edfi.EmploymentStatusDescriptor EmploymentStatus ยท 1 columns edfi.EnglishLanguageExamDescriptor EnglishLanguageExam ยท 1 columns edfi.EnrollmentTypeDescriptor EnrollmentType ยท 1 columns edfi.EntryGradeLevelReasonDescriptor EntryGradeLevelReason ยท 1 columns edfi.EntryTypeDescriptor EntryType ยท 1 columns edfi.EPPDegreeTypeDescriptor EPPDegreeType ยท 1 columns edfi.EPPProgramPathwayDescriptor EPPProgramPathway ยท 1 columns edfi.Evaluation Evaluation ยท 15 columns edfi.EvaluationDelayReasonDescriptor EvaluationDelayReason ยท 1 columns edfi.EvaluationElement EvaluationElement ยท 16 columns edfi.EvaluationElementRating EvaluationElementRating ยท 20 columns edfi.EvaluationElementRatingLevel EvaluationElement ยท 13 columns edfi.EvaluationElementRatingLevelDescriptor EvaluationElementRatingLevel ยท 1 columns edfi.EvaluationElementRatingResult EvaluationElementRating ยท 16 columns edfi.EvaluationObjective EvaluationObjective ยท 16 columns edfi.EvaluationObjectiveRating EvaluationObjectiveRating ยท 16 columns edfi.EvaluationObjectiveRatingLevel EvaluationObjective ยท 12 columns edfi.EvaluationObjectiveRatingResult EvaluationObjectiveRating ยท 15 columns edfi.EvaluationPeriodDescriptor EvaluationPeriod ยท 1 columns edfi.EvaluationRating EvaluationRating ยท 21 columns edfi.EvaluationRatingLevel Evaluation ยท 11 columns edfi.EvaluationRatingLevelDescriptor EvaluationRatingLevel ยท 1 columns edfi.EvaluationRatingResult EvaluationRating ยท 14 columns edfi.EvaluationRatingReviewer EvaluationRating ยท 15 columns edfi.EvaluationRatingReviewerReceivedTraining EvaluationRating ยท 15 columns edfi.EvaluationRatingStatusDescriptor EvaluationRatingStatus ยท 1 columns edfi.EvaluationRubricDimension EvaluationRubricDimension ยท 14 columns edfi.EvaluationTypeDescriptor EvaluationType ยท 1 columns edfi.EventCircumstanceDescriptor EventCircumstance ยท 1 columns edfi.EventComplianceDescriptor EventCompliance ยท 1 columns edfi.EventReasonDescriptor EventReason ยท 1 columns edfi.ExitWithdrawTypeDescriptor ExitWithdrawType ยท 1 columns edfi.FederalLocaleCodeDescriptor FederalLocaleCode ยท 1 columns edfi.FeederSchoolAssociation FeederSchoolAssociation ยท 8 columns edfi.FieldworkExperience FieldworkExperience ยท 13 columns edfi.FieldworkExperienceCoteaching FieldworkExperience ยท 6 columns edfi.FieldworkExperienceSectionAssociation FieldworkExperienceSectionAssociation ยท 11 columns edfi.FieldworkTypeDescriptor FieldworkType ยท 1 columns edfi.FinancialAid FinancialAid ยท 10 columns edfi.FinancialCollectionDescriptor FinancialCollection ยท 1 columns edfi.FrequencyIntervalDescriptor FrequencyInterval ยท 1 columns edfi.FunctionDimension FunctionDimension ยท 6 columns edfi.FunctionDimensionReportingTag FunctionDimension ยท 4 columns edfi.FundDimension FundDimension ยท 6 columns edfi.FundDimensionReportingTag FundDimension ยท 4 columns edfi.FundingSourceDescriptor FundingSource ยท 1 columns edfi.GeneralStudentProgramAssociation GeneralStudentProgramAssociation ยท 12 columns edfi.GeneralStudentProgramAssociationProgramParticipationStatus GeneralStudentProgramAssociation ยท 11 columns edfi.Goal Goal ยท 26 columns edfi.GoalTypeDescriptor GoalType ยท 1 columns edfi.Grade Grade ยท 21 columns edfi.GradebookEntry GradebookEntry ยท 20 columns edfi.GradebookEntryLearningStandard GradebookEntry ยท 4 columns edfi.GradebookEntryTypeDescriptor GradebookEntryType ยท 1 columns edfi.GradeLearningStandardGrade Grade ยท 17 columns edfi.GradeLevelDescriptor GradeLevel ยท 1 columns edfi.GradePointAverageTypeDescriptor GradePointAverageType ยท 1 columns edfi.GradeTypeDescriptor GradeType ยท 1 columns edfi.GradingPeriod GradingPeriod ยท 11 columns edfi.GradingPeriodDescriptor GradingPeriod ยท 1 columns edfi.GraduationPlan GraduationPlan ยท 10 columns edfi.GraduationPlanCreditsByCourse GraduationPlan ยท 9 columns edfi.GraduationPlanCreditsByCourseCourse GraduationPlan ยท 7 columns edfi.GraduationPlanCreditsByCreditCategory GraduationPlan ยท 8 columns edfi.GraduationPlanCreditsBySubject GraduationPlan ยท 8 columns edfi.GraduationPlanRequiredAssessment GraduationPlan ยท 6 columns edfi.GraduationPlanRequiredAssessmentPerformanceLevel GraduationPlan ยท 12 columns edfi.GraduationPlanRequiredAssessmentScore GraduationPlan ยท 10 columns edfi.GraduationPlanRequiredCertification GraduationPlan ยท 8 columns edfi.GraduationPlanTypeDescriptor GraduationPlanType ยท 1 columns edfi.GunFreeSchoolsActReportingStatusDescriptor GunFreeSchoolsActReportingStatus ยท 1 columns edfi.HireStatusDescriptor HireStatus ยท 1 columns edfi.HiringSourceDescriptor HiringSource ยท 1 columns edfi.HomelessPrimaryNighttimeResidenceDescriptor HomelessPrimaryNighttimeResidence ยท 1 columns edfi.HomelessProgramServiceDescriptor HomelessProgramService ยท 1 columns edfi.IDEAEvent IDEAEvent ยท 12 columns edfi.IDEAEventTypeDescriptor IDEAEventType ยท 1 columns edfi.IDEAPartDescriptor IDEAPart ยท 1 columns edfi.IdentificationDocumentUseDescriptor IdentificationDocumentUse ยท 1 columns edfi.IEPGoalTypeDescriptor IEPGoalType ยท 1 columns edfi.IEPStatusDescriptor IEPStatus ยท 1 columns edfi.ImmunizationTypeDescriptor ImmunizationType ยท 1 columns edfi.IncidentLocationDescriptor IncidentLocation ยท 1 columns edfi.IndicatorDescriptor Indicator ยท 1 columns edfi.IndicatorGroupDescriptor IndicatorGroup ยท 1 columns edfi.IndicatorLevelDescriptor IndicatorLevel ยท 1 columns edfi.InstitutionTelephoneNumberTypeDescriptor InstitutionTelephoneNumberType ยท 1 columns edfi.InstructionalSettingDescriptor InstructionalSetting ยท 1 columns edfi.InteractivityStyleDescriptor InteractivityStyle ยท 1 columns edfi.InternetAccessDescriptor InternetAccess ยท 1 columns edfi.InternetAccessTypeInResidenceDescriptor InternetAccessTypeInResidence ยท 1 columns edfi.InternetPerformanceInResidenceDescriptor InternetPerformanceInResidence ยท 1 columns edfi.Intervention Intervention ยท 12 columns edfi.InterventionAppropriateGradeLevel Intervention ยท 4 columns edfi.InterventionAppropriateSex Intervention ยท 4 columns edfi.InterventionClassDescriptor InterventionClass ยท 1 columns edfi.InterventionDiagnosis Intervention ยท 4 columns edfi.InterventionEducationContent Intervention ยท 4 columns edfi.InterventionEffectivenessRatingDescriptor InterventionEffectivenessRating ยท 1 columns edfi.InterventionInterventionPrescription Intervention ยท 5 columns edfi.InterventionLearningResourceMetadataURI Intervention ยท 4 columns edfi.InterventionMeetingTime Intervention ยท 5 columns edfi.InterventionPopulationServed Intervention ยท 4 columns edfi.InterventionPrescription InterventionPrescription ยท 10 columns edfi.InterventionPrescriptionAppropriateGradeLevel InterventionPrescription ยท 4 columns edfi.InterventionPrescriptionAppropriateSex InterventionPrescription ยท 4 columns edfi.InterventionPrescriptionDiagnosis InterventionPrescription ยท 4 columns edfi.InterventionPrescriptionEducationContent InterventionPrescription ยท 4 columns edfi.InterventionPrescriptionLearningResourceMetadataURI InterventionPrescription ยท 4 columns edfi.InterventionPrescriptionPopulationServed InterventionPrescription ยท 4 columns edfi.InterventionPrescriptionURI InterventionPrescription ยท 4 columns edfi.InterventionStaff Intervention ยท 4 columns edfi.InterventionStudy InterventionStudy ยท 10 columns edfi.InterventionStudyAppropriateGradeLevel InterventionStudy ยท 4 columns edfi.InterventionStudyAppropriateSex InterventionStudy ยท 4 columns edfi.InterventionStudyEducationContent InterventionStudy ยท 4 columns edfi.InterventionStudyInterventionEffectiveness InterventionStudy ยท 8 columns edfi.InterventionStudyLearningResourceMetadataURI InterventionStudy ยท 4 columns edfi.InterventionStudyPopulationServed InterventionStudy ยท 4 columns edfi.InterventionStudyStateAbbreviation InterventionStudy ยท 4 columns edfi.InterventionStudyURI InterventionStudy ยท 4 columns edfi.InterventionURI Intervention ยท 4 columns edfi.LanguageDescriptor Language ยท 1 columns edfi.LanguageInstructionProgramServiceDescriptor LanguageInstructionProgramService ยท 1 columns edfi.LanguageUseDescriptor LanguageUse ยท 1 columns edfi.LearningStandard LearningStandard ยท 13 columns edfi.LearningStandardAcademicSubject LearningStandard ยท 3 columns edfi.LearningStandardCategoryDescriptor LearningStandardCategory ยท 1 columns edfi.LearningStandardContentStandard LearningStandard ยท 11 columns edfi.LearningStandardContentStandardAuthor LearningStandard ยท 3 columns edfi.LearningStandardEquivalenceAssociation LearningStandardEquivalenceAssociation ยท 9 columns edfi.LearningStandardEquivalenceStrengthDescriptor LearningStandardEquivalenceStrength ยท 1 columns edfi.LearningStandardGradeLevel LearningStandard ยท 3 columns edfi.LearningStandardIdentificationCode LearningStandard ยท 4 columns edfi.LearningStandardScopeDescriptor LearningStandardScope ยท 1 columns edfi.LengthOfContractDescriptor LengthOfContract ยท 1 columns edfi.LevelOfEducationDescriptor LevelOfEducation ยท 1 columns edfi.LicenseStatusDescriptor LicenseStatus ยท 1 columns edfi.LicenseTypeDescriptor LicenseType ยท 1 columns edfi.LimitedEnglishProficiencyDescriptor LimitedEnglishProficiency ยท 1 columns edfi.LocalAccount LocalAccount ยท 9 columns edfi.LocalAccountReportingTag LocalAccount ยท 6 columns edfi.LocalActual LocalActual ยท 9 columns edfi.LocalBudget LocalBudget ยท 9 columns edfi.LocalContractedStaff LocalContractedStaff ยท 10 columns edfi.LocaleDescriptor Locale ยท 1 columns edfi.LocalEducationAgency LocalEducationAgency ยท 7 columns edfi.LocalEducationAgencyAccountability LocalEducationAgency ยท 5 columns edfi.LocalEducationAgencyCategoryDescriptor LocalEducationAgencyCategory ยท 1 columns edfi.LocalEducationAgencyFederalFunds LocalEducationAgency ยท 11 columns edfi.LocalEncumbrance LocalEncumbrance ยท 9 columns edfi.LocalPayroll LocalPayroll ยท 10 columns edfi.Location Location ยท 7 columns edfi.MagnetSpecialProgramEmphasisSchoolDescriptor MagnetSpecialProgramEmphasisSchool ยท 1 columns edfi.MediumOfInstructionDescriptor MediumOfInstruction ยท 1 columns edfi.MethodCreditEarnedDescriptor MethodCreditEarned ยท 1 columns edfi.MigrantEducationProgramServiceDescriptor MigrantEducationProgramService ยท 1 columns edfi.ModelEntityDescriptor ModelEntity ยท 1 columns edfi.MonitoredDescriptor Monitored ยท 1 columns edfi.NeglectedOrDelinquentProgramDescriptor NeglectedOrDelinquentProgram ยท 1 columns edfi.NeglectedOrDelinquentProgramServiceDescriptor NeglectedOrDelinquentProgramService ยท 1 columns edfi.NetworkPurposeDescriptor NetworkPurpose ยท 1 columns edfi.NonMedicalImmunizationExemptionDescriptor NonMedicalImmunizationExemption ยท 1 columns edfi.ObjectDimension ObjectDimension ยท 6 columns edfi.ObjectDimensionReportingTag ObjectDimension ยท 4 columns edfi.ObjectiveAssessment ObjectiveAssessment ยท 11 columns edfi.ObjectiveAssessmentAssessmentItem ObjectiveAssessment ยท 5 columns edfi.ObjectiveAssessmentLearningStandard ObjectiveAssessment ยท 5 columns edfi.ObjectiveAssessmentParentObjectiveAssessment ObjectiveAssessment ยท 5 columns edfi.ObjectiveAssessmentPerformanceLevel ObjectiveAssessment ยท 10 columns edfi.ObjectiveAssessmentScore ObjectiveAssessment ยท 8 columns edfi.ObjectiveRatingLevelDescriptor ObjectiveRatingLevel ยท 1 columns edfi.OpenStaffPosition OpenStaffPosition ยท 23 columns edfi.OpenStaffPositionAcademicSubject OpenStaffPosition ยท 4 columns edfi.OpenStaffPositionEvent OpenStaffPositionEvent ยท 8 columns edfi.OpenStaffPositionEventStatusDescriptor OpenStaffPositionEventStatus ยท 1 columns edfi.OpenStaffPositionEventTypeDescriptor OpenStaffPositionEventType ยท 1 columns edfi.OpenStaffPositionInstructionalGradeLevel OpenStaffPosition ยท 4 columns edfi.OpenStaffPositionReasonDescriptor OpenStaffPositionReason ยท 1 columns edfi.OperationalStatusDescriptor OperationalStatus ยท 1 columns edfi.OperationalUnitDimension OperationalUnitDimension ยท 6 columns edfi.OperationalUnitDimensionReportingTag OperationalUnitDimension ยท 4 columns edfi.OrganizationDepartment OrganizationDepartment ยท 3 columns edfi.OtherNameTypeDescriptor OtherNameType ยท 1 columns edfi.ParticipationDescriptor Participation ยท 1 columns edfi.ParticipationStatusDescriptor ParticipationStatus ยท 1 columns edfi.Path Path ยท 7 columns edfi.PathMilestone PathMilestone ยท 7 columns edfi.PathMilestoneStatusDescriptor PathMilestoneStatus ยท 1 columns edfi.PathMilestoneTypeDescriptor PathMilestoneType ยท 1 columns edfi.PathPhase PathPhase ยท 8 columns edfi.PathPhasePathMilestone PathPhase ยท 6 columns edfi.PathPhaseStatusDescriptor PathPhaseStatus ยท 1 columns edfi.PerformanceBaseConversionDescriptor PerformanceBaseConversion ยท 1 columns edfi.PerformanceEvaluation PerformanceEvaluation ยท 11 columns edfi.PerformanceEvaluationGradeLevel PerformanceEvaluation ยท 8 columns edfi.PerformanceEvaluationRating PerformanceEvaluationRating ยท 19 columns edfi.PerformanceEvaluationRatingLevel PerformanceEvaluation ยท 10 columns edfi.PerformanceEvaluationRatingLevelDescriptor PerformanceEvaluationRatingLevel ยท 1 columns edfi.PerformanceEvaluationRatingResult PerformanceEvaluationRating ยท 12 columns edfi.PerformanceEvaluationRatingReviewer PerformanceEvaluationRating ยท 13 columns edfi.PerformanceEvaluationRatingReviewerReceivedTraining PerformanceEvaluationRating ยท 13 columns edfi.PerformanceEvaluationTypeDescriptor PerformanceEvaluationType ยท 1 columns edfi.PerformanceLevelDescriptor PerformanceLevel ยท 1 columns edfi.Person Person ยท 5 columns edfi.PersonalInformationVerificationDescriptor PersonalInformationVerification ยท 1 columns edfi.PlatformTypeDescriptor PlatformType ยท 1 columns edfi.PopulationServedDescriptor PopulationServed ยท 1 columns edfi.PostingResultDescriptor PostingResult ยท 1 columns edfi.PostSecondaryEvent PostSecondaryEvent ยท 7 columns edfi.PostSecondaryEventCategoryDescriptor PostSecondaryEventCategory ยท 1 columns edfi.PostSecondaryInstitution PostSecondaryInstitution ยท 4 columns edfi.PostSecondaryInstitutionLevelDescriptor PostSecondaryInstitutionLevel ยท 1 columns edfi.PostSecondaryInstitutionMediumOfInstruction PostSecondaryInstitution ยท 3 columns edfi.PreviousCareerDescriptor PreviousCareer ยท 1 columns edfi.PrimaryLearningDeviceAccessDescriptor PrimaryLearningDeviceAccess ยท 1 columns edfi.PrimaryLearningDeviceAwayFromSchoolDescriptor PrimaryLearningDeviceAwayFromSchool ยท 1 columns edfi.PrimaryLearningDeviceProviderDescriptor PrimaryLearningDeviceProvider ยท 1 columns edfi.ProfessionalDevelopmentEvent ProfessionalDevelopmentEvent ยท 10 columns edfi.ProfessionalDevelopmentEventAttendance ProfessionalDevelopmentEventAttendance ยท 10 columns edfi.ProfessionalDevelopmentOfferedByDescriptor ProfessionalDevelopmentOfferedBy ยท 1 columns edfi.ProficiencyDescriptor Proficiency ยท 1 columns edfi.Program Program ยท 7 columns edfi.ProgramAssignmentDescriptor ProgramAssignment ยท 1 columns edfi.ProgramCharacteristic Program ยท 5 columns edfi.ProgramCharacteristicDescriptor ProgramCharacteristic ยท 1 columns edfi.ProgramDimension ProgramDimension ยท 6 columns edfi.ProgramDimensionReportingTag ProgramDimension ยท 4 columns edfi.ProgramEvaluation ProgramEvaluation ยท 12 columns edfi.ProgramEvaluationElement ProgramEvaluationElement ยท 15 columns edfi.ProgramEvaluationElementProgramEvaluationLevel ProgramEvaluationElement ยท 11 columns edfi.ProgramEvaluationLevel ProgramEvaluation ยท 10 columns edfi.ProgramEvaluationObjective ProgramEvaluationObjective ยท 14 columns edfi.ProgramEvaluationObjectiveProgramEvaluationLevel ProgramEvaluationObjective ยท 11 columns edfi.ProgramEvaluationPeriodDescriptor ProgramEvaluationPeriod ยท 1 columns edfi.ProgramEvaluationTypeDescriptor ProgramEvaluationType ยท 1 columns edfi.ProgramLearningStandard Program ยท 5 columns edfi.ProgramSponsor Program ยท 5 columns edfi.ProgramSponsorDescriptor ProgramSponsor ยท 1 columns edfi.ProgramTypeDescriptor ProgramType ยท 1 columns edfi.ProgressDescriptor Progress ยท 1 columns edfi.ProgressLevelDescriptor ProgressLevel ยท 1 columns edfi.ProjectDimension ProjectDimension ยท 6 columns edfi.ProjectDimensionReportingTag ProjectDimension ยท 4 columns edfi.ProviderCategoryDescriptor ProviderCategory ยท 1 columns edfi.ProviderProfitabilityDescriptor ProviderProfitability ยท 1 columns edfi.ProviderStatusDescriptor ProviderStatus ยท 1 columns edfi.PublicationStatusDescriptor PublicationStatus ยท 1 columns edfi.QuantitativeMeasure QuantitativeMeasure ยท 15 columns edfi.QuantitativeMeasureDatatypeDescriptor QuantitativeMeasureDatatype ยท 1 columns edfi.QuantitativeMeasureScore QuantitativeMeasureScore ยท 18 columns edfi.QuantitativeMeasureTypeDescriptor QuantitativeMeasureType ยท 1 columns edfi.QuestionFormDescriptor QuestionForm ยท 1 columns edfi.RaceDescriptor Race ยท 1 columns edfi.RatingLevelDescriptor RatingLevel ยท 1 columns edfi.ReasonExitedDescriptor ReasonExited ยท 1 columns edfi.ReasonNotTestedDescriptor ReasonNotTested ยท 1 columns edfi.RecognitionTypeDescriptor RecognitionType ยท 1 columns edfi.RecruitmentEvent RecruitmentEvent ยท 9 columns edfi.RecruitmentEventAttendance RecruitmentEventAttendance ยท 28 columns edfi.RecruitmentEventAttendanceCurrentPosition RecruitmentEventAttendance ยท 9 columns edfi.RecruitmentEventAttendanceCurrentPositionGradeLevel RecruitmentEventAttendance ยท 6 columns edfi.RecruitmentEventAttendanceDisability RecruitmentEventAttendance ยท 9 columns edfi.RecruitmentEventAttendanceDisabilityDesignation RecruitmentEventAttendance ยท 7 columns edfi.RecruitmentEventAttendancePersonalIdentificationDocument RecruitmentEventAttendance ยท 12 columns edfi.RecruitmentEventAttendanceRace RecruitmentEventAttendance ยท 6 columns edfi.RecruitmentEventAttendanceRecruitmentEventAttendeeQualifications RecruitmentEventAttendance ยท 9 columns edfi.RecruitmentEventAttendanceTelephone RecruitmentEventAttendance ยท 10 columns edfi.RecruitmentEventAttendanceTouchpoint RecruitmentEventAttendance ยท 7 columns edfi.RecruitmentEventAttendeeTypeDescriptor RecruitmentEventAttendeeType ยท 1 columns edfi.RecruitmentEventTypeDescriptor RecruitmentEventType ยท 1 columns edfi.RelationDescriptor Relation ยท 1 columns edfi.RepeatIdentifierDescriptor RepeatIdentifier ยท 1 columns edfi.ReportCard ReportCard ยท 12 columns edfi.ReportCardGrade ReportCard ยท 14 columns edfi.ReportCardGradePointAverage ReportCard ยท 11 columns edfi.ReportCardStudentCompetencyObjective ReportCard ยท 10 columns edfi.ReporterDescriptionDescriptor ReporterDescription ยท 1 columns edfi.ReportingTagDescriptor ReportingTag ยท 1 columns edfi.ResidencyStatusDescriptor ResidencyStatus ยท 1 columns edfi.ResponseIndicatorDescriptor ResponseIndicator ยท 1 columns edfi.ResponsibilityDescriptor Responsibility ยท 1 columns edfi.RestraintEvent RestraintEvent ยท 9 columns edfi.RestraintEventProgram RestraintEvent ยท 7 columns edfi.RestraintEventReason RestraintEvent ยท 5 columns edfi.RestraintEventReasonDescriptor RestraintEventReason ยท 1 columns edfi.ResultDatatypeTypeDescriptor ResultDatatypeType ยท 1 columns edfi.RetestIndicatorDescriptor RetestIndicator ยท 1 columns edfi.RubricDimension RubricDimension ยท 16 columns edfi.RubricRatingLevelDescriptor RubricRatingLevel ยท 1 columns edfi.SalaryTypeDescriptor SalaryType ยท 1 columns edfi.School School ยท 14 columns edfi.SchoolCategory School ยท 3 columns edfi.SchoolCategoryDescriptor SchoolCategory ยท 1 columns edfi.SchoolChoiceBasisDescriptor SchoolChoiceBasis ยท 1 columns edfi.SchoolChoiceImplementStatusDescriptor SchoolChoiceImplementStatus ยท 1 columns edfi.SchoolFoodServiceProgramServiceDescriptor SchoolFoodServiceProgramService ยท 1 columns edfi.SchoolGradeLevel School ยท 3 columns edfi.SchoolTypeDescriptor SchoolType ยท 1 columns edfi.Section Section ยท 21 columns edfi.Section504DisabilityDescriptor Section504Disability ยท 1 columns edfi.SectionAttendanceTakenEvent SectionAttendanceTakenEvent ยท 12 columns edfi.SectionCharacteristic Section ยท 7 columns edfi.SectionCharacteristicDescriptor SectionCharacteristic ยท 1 columns edfi.SectionClassPeriod Section ยท 7 columns edfi.SectionCourseLevelCharacteristic Section ยท 7 columns edfi.SectionOfferedGradeLevel Section ยท 7 columns edfi.SectionProgram Section ยท 9 columns edfi.SectionTypeDescriptor SectionType ยท 1 columns edfi.SeparationDescriptor Separation ยท 1 columns edfi.SeparationReasonDescriptor SeparationReason ยท 1 columns edfi.ServiceDeliveryDescriptor ServiceDelivery ยท 1 columns edfi.ServiceDescriptor Service ยท 1 columns edfi.ServiceLocationTypeDescriptor ServiceLocationType ยท 1 columns edfi.ServicePrescriptionDescriptor ServicePrescription ยท 1 columns edfi.ServiceProviderTypeDescriptor ServiceProviderType ยท 1 columns edfi.Session Session ยท 10 columns edfi.SessionAcademicWeek Session ยท 5 columns edfi.SessionGradingPeriod Session ยท 6 columns edfi.SexDescriptor Sex ยท 1 columns edfi.SourceDimension SourceDimension ยท 6 columns edfi.SourceDimensionReportingTag SourceDimension ยท 4 columns edfi.SourceSystemDescriptor SourceSystem ยท 1 columns edfi.SpecialEducationExitReasonDescriptor SpecialEducationExitReason ยท 1 columns edfi.SpecialEducationProgramServiceDescriptor SpecialEducationProgramService ยท 1 columns edfi.SpecialEducationSettingDescriptor SpecialEducationSetting ยท 1 columns edfi.Staff Staff ยท 23 columns edfi.StaffAbsenceEvent StaffAbsenceEvent ยท 8 columns edfi.StaffClassificationDescriptor StaffClassification ยท 1 columns edfi.StaffCohortAssociation StaffCohortAssociation ยท 9 columns edfi.StaffCredential Staff ยท 4 columns edfi.StaffDemographic StaffDemographic ยท 9 columns edfi.StaffDemographicAncestryEthnicOrigin StaffDemographic ยท 4 columns edfi.StaffDemographicIdentificationDocument StaffDemographic ยท 10 columns edfi.StaffDemographicLanguage StaffDemographic ยท 4 columns edfi.StaffDemographicLanguageUse StaffDemographic ยท 5 columns edfi.StaffDemographicRace StaffDemographic ยท 4 columns edfi.StaffDemographicTribalAffiliation StaffDemographic ยท 4 columns edfi.StaffDemographicVisa StaffDemographic ยท 4 columns edfi.StaffDirectory StaffDirectory ยท 5 columns edfi.StaffDirectoryAddress StaffDirectory ยท 17 columns edfi.StaffDirectoryAddressCharacteristic StaffDirectory ยท 9 columns edfi.StaffDirectoryAddressPeriod StaffDirectory ยท 10 columns edfi.StaffDirectoryElectronicMail StaffDirectory ยท 7 columns edfi.StaffDirectoryInternationalAddress StaffDirectory ยท 13 columns edfi.StaffDirectoryTelephone StaffDirectory ยท 8 columns edfi.StaffDisciplineIncidentAssociation StaffDisciplineIncidentAssociation ยท 6 columns edfi.StaffDisciplineIncidentAssociationDisciplineIncidentParticipationCode StaffDisciplineIncidentAssociation ยท 5 columns edfi.StaffEducationOrganizationAssignmentAssociation StaffEducationOrganizationAssignmentAssociation ยท 17 columns edfi.StaffEducationOrganizationEmploymentAssociation StaffEducationOrganizationEmploymentAssociation ยท 21 columns edfi.StaffEducationOrganizationEmploymentAssociationBackgroundCheck StaffEducationOrganizationEmploymentAssociation ยท 10 columns edfi.StaffEducationOrganizationEmploymentAssociationSalary StaffEducationOrganizationEmploymentAssociation ยท 9 columns edfi.StaffEducationOrganizationEmploymentAssociationSeniority StaffEducationOrganizationEmploymentAssociation ยท 8 columns edfi.StaffEducatorPreparationProgram Staff ยท 5 columns edfi.StaffEducatorPreparationProgramAssociation StaffEducatorPreparationProgramAssociation ยท 10 columns edfi.StaffEducatorResearch Staff ยท 5 columns edfi.StaffHighlyQualifiedAcademicSubject Staff ยท 3 columns edfi.StaffIdentificationCode StaffIdentificationCode ยท 8 columns edfi.StaffIdentificationSystemDescriptor StaffIdentificationSystem ยท 1 columns edfi.StaffLeave StaffLeave ยท 9 columns edfi.StaffLeaveEventCategoryDescriptor StaffLeaveEventCategory ยท 1 columns edfi.StaffOtherName Staff ยท 8 columns edfi.StaffPersonalIdentificationDocument Staff ยท 9 columns edfi.StaffProgramAssociation StaffProgramAssociation ยท 10 columns edfi.StaffRecognition Staff ยท 15 columns edfi.StaffSchoolAssociation StaffSchoolAssociation ยท 8 columns edfi.StaffSchoolAssociationAcademicSubject StaffSchoolAssociation ยท 5 columns edfi.StaffSchoolAssociationGradeLevel StaffSchoolAssociation ยท 5 columns edfi.StaffSectionAssociation StaffSectionAssociation ยท 15 columns edfi.StaffToCandidateRelationshipDescriptor StaffToCandidateRelationship ยท 1 columns edfi.StateAbbreviationDescriptor StateAbbreviation ยท 1 columns edfi.StateEducationAgency StateEducationAgency ยท 2 columns edfi.StateEducationAgencyAccountability StateEducationAgency ยท 4 columns edfi.StateEducationAgencyFederalFunds StateEducationAgency ยท 4 columns edfi.Student Student ยท 23 columns edfi.StudentAcademicRecord StudentAcademicRecord ยท 20 columns edfi.StudentAcademicRecordAcademicHonor StudentAcademicRecord ยท 18 columns edfi.StudentAcademicRecordClassRanking StudentAcademicRecord ยท 9 columns edfi.StudentAcademicRecordDiploma StudentAcademicRecord ยท 20 columns edfi.StudentAcademicRecordGradePointAverage StudentAcademicRecord ยท 9 columns edfi.StudentAcademicRecordRecognition StudentAcademicRecord ยท 18 columns edfi.StudentAcademicRecordReportCard StudentAcademicRecord ยท 9 columns edfi.StudentAssessment StudentAssessment ยท 23 columns edfi.StudentAssessmentAccommodation StudentAssessment ยท 6 columns edfi.StudentAssessmentEducationOrganizationAssociation StudentAssessmentEducationOrganizationAssociation ยท 10 columns edfi.StudentAssessmentIndicator StudentAssessment ยท 8 columns edfi.StudentAssessmentItem StudentAssessment ยท 13 columns edfi.StudentAssessmentPerformanceLevel StudentAssessment ยท 8 columns edfi.StudentAssessmentPeriod StudentAssessment ยท 8 columns edfi.StudentAssessmentRegistration StudentAssessmentRegistration ยท 17 columns edfi.StudentAssessmentRegistrationAssessmentAccommodation StudentAssessmentRegistration ยท 8 columns edfi.StudentAssessmentRegistrationAssessmentCustomization StudentAssessmentRegistration ยท 9 columns edfi.StudentAssessmentRegistrationBatteryPartAssociation StudentAssessmentRegistrationBatteryPartAssociation ยท 10 columns edfi.StudentAssessmentRegistrationBatteryPartAssociationAccommodation StudentAssessmentRegistrationBatteryPartAssociation ยท 9 columns edfi.StudentAssessmentScoreResult StudentAssessment ยท 8 columns edfi.StudentAssessmentStudentObjectiveAssessment StudentAssessment ยท 9 columns edfi.StudentAssessmentStudentObjectiveAssessmentPerformanceLevel StudentAssessment ยท 9 columns edfi.StudentAssessmentStudentObjectiveAssessmentScoreResult StudentAssessment ยท 9 columns edfi.StudentCharacteristicDescriptor StudentCharacteristic ยท 1 columns edfi.StudentCohortAssociation StudentCohortAssociation ยท 8 columns edfi.StudentCohortAssociationSection StudentCohortAssociation ยท 10 columns edfi.StudentCompetencyObjective StudentCompetencyObjective ยท 13 columns edfi.StudentCompetencyObjectiveGeneralStudentProgramAssociation StudentCompetencyObjective ยท 14 columns edfi.StudentCompetencyObjectiveStudentSectionAssociation StudentCompetencyObjective ยท 15 columns edfi.StudentContactAssociation StudentContactAssociation ยท 12 columns edfi.StudentCTEProgramAssociation StudentCTEProgramAssociation ยท 9 columns edfi.StudentCTEProgramAssociationCTEProgramService StudentCTEProgramAssociation ยท 12 columns edfi.StudentDemographic StudentDemographic ยท 12 columns edfi.StudentDemographicAncestryEthnicOrigin StudentDemographic ยท 4 columns edfi.StudentDemographicDisability StudentDemographic ยท 7 columns edfi.StudentDemographicDisabilityDesignation StudentDemographic ยท 5 columns edfi.StudentDemographicIdentificationDocument StudentDemographic ยท 10 columns edfi.StudentDemographicLanguage StudentDemographic ยท 4 columns edfi.StudentDemographicLanguageUse StudentDemographic ยท 5 columns edfi.StudentDemographicRace StudentDemographic ยท 4 columns edfi.StudentDemographicStudentCharacteristic StudentDemographic ยท 5 columns edfi.StudentDemographicStudentCharacteristicPeriod StudentDemographic ยท 6 columns edfi.StudentDemographicTribalAffiliation StudentDemographic ยท 4 columns edfi.StudentDemographicVisa StudentDemographic ยท 4 columns edfi.StudentDirectory StudentDirectory ยท 5 columns edfi.StudentDirectoryAddress StudentDirectory ยท 17 columns edfi.StudentDirectoryAddressCharacteristic StudentDirectory ยท 9 columns edfi.StudentDirectoryAddressPeriod StudentDirectory ยท 10 columns edfi.StudentDirectoryElectronicMail StudentDirectory ยท 7 columns edfi.StudentDirectoryInternationalAddress StudentDirectory ยท 13 columns edfi.StudentDirectoryTelephone StudentDirectory ยท 8 columns edfi.StudentDisciplineIncidentBehaviorAssociation StudentDisciplineIncidentBehaviorAssociation ยท 8 columns edfi.StudentDisciplineIncidentBehaviorAssociationDisciplineIncidentParticipationCode StudentDisciplineIncidentBehaviorAssociation ยท 6 columns edfi.StudentDisciplineIncidentBehaviorAssociationWeapon StudentDisciplineIncidentBehaviorAssociation ยท 6 columns edfi.StudentDisciplineIncidentNonOffenderAssociation StudentDisciplineIncidentNonOffenderAssociation ยท 6 columns edfi.StudentDisciplineIncidentNonOffenderAssociationDisciplineIncidentParticipationCode StudentDisciplineIncidentNonOffenderAssociation ยท 5 columns edfi.StudentEducationOrganizationAssessmentAccommodation StudentEducationOrganizationAssessmentAccommodation ยท 5 columns edfi.StudentEducationOrganizationAssessmentAccommodationGeneralAccommodation StudentEducationOrganizationAssessmentAccommodation ยท 4 columns edfi.StudentEducationOrganizationAssociation StudentEducationOrganizationAssociation ยท 14 columns edfi.StudentEducationOrganizationAssociationCohortYear StudentEducationOrganizationAssociation ยท 6 columns edfi.StudentEducationOrganizationAssociationDisplacedStudent StudentEducationOrganizationAssociation ยท 8 columns edfi.StudentEducationOrganizationAssociationStudentIndicator StudentEducationOrganizationAssociation ยท 7 columns edfi.StudentEducationOrganizationAssociationStudentIndicatorPeriod StudentEducationOrganizationAssociation ยท 6 columns edfi.StudentEducationOrganizationResponsibilityAssociation StudentEducationOrganizationResponsibilityAssociation ยท 9 columns edfi.StudentGradebookEntry StudentGradebookEntry ยท 17 columns edfi.StudentHealth StudentHealth ยท 8 columns edfi.StudentHealthAdditionalImmunization StudentHealth ยท 4 columns edfi.StudentHealthAdditionalImmunizationDate StudentHealth ยท 5 columns edfi.StudentHealthRequiredImmunization StudentHealth ยท 6 columns edfi.StudentHealthRequiredImmunizationDate StudentHealth ยท 5 columns edfi.StudentHomelessProgramAssociation StudentHomelessProgramAssociation ยท 9 columns edfi.StudentHomelessProgramAssociationHomelessProgramService StudentHomelessProgramAssociation ยท 11 columns edfi.StudentIdentificationCode StudentIdentificationCode ยท 8 columns edfi.StudentIdentificationSystemDescriptor StudentIdentificationSystem ยท 1 columns edfi.StudentIEP StudentIEP ยท 17 columns edfi.StudentIEPAccommodation StudentIEP ยท 6 columns edfi.StudentIEPDisability StudentIEP ยท 9 columns edfi.StudentIEPDisabilityDesignation StudentIEP ยท 7 columns edfi.StudentIEPGoal StudentIEPGoal ยท 10 columns edfi.StudentIEPGoalAchievementPeriod StudentIEPGoal ยท 8 columns edfi.StudentIEPGoalIDEAEvent StudentIEPGoal ยท 8 columns edfi.StudentIEPIDEAEvent StudentIEP ยท 7 columns edfi.StudentIEPServiceDelivery StudentIEPServiceDelivery ยท 12 columns edfi.StudentIEPServiceDeliveryIDEAEvent StudentIEPServiceDelivery ยท 10 columns edfi.StudentIEPServiceDeliveryProvider StudentIEPServiceDelivery ยท 15 columns edfi.StudentIEPServicePrescription StudentIEPServicePrescription ยท 16 columns edfi.StudentIEPServicePrescriptionIDEAEvent StudentIEPServicePrescription ยท 9 columns edfi.StudentIEPServicePrescriptionStaff StudentIEPServicePrescription ยท 8 columns edfi.StudentInterventionAssociation StudentInterventionAssociation ยท 10 columns edfi.StudentInterventionAssociationInterventionEffectiveness StudentInterventionAssociation ยท 9 columns edfi.StudentInterventionAttendanceEvent StudentInterventionAttendanceEvent ยท 12 columns edfi.StudentLanguageInstructionProgramAssociation StudentLanguageInstructionProgramAssociation ยท 8 columns edfi.StudentLanguageInstructionProgramAssociationEnglishLanguageProficiencyAssessment StudentLanguageInstructionProgramAssociation ยท 12 columns edfi.StudentLanguageInstructionProgramAssociationLanguageInstructionProgramService StudentLanguageInstructionProgramAssociation ยท 11 columns edfi.StudentMigrantEducationProgramAssociation StudentMigrantEducationProgramAssociation ยท 15 columns edfi.StudentMigrantEducationProgramAssociationMigrantEducationProgramService StudentMigrantEducationProgramAssociation ยท 11 columns edfi.StudentNeglectedOrDelinquentProgramAssociation StudentNeglectedOrDelinquentProgramAssociation ยท 9 columns edfi.StudentNeglectedOrDelinquentProgramAssociationNeglectedOrDelinquentProgramService StudentNeglectedOrDelinquentProgramAssociation ยท 11 columns edfi.StudentOtherName Student ยท 8 columns edfi.StudentPath StudentPath ยท 6 columns edfi.StudentPathMilestoneStatus StudentPathMilestoneStatus ยท 10 columns edfi.StudentPathMilestoneStatusEvent StudentPathMilestoneStatus ยท 9 columns edfi.StudentPathPeriod StudentPath ยท 6 columns edfi.StudentPathPhaseStatus StudentPathPhaseStatus ยท 8 columns edfi.StudentPathPhaseStatusEvent StudentPathPhaseStatus ยท 7 columns edfi.StudentPathPhaseStatusPeriod StudentPathPhaseStatus ยท 7 columns edfi.StudentPersonalIdentificationDocument Student ยท 9 columns edfi.StudentProgramAssociation StudentProgramAssociation ยท 6 columns edfi.StudentProgramAssociationService StudentProgramAssociation ยท 11 columns edfi.StudentProgramAttendanceEvent StudentProgramAttendanceEvent ยท 14 columns edfi.StudentProgramEvaluation StudentProgramEvaluation ยท 17 columns edfi.StudentProgramEvaluationExternalEvaluator StudentProgramEvaluation ยท 10 columns edfi.StudentProgramEvaluationStudentEvaluationElement StudentProgramEvaluation ยท 12 columns edfi.StudentProgramEvaluationStudentEvaluationObjective StudentProgramEvaluation ยท 12 columns edfi.StudentSchoolAssociation StudentSchoolAssociation ยท 29 columns edfi.StudentSchoolAssociationAlternativeGraduationPlan StudentSchoolAssociation ยท 7 columns edfi.StudentSchoolAssociationEducationPlan StudentSchoolAssociation ยท 5 columns edfi.StudentSchoolAttendanceEvent StudentSchoolAttendanceEvent ยท 15 columns edfi.StudentSchoolFoodServiceProgramAssociation StudentSchoolFoodServiceProgramAssociation ยท 7 columns edfi.StudentSchoolFoodServiceProgramAssociationSchoolFoodServiceProgramService StudentSchoolFoodServiceProgramAssociation ยท 11 columns edfi.StudentSection504ProgramAssociation StudentSection504ProgramAssociation ยท 11 columns edfi.StudentSectionAssociation StudentSectionAssociation ยท 20 columns edfi.StudentSectionAssociationProgram StudentSectionAssociation ยท 11 columns edfi.StudentSectionAttendanceEvent StudentSectionAttendanceEvent ยท 17 columns edfi.StudentSectionAttendanceEventClassPeriod StudentSectionAttendanceEvent ยท 10 columns edfi.StudentSpecialEducationProgramAssociation StudentSpecialEducationProgramAssociation ยท 23 columns edfi.StudentSpecialEducationProgramAssociationDisability StudentSpecialEducationProgramAssociation ยท 11 columns edfi.StudentSpecialEducationProgramAssociationDisabilityDesignation StudentSpecialEducationProgramAssociation ยท 9 columns edfi.StudentSpecialEducationProgramAssociationServiceProvider StudentSpecialEducationProgramAssociation ยท 9 columns edfi.StudentSpecialEducationProgramAssociationSpecialEducationProgramService StudentSpecialEducationProgramAssociation ยท 11 columns edfi.StudentSpecialEducationProgramAssociationSpecialEducationProgramServiceProvider StudentSpecialEducationProgramAssociation ยท 10 columns edfi.StudentSpecialEducationProgramEligibilityAssociation StudentSpecialEducationProgramEligibilityAssociation ยท 24 columns edfi.StudentTitleIPartAProgramAssociation StudentTitleIPartAProgramAssociation ยท 7 columns edfi.StudentTitleIPartAProgramAssociationTitleIPartAProgramService StudentTitleIPartAProgramAssociation ยท 11 columns edfi.StudentTransportation StudentTransportation ยท 8 columns edfi.StudentTransportationStudentBusDetails StudentTransportation ยท 6 columns edfi.StudentTransportationStudentBusDetailsTravelDayofWeek StudentTransportation ยท 4 columns edfi.StudentTransportationStudentBusDetailsTravelDirection StudentTransportation ยท 4 columns edfi.SubmissionStatusDescriptor SubmissionStatus ยท 1 columns edfi.SupporterMilitaryConnectionDescriptor SupporterMilitaryConnection ยท 1 columns edfi.Survey Survey ยท 12 columns edfi.SurveyCategoryDescriptor SurveyCategory ยท 1 columns edfi.SurveyCourseAssociation SurveyCourseAssociation ยท 7 columns edfi.SurveyLevelDescriptor SurveyLevel ยท 1 columns edfi.SurveyProgramAssociation SurveyProgramAssociation ยท 8 columns edfi.SurveyQuestion SurveyQuestion ยท 9 columns edfi.SurveyQuestionMatrix SurveyQuestion ยท 7 columns edfi.SurveyQuestionResponse SurveyQuestionResponse ยท 9 columns edfi.SurveyQuestionResponseChoice SurveyQuestion ยท 7 columns edfi.SurveyQuestionResponseSurveyQuestionMatrixElementResponse SurveyQuestionResponse ยท 11 columns edfi.SurveyQuestionResponseValue SurveyQuestionResponse ยท 8 columns edfi.SurveyResponse SurveyResponse ยท 16 columns edfi.SurveyResponseEducationOrganizationTargetAssociation SurveyResponseEducationOrganizationTargetAssociation ยท 7 columns edfi.SurveyResponsePersonTargetAssociation SurveyResponsePersonTargetAssociation ยท 8 columns edfi.SurveyResponseStaffTargetAssociation SurveyResponseStaffTargetAssociation ยท 7 columns edfi.SurveyResponseSurveyLevel SurveyResponse ยท 5 columns edfi.SurveySection SurveySection ยท 15 columns edfi.SurveySectionAggregateResponse SurveySectionAggregateResponse ยท 19 columns edfi.SurveySectionAssociation SurveySectionAssociation ยท 10 columns edfi.SurveySectionResponse SurveySectionResponse ยท 8 columns edfi.SurveySectionResponseEducationOrganizationTargetAssociation SurveySectionResponseEducationOrganizationTargetAssociation ยท 8 columns edfi.SurveySectionResponsePersonTargetAssociation SurveySectionResponsePersonTargetAssociation ยท 9 columns edfi.SurveySectionResponseStaffTargetAssociation SurveySectionResponseStaffTargetAssociation ยท 8 columns edfi.TeachingCredentialBasisDescriptor TeachingCredentialBasis ยท 1 columns edfi.TeachingCredentialDescriptor TeachingCredential ยท 1 columns edfi.TechnicalSkillsAssessmentDescriptor TechnicalSkillsAssessment ยท 1 columns edfi.TelephoneNumberTypeDescriptor TelephoneNumberType ยท 1 columns edfi.TermDescriptor Term ยท 1 columns edfi.TitleIPartAParticipantDescriptor TitleIPartAParticipant ยท 1 columns edfi.TitleIPartAProgramServiceDescriptor TitleIPartAProgramService ยท 1 columns edfi.TitleIPartASchoolDesignationDescriptor TitleIPartASchoolDesignation ยท 1 columns edfi.TransportationPublicExpenseEligibilityTypeDescriptor TransportationPublicExpenseEligibilityType ยท 1 columns edfi.TransportationTypeDescriptor TransportationType ยท 1 columns edfi.TravelDayofWeekDescriptor TravelDayofWeek ยท 1 columns edfi.TravelDirectionDescriptor TravelDirection ยท 1 columns edfi.TribalAffiliationDescriptor TribalAffiliation ยท 1 columns edfi.VisaDescriptor Visa ยท 1 columns edfi.WeaponDescriptor Weapon ยท 1 columns edfi.WithdrawReasonDescriptor WithdrawReason ยท 1 columns

Ed-Fi ODS SQL snippet

edfi.AbsenceEventCategoryDescriptor #

Owning UDM entry: AbsenceEventCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AbsenceEventCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AbsenceEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AcademicHonorCategoryDescriptor #

Owning UDM entry: AcademicHonorCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AcademicHonorCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AcademicHonorCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AcademicSubjectDescriptor #

Owning UDM entry: AcademicSubject

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AcademicSubject. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AcademicWeek #

Owning UDM entry: AcademicWeek

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AcademicWeek. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
WeekIdentifier [NVARCHAR](80) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
TotalInstructionalDays [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AccommodationDescriptor #

Owning UDM entry: Accommodation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Accommodation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccommodationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AccountabilityRating #

Owning UDM entry: AccountabilityRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AccountabilityRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
RatingTitle [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
Rating [NVARCHAR](35) required Ed-Fi SQL source EITD-000 pass-through
RatingDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
RatingOrganization [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
RatingProgram [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AccountTypeDescriptor #

Owning UDM entry: AccountType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AccountType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccountTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AccreditationStatusDescriptor #

Owning UDM entry: AccreditationStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AccreditationStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccreditationStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AchievementCategoryDescriptor #

Owning UDM entry: AchievementCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AchievementCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AchievementCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AdditionalCreditTypeDescriptor #

Owning UDM entry: AdditionalCreditType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AdditionalCreditType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdditionalCreditTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AddressCharacteristicDescriptor #

Owning UDM entry: AddressCharacteristic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AddressCharacteristic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AddressCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AddressTypeDescriptor #

Owning UDM entry: AddressType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AddressType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AdministrationEnvironmentDescriptor #

Owning UDM entry: AdministrationEnvironment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AdministrationEnvironment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationEnvironmentDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AdministrativeFundingControlDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AdministrativeFundingControl. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrativeFundingControlDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AidTypeDescriptor #

Owning UDM entry: AidType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AidType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AidTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AncestryEthnicOriginDescriptor #

Owning UDM entry: AncestryEthnicOrigin

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AncestryEthnicOrigin. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AncestryEthnicOriginDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfile #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
BirthDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CitizenshipStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EconomicDisadvantageDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
FirstGenerationStudent [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
GenderIdentity [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
GenerationCodeSuffix [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
HighestCompletedLevelOfEducationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
HighlyQualifiedTeacher [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
HispanicLatinoEthnicity [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
MaidenName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PersonalTitlePrefix [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredFirstName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredLastSurname [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
SexDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
YearsOfPriorProfessionalExperience [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
YearsOfPriorTeachingExperience [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileAddress #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
ApartmentRoomSuiteNumber [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
BuildingSiteNumber [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CongressionalDistrict [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CountyFIPSCode [NVARCHAR](5) nullable Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
LocaleDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
NameOfCounty [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileAddressCharacteristic #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileAddressPeriod #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileApplicantCharacteristic #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
StudentCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DesignatedBy [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileBackgroundCheck #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckCompletedDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckRequestedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Fingerprint [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileDisability #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDeterminationSourceTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DisabilityDiagnosis [NVARCHAR](80) nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfDisability [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileDisabilityDesignation #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDesignationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileEducatorPreparationProgramName #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
EducatorPreparationProgramName [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileElectronicMail #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailAddress [NVARCHAR](128) required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryEmailAddressIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileGradePointAverage #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
GradePointAverageTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradePointAverageValue [DECIMAL](18, 4) required Ed-Fi SQL source EITD-000 pass-through
IsCumulative [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
MaxGradePointAverageValue [DECIMAL](18, 4) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileHighlyQualifiedAcademicSubject #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileIdentificationDocument #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DocumentExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DocumentTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IssuerDocumentIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileInternationalAddress #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressLine1 [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressLine2 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine3 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine4 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CountryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileLanguage #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileLanguageUse #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfilePersonalIdentificationDocument #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DocumentExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DocumentTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IssuerDocumentIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileRace #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
RaceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileTelephone #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumber [NVARCHAR](24) required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumberTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfPriority [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TextMessageCapabilityIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicantProfileVisa #

Owning UDM entry: ApplicantProfile

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicantProfile. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
VisaDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Application #

Owning UDM entry: Application

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Application. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
ApplicationIdentifier [NVARCHAR](20) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AcceptedDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ApplicationDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ApplicationSourceDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ApplicationStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CurrentEmployee [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
FirstContactDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
HighNeedsAcademicSubjectDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
HireStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
HiringSourceDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
RequisitionNumber [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
WithdrawDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
WithdrawReasonDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicationEvent #

Owning UDM entry: ApplicationEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicationEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
ApplicationEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ApplicationIdentifier [NVARCHAR](20) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
SequenceNumber [INT] required Ed-Fi SQL source EITD-000 pass-through
ApplicationEvaluationScore [DECIMAL](36, 18) nullable Ed-Fi SQL source EITD-000 pass-through
ApplicationEventResultDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EventEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicationEventResultDescriptor #

Owning UDM entry: ApplicationEventResult

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicationEventResult. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicationEventResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicationEventTypeDescriptor #

Owning UDM entry: ApplicationEventType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicationEventType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicationEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicationRecruitmentEventAttendance #

Owning UDM entry: Application

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Application. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
ApplicationIdentifier [NVARCHAR](20) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicationScoreResult #

Owning UDM entry: Application

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Application. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
ApplicationIdentifier [NVARCHAR](20) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
Result [NVARCHAR](35) required Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicationSourceDescriptor #

Owning UDM entry: ApplicationSource

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicationSource. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicationSourceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicationStatusDescriptor #

Owning UDM entry: ApplicationStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ApplicationStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicationStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ApplicationTerm #

Owning UDM entry: Application

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Application. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ApplicantProfileIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
ApplicationIdentifier [NVARCHAR](20) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Assessment #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AdaptiveAssessment [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
AssessmentCategoryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AssessmentFamily [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
AssessmentForm [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
AssessmentTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentVersion [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
MaxRawScore [DECIMAL](15, 5) nullable Ed-Fi SQL source EITD-000 pass-through
Nomenclature [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
RevisionDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentAdministration #

Owning UDM entry: AssessmentAdministration

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentAdministration. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssigningEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentAdministrationAssessmentBatteryPart #

Owning UDM entry: AssessmentAdministration

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentAdministration. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssigningEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentBatteryPartName [NVARCHAR](65) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentAdministrationParticipation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentAdministrationParticipation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssigningEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ParticipatingEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentAdministrationParticipationAdministrationPointOfContact #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentAdministrationParticipation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssigningEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ParticipatingEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailAddress [NVARCHAR](128) required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LoginId [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentAdministrationPeriod #

Owning UDM entry: AssessmentAdministration

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentAdministration. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssigningEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentAssessedGradeLevel #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentBatteryPart #

Owning UDM entry: AssessmentBatteryPart

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentBatteryPart. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentBatteryPartName [NVARCHAR](65) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentBatteryPartObjectiveAssessment #

Owning UDM entry: AssessmentBatteryPart

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentBatteryPart. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentBatteryPartName [NVARCHAR](65) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentCategoryDescriptor #

Owning UDM entry: AssessmentCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentContentStandard #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
MandatingEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
PublicationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
PublicationStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PublicationYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
Title [NVARCHAR](100) required Ed-Fi SQL source EITD-000 pass-through
URI [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
Version [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentContentStandardAuthor #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
Author [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentIdentificationCode #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AssigningOrganizationIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentIdentificationSystemDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentIdentificationSystem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentItem #

Owning UDM entry: AssessmentItem

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentItem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentItemCategoryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AssessmentItemURI [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
ExpectedTimeAssessed [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
ItemText [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
MaxRawScore [DECIMAL](15, 5) nullable Ed-Fi SQL source EITD-000 pass-through
Nomenclature [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentItemCategoryDescriptor #

Owning UDM entry: AssessmentItemCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentItemCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentItemCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentItemLearningStandard #

Owning UDM entry: AssessmentItem

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentItem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentItemPossibleResponse #

Owning UDM entry: AssessmentItem

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentItem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ResponseValue [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CorrectResponse [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ResponseDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentItemResultDescriptor #

Owning UDM entry: AssessmentItemResult

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentItemResult. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentItemResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentLanguage #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentPerformanceLevel #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaximumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
MinimumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceLevelIndicatorName [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentPeriod #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentPeriodDescriptor #

Owning UDM entry: AssessmentPeriod

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentPeriod. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentPlatformType #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
PlatformTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentProgram #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentReportingMethodDescriptor #

Owning UDM entry: AssessmentReportingMethod

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentReportingMethod. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentScore #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaximumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
MinimumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentScoreRangeLearningStandard #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentScoreRangeLearningStandard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ScoreRangeId [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
MaximumScore [NVARCHAR](35) required Ed-Fi SQL source EITD-000 pass-through
MinimumScore [NVARCHAR](35) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentScoreRangeLearningStandardLearningStandard #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssessmentScoreRangeLearningStandard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ScoreRangeId [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssessmentSection #

Owning UDM entry: Assessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Assessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AssignmentLateStatusDescriptor #

Owning UDM entry: AssignmentLateStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AssignmentLateStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssignmentLateStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AttemptStatusDescriptor #

Owning UDM entry: AttemptStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AttemptStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AttemptStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.AttendanceEventCategoryDescriptor #

Owning UDM entry: AttendanceEventCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under AttendanceEventCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AttendanceEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BackgroundCheckStatusDescriptor #

Owning UDM entry: BackgroundCheckStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under BackgroundCheckStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BackgroundCheckStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BackgroundCheckTypeDescriptor #

Owning UDM entry: BackgroundCheckType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under BackgroundCheckType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BackgroundCheckTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BalanceSheetDimension #

Owning UDM entry: BalanceSheetDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under BalanceSheetDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
CodeName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BalanceSheetDimensionReportingTag #

Owning UDM entry: BalanceSheetDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under BalanceSheetDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BarrierToInternetAccessInResidenceDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under BarrierToInternetAccessInResidence. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BarrierToInternetAccessInResidenceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BehaviorDescriptor #

Owning UDM entry: Behavior

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Behavior. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BehaviorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BellSchedule #

Owning UDM entry: BellSchedule

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under BellSchedule. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BellScheduleName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AlternateDayName [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
EndTime [TIME](7) nullable Ed-Fi SQL source EITD-000 pass-through
StartTime [TIME](7) nullable Ed-Fi SQL source EITD-000 pass-through
TotalInstructionalTime [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BellScheduleClassPeriod #

Owning UDM entry: BellSchedule

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under BellSchedule. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BellScheduleName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ClassPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BellScheduleDate #

Owning UDM entry: BellSchedule

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under BellSchedule. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BellScheduleName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Date [DATE] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BellScheduleGradeLevel #

Owning UDM entry: BellSchedule

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under BellSchedule. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BellScheduleName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.BusRouteDescriptor #

Owning UDM entry: BusRoute

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under BusRoute. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BusRouteDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Calendar #

Owning UDM entry: Calendar

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Calendar. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CalendarCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
CalendarTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CalendarDate #

Owning UDM entry: CalendarDate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CalendarDate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CalendarCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Date [DATE] required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CalendarDateCalendarEvent #

Owning UDM entry: CalendarDate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CalendarDate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CalendarCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Date [DATE] required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
CalendarEventDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CalendarEventDescriptor #

Owning UDM entry: CalendarEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CalendarEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CalendarEventDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CalendarGradeLevel #

Owning UDM entry: Calendar

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Calendar. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CalendarCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CalendarTypeDescriptor #

Owning UDM entry: CalendarType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CalendarType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CalendarTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Candidate #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
BirthCity [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
BirthCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
BirthDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
BirthInternationalProvince [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
BirthSexDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
BirthStateAbbreviationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CitizenshipStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DateEnteredUS [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DisplacementStatus [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
EconomicDisadvantageDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EnglishLanguageExamDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
FirstGenerationStudent [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
GenderIdentity [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
GenerationCodeSuffix [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
HispanicLatinoEthnicity [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LimitedEnglishProficiencyDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LoginId [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
MaidenName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
MultipleBirthStatus [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PersonalTitlePrefix [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredFirstName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredLastSurname [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PreviousCareerDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ProfileThumbnail [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
SexDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TuitionCost [DECIMAL](19, 4) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateAddress #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
ApartmentRoomSuiteNumber [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
BuildingSiteNumber [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CongressionalDistrict [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CountyFIPSCode [NVARCHAR](5) nullable Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
LocaleDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
NameOfCounty [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateAddressCharacteristic #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateAddressPeriod #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateBackgroundCheck #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckCompletedDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckRequestedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
Fingerprint [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateCharacteristic #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
CandidateCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DesignatedBy [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateCharacteristicDescriptor #

Owning UDM entry: CandidateCharacteristic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CandidateCharacteristic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateDisability #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDeterminationSourceTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DisabilityDiagnosis [NVARCHAR](80) nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfDisability [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateDisabilityDesignation #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDesignationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateEducatorPreparationProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CandidateEducatorPreparationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ApplicantProfileIdentifier [NVARCHAR](32) nullable Ed-Fi SQL source EITD-000 pass-through
ApplicationIdentifier [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EPPProgramPathwayDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ReasonExitedDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateEducatorPreparationProgramAssociationCandidateIndicator #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CandidateEducatorPreparationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
IndicatorBeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IndicatorName [NVARCHAR](200) required Ed-Fi SQL source EITD-000 pass-through
DesignatedBy [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Indicator [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
IndicatorGroup [NVARCHAR](200) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateEducatorPreparationProgramAssociationCohortYear #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CandidateEducatorPreparationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CohortYearTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateEducatorPreparationProgramAssociationDegreeSpecialization #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CandidateEducatorPreparationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MajorSpecialization [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SpecializationBeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
MinorSpecialization [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateElectronicMail #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailAddress [NVARCHAR](128) required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryEmailAddressIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateEPPProgramDegree #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EPPDegreeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateIdentificationCode #

Owning UDM entry: CandidateIdentificationCode

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CandidateIdentificationCode. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AssigningOrganizationIdentificationCode [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateIdentificationDocument #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DocumentExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DocumentTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IssuerDocumentIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateIdentificationSystemDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CandidateIdentificationSystem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateIndicator #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
IndicatorBeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IndicatorName [NVARCHAR](200) required Ed-Fi SQL source EITD-000 pass-through
DesignatedBy [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Indicator [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
IndicatorGroup [NVARCHAR](200) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateInternationalAddress #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressLine1 [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressLine2 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine3 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine4 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CountryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateLanguage #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateLanguageUse #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateOtherName #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
OtherNameTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
GenerationCodeSuffix [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PersonalTitlePrefix [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidatePersonalIdentificationDocument #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DocumentExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DocumentTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IssuerDocumentIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateRace #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
RaceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateRelationshipToStaffAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CandidateRelationshipToStaffAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
StaffToCandidateRelationshipDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateTelephone #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumber [NVARCHAR](24) required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumberTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfPriority [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TextMessageCapabilityIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CandidateVisa #

Owning UDM entry: Candidate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Candidate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CandidateIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
VisaDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CareerPathwayDescriptor #

Owning UDM entry: CareerPathway

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CareerPathway. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CareerPathwayDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Certification #

Owning UDM entry: Certification

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Certification. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CertificationFieldDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CertificationLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CertificationStandardDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CertificationTitle [NVARCHAR](64) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
EducatorRoleDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EffectiveDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
InstructionalSettingDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MinimumDegreeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PopulationServedDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationCertificationExam #

Owning UDM entry: Certification

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Certification. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CertificationExamIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CertificationExamNamespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationExam #

Owning UDM entry: CertificationExam

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CertificationExam. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationExamIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CertificationExamTitle [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CertificationExamTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
EffectiveDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationExamResult #

Owning UDM entry: CertificationExamResult

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CertificationExamResult. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationExamDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CertificationExamIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AttemptNumber [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CertificationExamAssessmentIdentifier [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
CertificationExamNamespace [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CertificationExamPassIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CertificationExamScore [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CertificationExamStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CertificationExamStudentAssessmentIdentifier [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
CertificationExamStudentUSI [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationExamStatusDescriptor #

Owning UDM entry: CertificationExamStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CertificationExamStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationExamStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationExamTypeDescriptor #

Owning UDM entry: CertificationExamType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CertificationExamType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationExamTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationFieldDescriptor #

Owning UDM entry: CertificationField

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CertificationField. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationFieldDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationGradeLevel #

Owning UDM entry: Certification

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Certification. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationLevelDescriptor #

Owning UDM entry: CertificationLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CertificationLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationRoute #

Owning UDM entry: Certification

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Certification. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CertificationRouteDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationRouteDescriptor #

Owning UDM entry: CertificationRoute

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CertificationRoute. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationRouteDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CertificationStandardDescriptor #

Owning UDM entry: CertificationStandard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CertificationStandard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CertificationStandardDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CharterApprovalAgencyTypeDescriptor #

Owning UDM entry: CharterApprovalAgencyType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CharterApprovalAgencyType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CharterApprovalAgencyTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CharterStatusDescriptor #

Owning UDM entry: CharterStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CharterStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CharterStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ChartOfAccount #

Owning UDM entry: ChartOfAccount

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ChartOfAccount. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccountIdentifier [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
AccountName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
AccountTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BalanceSheetCode [NVARCHAR](16) nullable Ed-Fi SQL source EITD-000 pass-through
FunctionCode [NVARCHAR](16) nullable Ed-Fi SQL source EITD-000 pass-through
FundCode [NVARCHAR](16) nullable Ed-Fi SQL source EITD-000 pass-through
ObjectCode [NVARCHAR](16) nullable Ed-Fi SQL source EITD-000 pass-through
OperationalUnitCode [NVARCHAR](16) nullable Ed-Fi SQL source EITD-000 pass-through
ProgramCode [NVARCHAR](16) nullable Ed-Fi SQL source EITD-000 pass-through
ProjectCode [NVARCHAR](16) nullable Ed-Fi SQL source EITD-000 pass-through
SourceCode [NVARCHAR](16) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ChartOfAccountReportingTag #

Owning UDM entry: ChartOfAccount

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ChartOfAccount. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccountIdentifier [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TagValue [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CitizenshipStatusDescriptor #

Owning UDM entry: CitizenshipStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CitizenshipStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CitizenshipStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ClassPeriod #

Owning UDM entry: ClassPeriod

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ClassPeriod. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ClassPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
OfficialAttendancePeriod [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ClassPeriodMeetingTime #

Owning UDM entry: ClassPeriod

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ClassPeriod. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ClassPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EndTime [TIME](7) required Ed-Fi SQL source EITD-000 pass-through
StartTime [TIME](7) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ClassroomPositionDescriptor #

Owning UDM entry: ClassroomPosition

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ClassroomPosition. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ClassroomPositionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Cohort #

Owning UDM entry: Cohort

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Cohort. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CohortIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CohortDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CohortScopeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CohortTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CohortProgram #

Owning UDM entry: Cohort

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Cohort. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CohortIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CohortScopeDescriptor #

Owning UDM entry: CohortScope

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CohortScope. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CohortScopeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CohortTypeDescriptor #

Owning UDM entry: CohortType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CohortType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CohortTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CohortYearTypeDescriptor #

Owning UDM entry: CohortYearType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CohortYearType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CohortYearTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CommunityOrganization #

Owning UDM entry: CommunityOrganization

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CommunityOrganization. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CommunityOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CommunityProvider #

Owning UDM entry: CommunityProvider

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CommunityProvider. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CommunityProviderId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CommunityOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
LicenseExemptIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ProviderCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProviderProfitabilityDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ProviderStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CommunityProviderLicense #

Owning UDM entry: CommunityProviderLicense

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CommunityProviderLicense. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CommunityProviderId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
LicenseIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
LicensingOrganization [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
AuthorizedFacilityCapacity [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LicenseEffectiveDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
LicenseExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
LicenseIssueDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
LicenseStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LicenseTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
OldestAgeAuthorizedToServe [INT] nullable Ed-Fi SQL source EITD-000 pass-through
YoungestAgeAuthorizedToServe [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CompetencyLevelDescriptor #

Owning UDM entry: CompetencyLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CompetencyLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CompetencyLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CompetencyObjective #

Owning UDM entry: CompetencyObjective

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CompetencyObjective. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Objective [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ObjectiveGradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CompetencyObjectiveId [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
Description [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
SuccessCriteria [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Contact #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] IDENTITY(1,1) required Ed-Fi SQL source EITD-000 pass-through
ContactUniqueId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
GenderIdentity [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
GenerationCodeSuffix [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
HighestCompletedLevelOfEducationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LoginId [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
MaidenName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PersonalTitlePrefix [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredFirstName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredLastSurname [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
SexDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactAddress #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
ApartmentRoomSuiteNumber [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
BuildingSiteNumber [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CongressionalDistrict [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CountyFIPSCode [NVARCHAR](5) nullable Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
LocaleDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
NameOfCounty [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactAddressCharacteristic #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactAddressPeriod #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactElectronicMail #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailAddress [NVARCHAR](128) required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryEmailAddressIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactIdentificationCode #

Owning UDM entry: ContactIdentificationCode

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ContactIdentificationCode. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AssigningOrganizationIdentificationCode [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactIdentificationSystemDescriptor #

Owning UDM entry: ContactIdentificationSystem

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ContactIdentificationSystem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactInternationalAddress #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressLine1 [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressLine2 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine3 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine4 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CountryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactLanguage #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactLanguageUse #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactOtherName #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
OtherNameTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
GenerationCodeSuffix [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PersonalTitlePrefix [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactPersonalIdentificationDocument #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DocumentExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DocumentTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IssuerDocumentIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContactTelephone #

Owning UDM entry: Contact

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Contact. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumber [NVARCHAR](24) required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumberTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfPriority [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TextMessageCapabilityIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContentClassDescriptor #

Owning UDM entry: ContentClass

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ContentClass. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContentClassDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ContinuationOfServicesReasonDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ContinuationOfServicesReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContinuationOfServicesReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CostRateDescriptor #

Owning UDM entry: CostRate

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CostRate. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CostRateDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CoteachingStyleObservedDescriptor #

Owning UDM entry: CoteachingStyleObserved

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CoteachingStyleObserved. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CoteachingStyleObservedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CountryDescriptor #

Owning UDM entry: Country

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Country. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CountryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Course #

Owning UDM entry: Course

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Course. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CareerPathwayDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CourseDefinedByDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CourseDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CourseGPAApplicabilityDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CourseTitle [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
DateCourseAdopted [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
HighSchoolCourseRequirement [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
MaxCompletionsForCredit [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MaximumAvailableCreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
MaximumAvailableCredits [DECIMAL](9, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MaximumAvailableCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MinimumAvailableCreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
MinimumAvailableCredits [DECIMAL](9, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinimumAvailableCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
NumberOfParts [INT] required Ed-Fi SQL source EITD-000 pass-through
TimeRequiredForCompletion [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseAcademicSubject #

Owning UDM entry: Course

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Course. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseAttemptResultDescriptor #

Owning UDM entry: CourseAttemptResult

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseAttemptResult. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseAttemptResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseCompetencyLevel #

Owning UDM entry: Course

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Course. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CompetencyLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseDefinedByDescriptor #

Owning UDM entry: CourseDefinedBy

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseDefinedBy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseDefinedByDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseGPAApplicabilityDescriptor #

Owning UDM entry: CourseGPAApplicability

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseGPAApplicability. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseGPAApplicabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseIdentificationCode #

Owning UDM entry: Course

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Course. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CourseIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AssigningOrganizationIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
CourseCatalogURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseIdentificationSystemDescriptor #

Owning UDM entry: CourseIdentificationSystem

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseIdentificationSystem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseLearningStandard #

Owning UDM entry: Course

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Course. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseLevelCharacteristic #

Owning UDM entry: Course

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Course. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CourseLevelCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseLevelCharacteristicDescriptor #

Owning UDM entry: CourseLevelCharacteristic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseLevelCharacteristic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseLevelCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseOfferedGradeLevel #

Owning UDM entry: Course

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Course. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseOffering #

Owning UDM entry: CourseOffering

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseOffering. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InstructionalTimePlanned [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LocalCourseTitle [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseOfferingCourseLevelCharacteristic #

Owning UDM entry: CourseOffering

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseOffering. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseLevelCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseOfferingCurriculumUsed #

Owning UDM entry: CourseOffering

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseOffering. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CurriculumUsedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseOfferingOfferedGradeLevel #

Owning UDM entry: CourseOffering

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseOffering. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseRepeatCodeDescriptor #

Owning UDM entry: CourseRepeatCode

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseRepeatCode. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseRepeatCodeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseTranscript #

Owning UDM entry: CourseTranscript

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseTranscript. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseAttemptResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AlternativeCourseTitle [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
AssigningOrganizationIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
AttemptedCreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
AttemptedCredits [DECIMAL](9, 3) nullable Ed-Fi SQL source EITD-000 pass-through
AttemptedCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CourseCatalogURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CourseRepeatCodeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CourseTitle [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
EarnedCreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
EarnedCredits [DECIMAL](9, 3) nullable Ed-Fi SQL source EITD-000 pass-through
EarnedCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ExternalEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
ExternalEducationOrganizationNameOfInstitution [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
FinalLetterGradeEarned [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
FinalNumericGradeEarned [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
MethodCreditEarnedDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ResponsibleTeacherStaffUSI [INT] nullable Ed-Fi SQL source EITD-000 pass-through
WhenTakenGradeLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseTranscriptAcademicSubject #

Owning UDM entry: CourseTranscript

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseTranscript. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseAttemptResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseTranscriptAlternativeCourseIdentificationCode #

Owning UDM entry: CourseTranscript

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseTranscript. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseAttemptResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CourseIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AssigningOrganizationIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
CourseCatalogURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseTranscriptCourseProgram #

Owning UDM entry: CourseTranscript

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseTranscript. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseAttemptResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CourseProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CourseProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseTranscriptCreditCategory #

Owning UDM entry: CourseTranscript

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseTranscript. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseAttemptResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreditCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseTranscriptEarnedAdditionalCredits #

Owning UDM entry: CourseTranscript

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseTranscript. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseAttemptResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AdditionalCreditTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
Credits [DECIMAL](9, 3) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseTranscriptPartialCourseTranscriptAwards #

Owning UDM entry: CourseTranscript

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseTranscript. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseAttemptResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AwardDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EarnedCredits [DECIMAL](9, 3) required Ed-Fi SQL source EITD-000 pass-through
LetterGradeEarned [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
MethodCreditEarnedDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
NumericGradeEarned [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CourseTranscriptSection #

Owning UDM entry: CourseTranscript

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CourseTranscript. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseAttemptResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Credential #

Owning UDM entry: Credential

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Credential. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CredentialIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StateOfIssueStateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BoardCertificationIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CertificationIdentifier [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
CertificationNamespace [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CertificationRouteDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CertificationTitle [NVARCHAR](64) nullable Ed-Fi SQL source EITD-000 pass-through
CredentialFieldDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CredentialStatusDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CredentialStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CredentialTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EducatorRoleDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EffectiveDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
IssuanceDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) nullable Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TeachingCredentialBasisDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TeachingCredentialDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CredentialAcademicSubject #

Owning UDM entry: Credential

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Credential. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CredentialIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StateOfIssueStateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CredentialEndorsement #

Owning UDM entry: Credential

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Credential. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CredentialIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StateOfIssueStateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CredentialEndorsement [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CredentialEvent #

Owning UDM entry: CredentialEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CredentialEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CredentialEventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CredentialEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CredentialIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StateOfIssueStateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CredentialEventReason [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CredentialEventTypeDescriptor #

Owning UDM entry: CredentialEventType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CredentialEventType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CredentialEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CredentialFieldDescriptor #

Owning UDM entry: CredentialField

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CredentialField. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CredentialFieldDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CredentialGradeLevel #

Owning UDM entry: Credential

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Credential. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CredentialIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StateOfIssueStateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CredentialStatusDescriptor #

Owning UDM entry: CredentialStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CredentialStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CredentialStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CredentialStudentAcademicRecord #

Owning UDM entry: Credential

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Credential. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CredentialIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StateOfIssueStateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CredentialTypeDescriptor #

Owning UDM entry: CredentialType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CredentialType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CredentialTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CreditCategoryDescriptor #

Owning UDM entry: CreditCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CreditCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CreditCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CreditTypeDescriptor #

Owning UDM entry: CreditType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CreditType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CreditTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CrisisEvent #

Owning UDM entry: CrisisEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CrisisEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CrisisEventName [NVARCHAR](100) required Ed-Fi SQL source EITD-000 pass-through
CrisisDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CrisisEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CrisisStartDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CrisisTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CrisisTypeDescriptor #

Owning UDM entry: CrisisType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CrisisType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CrisisTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CTEProgramServiceDescriptor #

Owning UDM entry: CTEProgramService

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CTEProgramService. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CTEProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.CurriculumUsedDescriptor #

Owning UDM entry: CurriculumUsed

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under CurriculumUsed. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CurriculumUsedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DegreeDescriptor #

Owning UDM entry: Degree

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Degree. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DegreeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DeliveryMethodDescriptor #

Owning UDM entry: DeliveryMethod

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DeliveryMethod. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DeliveryMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DescriptorMapping #

Owning UDM entry: DescriptorMapping

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DescriptorMapping. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
MappedNamespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
MappedValue [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
Value [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DescriptorMappingModelEntity #

Owning UDM entry: DescriptorMapping

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DescriptorMapping. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
MappedNamespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
MappedValue [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
Value [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ModelEntityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DiagnosisDescriptor #

Owning UDM entry: Diagnosis

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Diagnosis. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DiagnosisDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DiplomaLevelDescriptor #

Owning UDM entry: DiplomaLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DiplomaLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DiplomaLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DiplomaTypeDescriptor #

Owning UDM entry: DiplomaType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DiplomaType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DiplomaTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisabilityDescriptor #

Owning UDM entry: Disability

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Disability. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisabilityDesignationDescriptor #

Owning UDM entry: DisabilityDesignation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisabilityDesignation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisabilityDesignationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisabilityDeterminationSourceTypeDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisabilityDeterminationSourceType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisabilityDeterminationSourceTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineAction #

Owning UDM entry: DisciplineAction

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisciplineAction. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisciplineActionIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
DisciplineDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ActualDisciplineActionLength [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
AssignmentSchoolId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
DisciplineActionLength [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
DisciplineActionLengthDifferenceReasonDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IEPPlacementMeetingIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
RelatedToZeroTolerancePolicy [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ResponsibilitySchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineActionDiscipline #

Owning UDM entry: DisciplineAction

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisciplineAction. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisciplineActionIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
DisciplineDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DisciplineDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineActionLengthDifferenceReasonDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisciplineActionLengthDifferenceReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisciplineActionLengthDifferenceReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineActionStaff #

Owning UDM entry: DisciplineAction

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisciplineAction. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisciplineActionIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
DisciplineDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineActionStudentDisciplineIncidentBehaviorAssociation #

Owning UDM entry: DisciplineAction

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisciplineAction. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisciplineActionIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
DisciplineDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BehaviorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineDescriptor #

Owning UDM entry: Discipline

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Discipline. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisciplineDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineIncident #

Owning UDM entry: DisciplineIncident

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisciplineIncident. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CaseNumber [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
IncidentCost [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
IncidentDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IncidentDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
IncidentLocationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IncidentTime [TIME](7) nullable Ed-Fi SQL source EITD-000 pass-through
ReportedToLawEnforcement [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ReporterDescriptionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ReporterName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineIncidentBehavior #

Owning UDM entry: DisciplineIncident

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisciplineIncident. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
BehaviorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BehaviorDetailedDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineIncidentExternalParticipant #

Owning UDM entry: DisciplineIncident

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisciplineIncident. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
DisciplineIncidentParticipationCodeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineIncidentParticipationCodeDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisciplineIncidentParticipationCode. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisciplineIncidentParticipationCodeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisciplineIncidentWeapon #

Owning UDM entry: DisciplineIncident

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisciplineIncident. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
WeaponDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DisplacedStudentStatusDescriptor #

Owning UDM entry: DisplacedStudentStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DisplacedStudentStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DisplacedStudentStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DualCreditInstitutionDescriptor #

Owning UDM entry: DualCreditInstitution

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DualCreditInstitution. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DualCreditInstitutionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DualCreditTypeDescriptor #

Owning UDM entry: DualCreditType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DualCreditType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DualCreditTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.DurationIntervalDescriptor #

Owning UDM entry: DurationInterval

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under DurationInterval. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
DurationIntervalDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EconomicDisadvantageDescriptor #

Owning UDM entry: EconomicDisadvantage

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EconomicDisadvantage. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EconomicDisadvantageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationalEnvironmentDescriptor #

Owning UDM entry: EducationalEnvironment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationalEnvironment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationalEnvironmentDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationContent #

Owning UDM entry: EducationContent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationContent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
AdditionalAuthorsIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ContentClassDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Cost [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
CostRateDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Description [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
InteractivityStyleDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LearningResourceMetadataURI [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
LearningStandardId [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
PublicationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
PublicationYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
Publisher [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
ShortDescription [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
TimeRequired [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
UseRightsURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
Version [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationContentAppropriateGradeLevel #

Owning UDM entry: EducationContent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationContent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationContentAppropriateSex #

Owning UDM entry: EducationContent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationContent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
SexDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationContentAuthor #

Owning UDM entry: EducationContent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationContent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
Author [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationContentDerivativeSourceEducationContent #

Owning UDM entry: EducationContent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationContent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
DerivativeSourceContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationContentDerivativeSourceLearningResourceMetadataURI #

Owning UDM entry: EducationContent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationContent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
DerivativeSourceLearningResourceMetadataURI [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationContentDerivativeSourceURI #

Owning UDM entry: EducationContent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationContent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
DerivativeSourceURI [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationContentLanguage #

Owning UDM entry: EducationContent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationContent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganization #

Owning UDM entry: EducationOrganization

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganization. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
NameOfInstitution [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
OperationalStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ShortNameOfInstitution [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
WebSite [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationAddress #

Owning UDM entry: EducationOrganization

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganization. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
ApartmentRoomSuiteNumber [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
BuildingSiteNumber [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CongressionalDistrict [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CountyFIPSCode [NVARCHAR](5) nullable Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
LocaleDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
NameOfCounty [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationAddressCharacteristic #

Owning UDM entry: EducationOrganization

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganization. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationAddressPeriod #

Owning UDM entry: EducationOrganization

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganization. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationAssociationTypeDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganizationAssociationType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationAssociationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationCategory #

Owning UDM entry: EducationOrganization

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganization. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationCategoryDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganizationCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationIdentificationCode #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganizationIdentificationCode. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AssigningOrganizationIdentificationCode [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationIdentificationSystemDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganizationIdentificationSystem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationIndicator #

Owning UDM entry: EducationOrganization

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganization. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IndicatorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DesignatedBy [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IndicatorGroupDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IndicatorLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IndicatorValue [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationIndicatorPeriod #

Owning UDM entry: EducationOrganization

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganization. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IndicatorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationInstitutionTelephone #

Owning UDM entry: EducationOrganization

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganization. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InstitutionTelephoneNumberTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumber [NVARCHAR](24) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationInternationalAddress #

Owning UDM entry: EducationOrganization

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganization. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressLine1 [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressLine2 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine3 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine4 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CountryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationInterventionPrescriptionAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganizationInterventionPrescriptionAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationNetwork #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganizationNetwork. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationNetworkId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
NetworkPurposeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationNetworkAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganizationNetworkAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationNetworkId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
MemberEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationOrganizationPeerAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationOrganizationPeerAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PeerEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationPlanDescriptor #

Owning UDM entry: EducationPlan

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationPlan. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationPlanDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducationServiceCenter #

Owning UDM entry: EducationServiceCenter

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducationServiceCenter. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationServiceCenterId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StateEducationAgencyId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducatorPreparationProgram #

Owning UDM entry: EducatorPreparationProgram

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducatorPreparationProgram. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AccreditationStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ProgramId [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducatorPreparationProgramGradeLevel #

Owning UDM entry: EducatorPreparationProgram

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducatorPreparationProgram. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EducatorRoleDescriptor #

Owning UDM entry: EducatorRole

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EducatorRole. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducatorRoleDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ElectronicMailTypeDescriptor #

Owning UDM entry: ElectronicMailType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ElectronicMailType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ElectronicMailTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EligibilityDelayReasonDescriptor #

Owning UDM entry: EligibilityDelayReason

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EligibilityDelayReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EligibilityDelayReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EligibilityEvaluationTypeDescriptor #

Owning UDM entry: EligibilityEvaluationType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EligibilityEvaluationType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EligibilityEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EmploymentStatusDescriptor #

Owning UDM entry: EmploymentStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EmploymentStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EmploymentStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EnglishLanguageExamDescriptor #

Owning UDM entry: EnglishLanguageExam

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EnglishLanguageExam. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EnglishLanguageExamDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EnrollmentTypeDescriptor #

Owning UDM entry: EnrollmentType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EnrollmentType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EnrollmentTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EntryGradeLevelReasonDescriptor #

Owning UDM entry: EntryGradeLevelReason

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EntryGradeLevelReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EntryGradeLevelReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EntryTypeDescriptor #

Owning UDM entry: EntryType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EntryType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EntryTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EPPDegreeTypeDescriptor #

Owning UDM entry: EPPDegreeType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EPPDegreeType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EPPDegreeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EPPProgramPathwayDescriptor #

Owning UDM entry: EPPProgramPathway

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EPPProgramPathway. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EPPProgramPathwayDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Evaluation #

Owning UDM entry: Evaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Evaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDescription [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
InterRaterReliabilityScore [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationDelayReasonDescriptor #

Owning UDM entry: EvaluationDelayReason

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationDelayReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationDelayReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationElement #

Owning UDM entry: EvaluationElement

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationElement. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationElementTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
SortOrder [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationElementRating #

Owning UDM entry: EvaluationElementRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationElementRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDate [DATETIME2](7) required Ed-Fi SQL source EITD-000 pass-through
EvaluationElementTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AreaOfRefinement [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
AreaOfReinforcement [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
Comments [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationElementRatingLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Feedback [NVARCHAR](2048) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationElementRatingLevel #

Owning UDM entry: EvaluationElement

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationElement. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationElementTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationRatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationElementRatingLevelDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationElementRatingLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationElementRatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationElementRatingResult #

Owning UDM entry: EvaluationElementRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationElementRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDate [DATETIME2](7) required Ed-Fi SQL source EITD-000 pass-through
EvaluationElementTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
NumericRating [DECIMAL](6, 3) required Ed-Fi SQL source EITD-000 pass-through
RatingResultTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationObjective #

Owning UDM entry: EvaluationObjective

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationObjective. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveDescription [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
SortOrder [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationObjectiveRating #

Owning UDM entry: EvaluationObjectiveRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationObjectiveRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDate [DATETIME2](7) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
Comments [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
ObjectiveRatingLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationObjectiveRatingLevel #

Owning UDM entry: EvaluationObjective

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationObjective. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationRatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationObjectiveRatingResult #

Owning UDM entry: EvaluationObjectiveRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationObjectiveRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDate [DATETIME2](7) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
NumericRating [DECIMAL](6, 3) required Ed-Fi SQL source EITD-000 pass-through
RatingResultTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationPeriodDescriptor #

Owning UDM entry: EvaluationPeriod

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationPeriod. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationRating #

Owning UDM entry: EvaluationRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDate [DATETIME2](7) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ActualDuration [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Comments [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationRatingLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationRatingStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationRatingLevel #

Owning UDM entry: Evaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Evaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationRatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationRatingLevelDescriptor #

Owning UDM entry: EvaluationRatingLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationRatingLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationRatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationRatingResult #

Owning UDM entry: EvaluationRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDate [DATETIME2](7) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
NumericRating [DECIMAL](6, 3) required Ed-Fi SQL source EITD-000 pass-through
RatingResultTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationRatingReviewer #

Owning UDM entry: EvaluationRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDate [DATETIME2](7) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
ReviewerPersonId [NVARCHAR](32) nullable Ed-Fi SQL source EITD-000 pass-through
ReviewerSourceSystemDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationRatingReviewerReceivedTraining #

Owning UDM entry: EvaluationRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDate [DATETIME2](7) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
InterRaterReliabilityScore [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ReceivedTrainingDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationRatingStatusDescriptor #

Owning UDM entry: EvaluationRatingStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationRatingStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationRatingStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationRubricDimension #

Owning UDM entry: EvaluationRubricDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationRubricDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationRubricRating [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationElementTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationCriterionDescription [NVARCHAR](1024) required Ed-Fi SQL source EITD-000 pass-through
EvaluationRubricRatingLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
RubricDimensionSortOrder [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EvaluationTypeDescriptor #

Owning UDM entry: EvaluationType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EvaluationType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EventCircumstanceDescriptor #

Owning UDM entry: EventCircumstance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EventCircumstance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EventCircumstanceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EventComplianceDescriptor #

Owning UDM entry: EventCompliance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EventCompliance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EventComplianceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.EventReasonDescriptor #

Owning UDM entry: EventReason

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under EventReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EventReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ExitWithdrawTypeDescriptor #

Owning UDM entry: ExitWithdrawType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ExitWithdrawType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ExitWithdrawTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FederalLocaleCodeDescriptor #

Owning UDM entry: FederalLocaleCode

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FederalLocaleCode. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
FederalLocaleCodeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FeederSchoolAssociation #

Owning UDM entry: FeederSchoolAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FeederSchoolAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
FeederSchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
FeederRelationshipDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FieldworkExperience #

Owning UDM entry: FieldworkExperience

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FieldworkExperience. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
FieldworkIdentifier [NVARCHAR](64) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
FieldworkTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
HoursCompleted [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FieldworkExperienceCoteaching #

Owning UDM entry: FieldworkExperience

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FieldworkExperience. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
FieldworkIdentifier [NVARCHAR](64) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CoteachingBeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CoteachingEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FieldworkExperienceSectionAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FieldworkExperienceSectionAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
FieldworkIdentifier [NVARCHAR](64) required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FieldworkTypeDescriptor #

Owning UDM entry: FieldworkType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FieldworkType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
FieldworkTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FinancialAid #

Owning UDM entry: FinancialAid

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FinancialAid. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AidTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AidAmount [DECIMAL](19, 4) nullable Ed-Fi SQL source EITD-000 pass-through
AidConditionDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
PellGrantRecipient [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FinancialCollectionDescriptor #

Owning UDM entry: FinancialCollection

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FinancialCollection. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
FinancialCollectionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FrequencyIntervalDescriptor #

Owning UDM entry: FrequencyInterval

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FrequencyInterval. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
FrequencyIntervalDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FunctionDimension #

Owning UDM entry: FunctionDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FunctionDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
CodeName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FunctionDimensionReportingTag #

Owning UDM entry: FunctionDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FunctionDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FundDimension #

Owning UDM entry: FundDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FundDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
CodeName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FundDimensionReportingTag #

Owning UDM entry: FundDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FundDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.FundingSourceDescriptor #

Owning UDM entry: FundingSource

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under FundingSource. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
FundingSourceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GeneralStudentProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GeneralStudentProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ReasonExitedDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ServedOutsideOfRegularSession [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GeneralStudentProgramAssociationProgramParticipationStatus #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GeneralStudentProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ParticipationStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StatusBeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
DesignatedBy [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
StatusEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Goal #

Owning UDM entry: Goal

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Goal. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssignmentDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
GoalTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
Comments [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CompletedDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CompletedIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
DueDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationElementTitle [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
GoalDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
GoalTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ParentAssignmentDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ParentGoalTitle [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
ParentPersonId [NVARCHAR](32) nullable Ed-Fi SQL source EITD-000 pass-through
ParentSourceSystemDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GoalTypeDescriptor #

Owning UDM entry: GoalType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GoalType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GoalTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Grade #

Owning UDM entry: Grade

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Grade. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
GradeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CurrentGradeAsOfDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CurrentGradeIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
DiagnosticStatement [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
GradeEarnedDescription [NVARCHAR](64) nullable Ed-Fi SQL source EITD-000 pass-through
LetterGradeEarned [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
NumericGradeEarned [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceBaseConversionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GradebookEntry #

Owning UDM entry: GradebookEntry

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GradebookEntry. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradebookEntryIdentifier [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
DateAssigned [DATE] required Ed-Fi SQL source EITD-000 pass-through
Description [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
DueDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DueTime [TIME](7) nullable Ed-Fi SQL source EITD-000 pass-through
GradebookEntryTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
GradingPeriodDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
MaxPoints [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
SourceSectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
Title [NVARCHAR](100) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GradebookEntryLearningStandard #

Owning UDM entry: GradebookEntry

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GradebookEntry. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradebookEntryIdentifier [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GradebookEntryTypeDescriptor #

Owning UDM entry: GradebookEntryType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GradebookEntryType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradebookEntryTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GradeLearningStandardGrade #

Owning UDM entry: Grade

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Grade. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
GradeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
DiagnosticStatement [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
LetterGradeEarned [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
NumericGradeEarned [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceBaseConversionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GradeLevelDescriptor #

Owning UDM entry: GradeLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GradeLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GradePointAverageTypeDescriptor #

Owning UDM entry: GradePointAverageType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GradePointAverageType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradePointAverageTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GradeTypeDescriptor #

Owning UDM entry: GradeType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GradeType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GradingPeriod #

Owning UDM entry: GradingPeriod

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GradingPeriod. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
PeriodSequence [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TotalInstructionalDays [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GradingPeriodDescriptor #

Owning UDM entry: GradingPeriod

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GradingPeriod. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GraduationPlan #

Owning UDM entry: GraduationPlan

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GraduationPlan. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
IndividualPlan [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
TotalRequiredCreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
TotalRequiredCredits [DECIMAL](9, 3) required Ed-Fi SQL source EITD-000 pass-through
TotalRequiredCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GraduationPlanCreditsByCourse #

Owning UDM entry: GraduationPlan

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GraduationPlan. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
CourseSetName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
Credits [DECIMAL](9, 3) required Ed-Fi SQL source EITD-000 pass-through
CreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
WhenTakenGradeLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GraduationPlanCreditsByCourseCourse #

Owning UDM entry: GraduationPlan

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GraduationPlan. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
CourseSetName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GraduationPlanCreditsByCreditCategory #

Owning UDM entry: GraduationPlan

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GraduationPlan. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
CreditCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
Credits [DECIMAL](9, 3) required Ed-Fi SQL source EITD-000 pass-through
CreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GraduationPlanCreditsBySubject #

Owning UDM entry: GraduationPlan

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GraduationPlan. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
Credits [DECIMAL](9, 3) required Ed-Fi SQL source EITD-000 pass-through
CreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GraduationPlanRequiredAssessment #

Owning UDM entry: GraduationPlan

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GraduationPlan. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GraduationPlanRequiredAssessmentPerformanceLevel #

Owning UDM entry: GraduationPlan

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GraduationPlan. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaximumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
MinimumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceLevelIndicatorName [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GraduationPlanRequiredAssessmentScore #

Owning UDM entry: GraduationPlan

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GraduationPlan. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaximumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
MinimumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GraduationPlanRequiredCertification #

Owning UDM entry: GraduationPlan

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GraduationPlan. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
CertificationTitle [NVARCHAR](64) required Ed-Fi SQL source EITD-000 pass-through
CertificationIdentifier [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
CertificationRouteDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GraduationPlanTypeDescriptor #

Owning UDM entry: GraduationPlanType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GraduationPlanType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.GunFreeSchoolsActReportingStatusDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under GunFreeSchoolsActReportingStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GunFreeSchoolsActReportingStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.HireStatusDescriptor #

Owning UDM entry: HireStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under HireStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
HireStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.HiringSourceDescriptor #

Owning UDM entry: HiringSource

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under HiringSource. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
HiringSourceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.HomelessPrimaryNighttimeResidenceDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under HomelessPrimaryNighttimeResidence. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
HomelessPrimaryNighttimeResidenceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.HomelessProgramServiceDescriptor #

Owning UDM entry: HomelessProgramService

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under HomelessProgramService. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
HomelessProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.IDEAEvent #

Owning UDM entry: IDEAEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under IDEAEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IDEAEventIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IDEAEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EventComplianceDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EventNarrative [NVARCHAR](2048) nullable Ed-Fi SQL source EITD-000 pass-through
EventReasonDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.IDEAEventTypeDescriptor #

Owning UDM entry: IDEAEventType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under IDEAEventType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IDEAEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.IDEAPartDescriptor #

Owning UDM entry: IDEAPart

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under IDEAPart. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IDEAPartDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.IdentificationDocumentUseDescriptor #

Owning UDM entry: IdentificationDocumentUse

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under IdentificationDocumentUse. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.IEPGoalTypeDescriptor #

Owning UDM entry: IEPGoalType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under IEPGoalType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IEPGoalTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.IEPStatusDescriptor #

Owning UDM entry: IEPStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under IEPStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IEPStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ImmunizationTypeDescriptor #

Owning UDM entry: ImmunizationType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ImmunizationType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ImmunizationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.IncidentLocationDescriptor #

Owning UDM entry: IncidentLocation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under IncidentLocation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IncidentLocationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.IndicatorDescriptor #

Owning UDM entry: Indicator

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Indicator. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IndicatorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.IndicatorGroupDescriptor #

Owning UDM entry: IndicatorGroup

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under IndicatorGroup. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IndicatorGroupDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.IndicatorLevelDescriptor #

Owning UDM entry: IndicatorLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under IndicatorLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IndicatorLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InstitutionTelephoneNumberTypeDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InstitutionTelephoneNumberType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
InstitutionTelephoneNumberTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InstructionalSettingDescriptor #

Owning UDM entry: InstructionalSetting

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InstructionalSetting. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
InstructionalSettingDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InteractivityStyleDescriptor #

Owning UDM entry: InteractivityStyle

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InteractivityStyle. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
InteractivityStyleDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InternetAccessDescriptor #

Owning UDM entry: InternetAccess

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InternetAccess. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
InternetAccessDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InternetAccessTypeInResidenceDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InternetAccessTypeInResidence. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
InternetAccessTypeInResidenceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InternetPerformanceInResidenceDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InternetPerformanceInResidence. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
InternetPerformanceInResidenceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Intervention #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
DeliveryMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
InterventionClassDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaxDosage [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MinDosage [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionAppropriateGradeLevel #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionAppropriateSex #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SexDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionClassDescriptor #

Owning UDM entry: InterventionClass

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionClass. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
InterventionClassDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionDiagnosis #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
DiagnosisDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionEducationContent #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionEffectivenessRatingDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionEffectivenessRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
InterventionEffectivenessRatingDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionInterventionPrescription #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionLearningResourceMetadataURI #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
LearningResourceMetadataURI [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionMeetingTime #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EndTime [TIME](7) required Ed-Fi SQL source EITD-000 pass-through
StartTime [TIME](7) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionPopulationServed #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
PopulationServedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionPrescription #

Owning UDM entry: InterventionPrescription

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionPrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
DeliveryMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
InterventionClassDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaxDosage [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MinDosage [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionPrescriptionAppropriateGradeLevel #

Owning UDM entry: InterventionPrescription

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionPrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionPrescriptionAppropriateSex #

Owning UDM entry: InterventionPrescription

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionPrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SexDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionPrescriptionDiagnosis #

Owning UDM entry: InterventionPrescription

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionPrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
DiagnosisDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionPrescriptionEducationContent #

Owning UDM entry: InterventionPrescription

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionPrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionPrescriptionLearningResourceMetadataURI #

Owning UDM entry: InterventionPrescription

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionPrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
LearningResourceMetadataURI [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionPrescriptionPopulationServed #

Owning UDM entry: InterventionPrescription

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionPrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
PopulationServedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionPrescriptionURI #

Owning UDM entry: InterventionPrescription

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionPrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
URI [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionStaff #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionStudy #

Owning UDM entry: InterventionStudy

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionStudy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionStudyIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
DeliveryMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
InterventionClassDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionPrescriptionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Participants [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionStudyAppropriateGradeLevel #

Owning UDM entry: InterventionStudy

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionStudy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionStudyIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionStudyAppropriateSex #

Owning UDM entry: InterventionStudy

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionStudy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionStudyIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SexDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionStudyEducationContent #

Owning UDM entry: InterventionStudy

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionStudy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionStudyIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
ContentIdentifier [NVARCHAR](225) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionStudyInterventionEffectiveness #

Owning UDM entry: InterventionStudy

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionStudy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionStudyIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
DiagnosisDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PopulationServedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ImprovementIndex [INT] nullable Ed-Fi SQL source EITD-000 pass-through
InterventionEffectivenessRatingDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionStudyLearningResourceMetadataURI #

Owning UDM entry: InterventionStudy

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionStudy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionStudyIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
LearningResourceMetadataURI [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionStudyPopulationServed #

Owning UDM entry: InterventionStudy

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionStudy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionStudyIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
PopulationServedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionStudyStateAbbreviation #

Owning UDM entry: InterventionStudy

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionStudy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionStudyIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionStudyURI #

Owning UDM entry: InterventionStudy

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under InterventionStudy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionStudyIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
URI [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.InterventionURI #

Owning UDM entry: Intervention

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Intervention. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
URI [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LanguageDescriptor #

Owning UDM entry: Language

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Language. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LanguageInstructionProgramServiceDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LanguageInstructionProgramService. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LanguageInstructionProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LanguageUseDescriptor #

Owning UDM entry: LanguageUse

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LanguageUse. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LanguageUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LearningStandard #

Owning UDM entry: LearningStandard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LearningStandard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CourseTitle [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
Description [NVARCHAR](1024) required Ed-Fi SQL source EITD-000 pass-through
LearningStandardCategoryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LearningStandardItemCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
LearningStandardScopeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ParentLearningStandardId [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
SuccessCriteria [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
URI [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LearningStandardAcademicSubject #

Owning UDM entry: LearningStandard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LearningStandard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LearningStandardCategoryDescriptor #

Owning UDM entry: LearningStandardCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LearningStandardCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LearningStandardCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LearningStandardContentStandard #

Owning UDM entry: LearningStandard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LearningStandard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
MandatingEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
PublicationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
PublicationStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PublicationYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
Title [NVARCHAR](100) required Ed-Fi SQL source EITD-000 pass-through
URI [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
Version [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LearningStandardContentStandardAuthor #

Owning UDM entry: LearningStandard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LearningStandard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
Author [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LearningStandardEquivalenceAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LearningStandardEquivalenceAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SourceLearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
TargetLearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
EffectiveDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
LearningStandardEquivalenceStrengthDescription [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
LearningStandardEquivalenceStrengthDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LearningStandardEquivalenceStrengthDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LearningStandardEquivalenceStrength. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LearningStandardEquivalenceStrengthDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LearningStandardGradeLevel #

Owning UDM entry: LearningStandard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LearningStandard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LearningStandardIdentificationCode #

Owning UDM entry: LearningStandard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LearningStandard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ContentStandardName [NVARCHAR](65) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LearningStandardScopeDescriptor #

Owning UDM entry: LearningStandardScope

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LearningStandardScope. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LearningStandardScopeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LengthOfContractDescriptor #

Owning UDM entry: LengthOfContract

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LengthOfContract. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LengthOfContractDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LevelOfEducationDescriptor #

Owning UDM entry: LevelOfEducation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LevelOfEducation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LevelOfEducationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LicenseStatusDescriptor #

Owning UDM entry: LicenseStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LicenseStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LicenseStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LicenseTypeDescriptor #

Owning UDM entry: LicenseType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LicenseType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LicenseTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LimitedEnglishProficiencyDescriptor #

Owning UDM entry: LimitedEnglishProficiency

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LimitedEnglishProficiency. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LimitedEnglishProficiencyDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalAccount #

Owning UDM entry: LocalAccount

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalAccount. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccountIdentifier [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
AccountName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
ChartOfAccountIdentifier [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ChartOfAccountEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalAccountReportingTag #

Owning UDM entry: LocalAccount

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalAccount. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccountIdentifier [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TagValue [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalActual #

Owning UDM entry: LocalActual

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalActual. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccountIdentifier [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
AsOfDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
Amount [MONEY] required Ed-Fi SQL source EITD-000 pass-through
FinancialCollectionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalBudget #

Owning UDM entry: LocalBudget

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalBudget. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccountIdentifier [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
AsOfDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
Amount [MONEY] required Ed-Fi SQL source EITD-000 pass-through
FinancialCollectionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalContractedStaff #

Owning UDM entry: LocalContractedStaff

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalContractedStaff. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccountIdentifier [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
AsOfDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
Amount [MONEY] required Ed-Fi SQL source EITD-000 pass-through
FinancialCollectionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocaleDescriptor #

Owning UDM entry: Locale

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Locale. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocaleDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalEducationAgency #

Owning UDM entry: LocalEducationAgency

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalEducationAgency. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalEducationAgencyId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
CharterStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EducationServiceCenterId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
FederalLocaleCodeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LocalEducationAgencyCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ParentLocalEducationAgencyId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
StateEducationAgencyId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalEducationAgencyAccountability #

Owning UDM entry: LocalEducationAgency

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalEducationAgency. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalEducationAgencyId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
GunFreeSchoolsActReportingStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolChoiceImplementStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalEducationAgencyCategoryDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalEducationAgencyCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalEducationAgencyCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalEducationAgencyFederalFunds #

Owning UDM entry: LocalEducationAgency

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalEducationAgency. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalEducationAgencyId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
InnovativeDollarsSpent [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
InnovativeDollarsSpentStrategicPriorities [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
InnovativeProgramsFundsReceived [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolImprovementAllocation [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolImprovementReservedFundsPercentage [DECIMAL](5, 4) nullable Ed-Fi SQL source EITD-000 pass-through
StateAssessmentAdministrationFunding [DECIMAL](5, 4) nullable Ed-Fi SQL source EITD-000 pass-through
SupplementalEducationalServicesFundsSpent [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
SupplementalEducationalServicesPerPupilExpenditure [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalEncumbrance #

Owning UDM entry: LocalEncumbrance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalEncumbrance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccountIdentifier [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
AsOfDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
Amount [MONEY] required Ed-Fi SQL source EITD-000 pass-through
FinancialCollectionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.LocalPayroll #

Owning UDM entry: LocalPayroll

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under LocalPayroll. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AccountIdentifier [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
AsOfDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
Amount [MONEY] required Ed-Fi SQL source EITD-000 pass-through
FinancialCollectionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Location #

Owning UDM entry: Location

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Location. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ClassroomIdentificationCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
MaximumNumberOfSeats [INT] nullable Ed-Fi SQL source EITD-000 pass-through
OptimalNumberOfSeats [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.MagnetSpecialProgramEmphasisSchoolDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under MagnetSpecialProgramEmphasisSchool. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
MagnetSpecialProgramEmphasisSchoolDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.MediumOfInstructionDescriptor #

Owning UDM entry: MediumOfInstruction

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under MediumOfInstruction. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
MediumOfInstructionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.MethodCreditEarnedDescriptor #

Owning UDM entry: MethodCreditEarned

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under MethodCreditEarned. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
MethodCreditEarnedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.MigrantEducationProgramServiceDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under MigrantEducationProgramService. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
MigrantEducationProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ModelEntityDescriptor #

Owning UDM entry: ModelEntity

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ModelEntity. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ModelEntityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.MonitoredDescriptor #

Owning UDM entry: Monitored

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Monitored. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
MonitoredDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.NeglectedOrDelinquentProgramDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under NeglectedOrDelinquentProgram. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
NeglectedOrDelinquentProgramDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.NeglectedOrDelinquentProgramServiceDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under NeglectedOrDelinquentProgramService. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
NeglectedOrDelinquentProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.NetworkPurposeDescriptor #

Owning UDM entry: NetworkPurpose

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under NetworkPurpose. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
NetworkPurposeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.NonMedicalImmunizationExemptionDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under NonMedicalImmunizationExemption. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
NonMedicalImmunizationExemptionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ObjectDimension #

Owning UDM entry: ObjectDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ObjectDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
CodeName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ObjectDimensionReportingTag #

Owning UDM entry: ObjectDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ObjectDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ObjectiveAssessment #

Owning UDM entry: ObjectiveAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ObjectiveAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Description [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
MaxRawScore [DECIMAL](15, 5) nullable Ed-Fi SQL source EITD-000 pass-through
Nomenclature [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
PercentOfAssessment [DECIMAL](5, 4) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ObjectiveAssessmentAssessmentItem #

Owning UDM entry: ObjectiveAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ObjectiveAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentItemIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ObjectiveAssessmentLearningStandard #

Owning UDM entry: ObjectiveAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ObjectiveAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ObjectiveAssessmentParentObjectiveAssessment #

Owning UDM entry: ObjectiveAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ObjectiveAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ParentIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ObjectiveAssessmentPerformanceLevel #

Owning UDM entry: ObjectiveAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ObjectiveAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaximumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
MinimumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceLevelIndicatorName [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ObjectiveAssessmentScore #

Owning UDM entry: ObjectiveAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ObjectiveAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaximumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
MinimumScore [NVARCHAR](35) nullable Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ObjectiveRatingLevelDescriptor #

Owning UDM entry: ObjectiveRatingLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ObjectiveRatingLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ObjectiveRatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OpenStaffPosition #

Owning UDM entry: OpenStaffPosition

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OpenStaffPosition. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
RequisitionNumber [NVARCHAR](20) required Ed-Fi SQL source EITD-000 pass-through
DatePosted [DATE] required Ed-Fi SQL source EITD-000 pass-through
DatePostingRemoved [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EmploymentStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
FullTimeEquivalency [DECIMAL](5, 4) nullable Ed-Fi SQL source EITD-000 pass-through
FundingSourceDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
HighNeedAcademicSubject [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
IsActive [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
MaxSalary [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
MinSalary [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
OpenStaffPositionReasonDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PositionControlNumber [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
PositionTitle [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
PostingResultDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ProgramAssignmentDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
StaffClassificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TotalBudgeted [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OpenStaffPositionAcademicSubject #

Owning UDM entry: OpenStaffPosition

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OpenStaffPosition. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
RequisitionNumber [NVARCHAR](20) required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OpenStaffPositionEvent #

Owning UDM entry: OpenStaffPositionEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OpenStaffPositionEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
OpenStaffPositionEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
RequisitionNumber [NVARCHAR](20) required Ed-Fi SQL source EITD-000 pass-through
OpenStaffPositionEventStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OpenStaffPositionEventStatusDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OpenStaffPositionEventStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
OpenStaffPositionEventStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OpenStaffPositionEventTypeDescriptor #

Owning UDM entry: OpenStaffPositionEventType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OpenStaffPositionEventType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
OpenStaffPositionEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OpenStaffPositionInstructionalGradeLevel #

Owning UDM entry: OpenStaffPosition

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OpenStaffPosition. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
RequisitionNumber [NVARCHAR](20) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OpenStaffPositionReasonDescriptor #

Owning UDM entry: OpenStaffPositionReason

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OpenStaffPositionReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
OpenStaffPositionReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OperationalStatusDescriptor #

Owning UDM entry: OperationalStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OperationalStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
OperationalStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OperationalUnitDimension #

Owning UDM entry: OperationalUnitDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OperationalUnitDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
CodeName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OperationalUnitDimensionReportingTag #

Owning UDM entry: OperationalUnitDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OperationalUnitDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OrganizationDepartment #

Owning UDM entry: OrganizationDepartment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OrganizationDepartment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
OrganizationDepartmentId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ParentEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.OtherNameTypeDescriptor #

Owning UDM entry: OtherNameType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under OtherNameType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
OtherNameTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ParticipationDescriptor #

Owning UDM entry: Participation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Participation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ParticipationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ParticipationStatusDescriptor #

Owning UDM entry: ParticipationStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ParticipationStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ParticipationStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Path #

Owning UDM entry: Path

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Path. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PathName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PathMilestone #

Owning UDM entry: PathMilestone

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PathMilestone. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PathMilestoneName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathMilestoneTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PathMilestoneCode [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
PathMilestoneDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PathMilestoneStatusDescriptor #

Owning UDM entry: PathMilestoneStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PathMilestoneStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PathMilestoneStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PathMilestoneTypeDescriptor #

Owning UDM entry: PathMilestoneType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PathMilestoneType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PathMilestoneTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PathPhase #

Owning UDM entry: PathPhase

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PathPhase. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PathName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathPhaseName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathPhaseSequence [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PhasePathDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PathPhasePathMilestone #

Owning UDM entry: PathPhase

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PathPhase. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PathName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathPhaseName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathMilestoneName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathMilestoneTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PathPhaseStatusDescriptor #

Owning UDM entry: PathPhaseStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PathPhaseStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PathPhaseStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceBaseConversionDescriptor #

Owning UDM entry: PerformanceBaseConversion

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceBaseConversion. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PerformanceBaseConversionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceEvaluation #

Owning UDM entry: PerformanceEvaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceEvaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationDescription [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceEvaluationGradeLevel #

Owning UDM entry: PerformanceEvaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceEvaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceEvaluationRating #

Owning UDM entry: PerformanceEvaluationRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceEvaluationRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ActualDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ActualDuration [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ActualTime [TIME](7) nullable Ed-Fi SQL source EITD-000 pass-through
Announced [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
Comments [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CoteachingStyleObservedDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationRatingLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ScheduleDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceEvaluationRatingLevel #

Owning UDM entry: PerformanceEvaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceEvaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationRatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceEvaluationRatingLevelDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceEvaluationRatingLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PerformanceEvaluationRatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceEvaluationRatingResult #

Owning UDM entry: PerformanceEvaluationRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceEvaluationRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
NumericRating [DECIMAL](6, 3) required Ed-Fi SQL source EITD-000 pass-through
RatingResultTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceEvaluationRatingReviewer #

Owning UDM entry: PerformanceEvaluationRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceEvaluationRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
ReviewerPersonId [NVARCHAR](32) nullable Ed-Fi SQL source EITD-000 pass-through
ReviewerSourceSystemDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceEvaluationRatingReviewerReceivedTraining #

Owning UDM entry: PerformanceEvaluationRating

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceEvaluationRating. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
InterRaterReliabilityScore [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ReceivedTrainingDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceEvaluationTypeDescriptor #

Owning UDM entry: PerformanceEvaluationType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceEvaluationType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PerformanceLevelDescriptor #

Owning UDM entry: PerformanceLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PerformanceLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PerformanceLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Person #

Owning UDM entry: Person

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Person. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PersonalInformationVerificationDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PersonalInformationVerification. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PlatformTypeDescriptor #

Owning UDM entry: PlatformType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PlatformType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PlatformTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PopulationServedDescriptor #

Owning UDM entry: PopulationServed

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PopulationServed. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PopulationServedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PostingResultDescriptor #

Owning UDM entry: PostingResult

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PostingResult. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PostingResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PostSecondaryEvent #

Owning UDM entry: PostSecondaryEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PostSecondaryEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
PostSecondaryEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
PostSecondaryInstitutionId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PostSecondaryEventCategoryDescriptor #

Owning UDM entry: PostSecondaryEventCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PostSecondaryEventCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PostSecondaryEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PostSecondaryInstitution #

Owning UDM entry: PostSecondaryInstitution

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PostSecondaryInstitution. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PostSecondaryInstitutionId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AdministrativeFundingControlDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
FederalLocaleCodeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PostSecondaryInstitutionLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PostSecondaryInstitutionLevelDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PostSecondaryInstitutionLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PostSecondaryInstitutionLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PostSecondaryInstitutionMediumOfInstruction #

Owning UDM entry: PostSecondaryInstitution

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PostSecondaryInstitution. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PostSecondaryInstitutionId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
MediumOfInstructionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PreviousCareerDescriptor #

Owning UDM entry: PreviousCareer

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PreviousCareer. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PreviousCareerDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PrimaryLearningDeviceAccessDescriptor #

Owning UDM entry: PrimaryLearningDeviceAccess

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PrimaryLearningDeviceAccess. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PrimaryLearningDeviceAccessDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PrimaryLearningDeviceAwayFromSchoolDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PrimaryLearningDeviceAwayFromSchool. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PrimaryLearningDeviceAwayFromSchoolDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PrimaryLearningDeviceProviderDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PrimaryLearningDeviceProvider. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PrimaryLearningDeviceProviderDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProfessionalDevelopmentEvent #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProfessionalDevelopmentEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ProfessionalDevelopmentTitle [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
MultipleSession [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ProfessionalDevelopmentOfferedByDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProfessionalDevelopmentReason [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
Required [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
TotalHours [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProfessionalDevelopmentEventAttendance #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProfessionalDevelopmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AttendanceDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
ProfessionalDevelopmentTitle [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AttendanceEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AttendanceEventReason [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProfessionalDevelopmentOfferedByDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProfessionalDevelopmentOfferedBy. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProfessionalDevelopmentOfferedByDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProficiencyDescriptor #

Owning UDM entry: Proficiency

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Proficiency. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProficiencyDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Program #

Owning UDM entry: Program

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Program. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramId [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramAssignmentDescriptor #

Owning UDM entry: ProgramAssignment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramAssignment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramAssignmentDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramCharacteristic #

Owning UDM entry: Program

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Program. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramCharacteristicDescriptor #

Owning UDM entry: ProgramCharacteristic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramCharacteristic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramDimension #

Owning UDM entry: ProgramDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
CodeName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramDimensionReportingTag #

Owning UDM entry: ProgramDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramEvaluation #

Owning UDM entry: ProgramEvaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramEvaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationMaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationMinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationDescription [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramEvaluationElement #

Owning UDM entry: ProgramEvaluationElement

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramEvaluationElement. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationElementTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ElementMaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
ElementMinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
ElementSortOrder [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationElementDescription [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationObjectiveTitle [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramEvaluationElementProgramEvaluationLevel #

Owning UDM entry: ProgramEvaluationElement

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramEvaluationElement. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationElementTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
RatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramEvaluationLevel #

Owning UDM entry: ProgramEvaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramEvaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
RatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramEvaluationObjective #

Owning UDM entry: ProgramEvaluationObjective

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramEvaluationObjective. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ObjectiveMaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
ObjectiveMinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
ObjectiveSortOrder [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationObjectiveDescription [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramEvaluationObjectiveProgramEvaluationLevel #

Owning UDM entry: ProgramEvaluationObjective

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramEvaluationObjective. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
RatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MaxNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramEvaluationPeriodDescriptor #

Owning UDM entry: ProgramEvaluationPeriod

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramEvaluationPeriod. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramEvaluationTypeDescriptor #

Owning UDM entry: ProgramEvaluationType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramEvaluationType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramLearningStandard #

Owning UDM entry: Program

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Program. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
LearningStandardId [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramSponsor #

Owning UDM entry: Program

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Program. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramSponsorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramSponsorDescriptor #

Owning UDM entry: ProgramSponsor

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramSponsor. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramSponsorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgramTypeDescriptor #

Owning UDM entry: ProgramType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgramType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgressDescriptor #

Owning UDM entry: Progress

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Progress. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgressDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProgressLevelDescriptor #

Owning UDM entry: ProgressLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProgressLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgressLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProjectDimension #

Owning UDM entry: ProjectDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProjectDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
CodeName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProjectDimensionReportingTag #

Owning UDM entry: ProjectDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProjectDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProviderCategoryDescriptor #

Owning UDM entry: ProviderCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProviderCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProviderCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProviderProfitabilityDescriptor #

Owning UDM entry: ProviderProfitability

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProviderProfitability. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProviderProfitabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ProviderStatusDescriptor #

Owning UDM entry: ProviderStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ProviderStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProviderStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.PublicationStatusDescriptor #

Owning UDM entry: PublicationStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under PublicationStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
PublicationStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.QuantitativeMeasure #

Owning UDM entry: QuantitativeMeasure

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under QuantitativeMeasure. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationElementTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
QuantitativeMeasureIdentifier [NVARCHAR](64) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
QuantitativeMeasureDatatypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
QuantitativeMeasureTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.QuantitativeMeasureDatatypeDescriptor #

Owning UDM entry: QuantitativeMeasureDatatype

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under QuantitativeMeasureDatatype. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
QuantitativeMeasureDatatypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.QuantitativeMeasureScore #

Owning UDM entry: QuantitativeMeasureScore

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under QuantitativeMeasureScore. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDate [DATETIME2](7) required Ed-Fi SQL source EITD-000 pass-through
EvaluationElementTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
QuantitativeMeasureIdentifier [NVARCHAR](64) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ScoreValue [DECIMAL](6, 3) required Ed-Fi SQL source EITD-000 pass-through
StandardError [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.QuantitativeMeasureTypeDescriptor #

Owning UDM entry: QuantitativeMeasureType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under QuantitativeMeasureType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
QuantitativeMeasureTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.QuestionFormDescriptor #

Owning UDM entry: QuestionForm

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under QuestionForm. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
QuestionFormDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RaceDescriptor #

Owning UDM entry: Race

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Race. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RaceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RatingLevelDescriptor #

Owning UDM entry: RatingLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RatingLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ReasonExitedDescriptor #

Owning UDM entry: ReasonExited

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ReasonExited. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ReasonExitedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ReasonNotTestedDescriptor #

Owning UDM entry: ReasonNotTested

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ReasonNotTested. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ReasonNotTestedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecognitionTypeDescriptor #

Owning UDM entry: RecognitionType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecognitionType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RecognitionTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEvent #

Owning UDM entry: RecruitmentEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EventDescription [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
EventLocation [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendance #

Owning UDM entry: RecruitmentEventAttendance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
Applied [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ElectronicMailAddress [NVARCHAR](128) required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
GenderIdentity [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
GenerationCodeSuffix [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
HispanicLatinoEthnicity [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
MaidenName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
Met [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
Notes [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
PersonalTitlePrefix [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredFirstName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredLastSurname [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PreScreeningRating [INT] nullable Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Referral [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ReferredBy [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
SexDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SocialMediaNetworkName [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
SocialMediaUserName [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendanceCurrentPosition #

Owning UDM entry: RecruitmentEventAttendance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Location [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
NameOfInstitution [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
PositionTitle [NVARCHAR](100) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendanceCurrentPositionGradeLevel #

Owning UDM entry: RecruitmentEventAttendance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendanceDisability #

Owning UDM entry: RecruitmentEventAttendance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDeterminationSourceTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DisabilityDiagnosis [NVARCHAR](80) nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfDisability [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendanceDisabilityDesignation #

Owning UDM entry: RecruitmentEventAttendance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDesignationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendancePersonalIdentificationDocument #

Owning UDM entry: RecruitmentEventAttendance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DocumentExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DocumentTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IssuerDocumentIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendanceRace #

Owning UDM entry: RecruitmentEventAttendance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
RaceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendanceRecruitmentEventAttendeeQualifications #

Owning UDM entry: RecruitmentEventAttendance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
CapacityToServe [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
Eligible [BIT] required Ed-Fi SQL source EITD-000 pass-through
YearsOfServiceCurrentPlacement [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
YearsOfServiceTotal [DECIMAL](5, 2) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendanceTelephone #

Owning UDM entry: RecruitmentEventAttendance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumber [NVARCHAR](24) required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumberTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfPriority [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TextMessageCapabilityIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendanceTouchpoint #

Owning UDM entry: RecruitmentEventAttendance

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendance. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EventTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
RecruitmentEventAttendeeIdentifier [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
TouchpointContent [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
TouchpointDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventAttendeeTypeDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventAttendeeType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RecruitmentEventAttendeeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RecruitmentEventTypeDescriptor #

Owning UDM entry: RecruitmentEventType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RecruitmentEventType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RecruitmentEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RelationDescriptor #

Owning UDM entry: Relation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Relation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RelationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RepeatIdentifierDescriptor #

Owning UDM entry: RepeatIdentifier

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RepeatIdentifier. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RepeatIdentifierDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ReportCard #

Owning UDM entry: ReportCard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ReportCard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
NumberOfDaysAbsent [DECIMAL](18, 4) nullable Ed-Fi SQL source EITD-000 pass-through
NumberOfDaysInAttendance [DECIMAL](18, 4) nullable Ed-Fi SQL source EITD-000 pass-through
NumberOfDaysTardy [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ReportCardGrade #

Owning UDM entry: ReportCard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ReportCard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
GradeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ReportCardGradePointAverage #

Owning UDM entry: ReportCard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ReportCard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
GradePointAverageTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradePointAverageValue [DECIMAL](18, 4) required Ed-Fi SQL source EITD-000 pass-through
IsCumulative [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
MaxGradePointAverageValue [DECIMAL](18, 4) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ReportCardStudentCompetencyObjective #

Owning UDM entry: ReportCard

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ReportCard. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ObjectiveEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Objective [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ObjectiveGradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ReporterDescriptionDescriptor #

Owning UDM entry: ReporterDescription

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ReporterDescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ReporterDescriptionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ReportingTagDescriptor #

Owning UDM entry: ReportingTag

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ReportingTag. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ResidencyStatusDescriptor #

Owning UDM entry: ResidencyStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ResidencyStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ResidencyStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ResponseIndicatorDescriptor #

Owning UDM entry: ResponseIndicator

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ResponseIndicator. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ResponseIndicatorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ResponsibilityDescriptor #

Owning UDM entry: Responsibility

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Responsibility. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ResponsibilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RestraintEvent #

Owning UDM entry: RestraintEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RestraintEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RestraintEventIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationalEnvironmentDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IncidentIdentifier [NVARCHAR](36) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RestraintEventProgram #

Owning UDM entry: RestraintEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RestraintEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RestraintEventIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RestraintEventReason #

Owning UDM entry: RestraintEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RestraintEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RestraintEventIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
RestraintEventReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RestraintEventReasonDescriptor #

Owning UDM entry: RestraintEventReason

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RestraintEventReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RestraintEventReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ResultDatatypeTypeDescriptor #

Owning UDM entry: ResultDatatypeType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ResultDatatypeType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ResultDatatypeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RetestIndicatorDescriptor #

Owning UDM entry: RetestIndicator

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RetestIndicator. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RetestIndicatorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RubricDimension #

Owning UDM entry: RubricDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RubricDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationElementTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
RubricRating [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CriterionDescription [NVARCHAR](1024) required Ed-Fi SQL source EITD-000 pass-through
DimensionOrder [INT] nullable Ed-Fi SQL source EITD-000 pass-through
RubricRatingLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.RubricRatingLevelDescriptor #

Owning UDM entry: RubricRatingLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under RubricRatingLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
RubricRatingLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SalaryTypeDescriptor #

Owning UDM entry: SalaryType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SalaryType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SalaryTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.School #

Owning UDM entry: School

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under School. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AccreditationStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AdministrativeFundingControlDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CharterApprovalAgencyTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CharterApprovalSchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
CharterStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
FederalLocaleCodeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ImprovingSchool [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
InternetAccessDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LocalEducationAgencyId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
MagnetSpecialProgramEmphasisSchoolDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PostSecondaryInstitutionId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TitleIPartASchoolDesignationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SchoolCategory #

Owning UDM entry: School

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under School. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SchoolCategoryDescriptor #

Owning UDM entry: SchoolCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SchoolCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SchoolChoiceBasisDescriptor #

Owning UDM entry: SchoolChoiceBasis

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SchoolChoiceBasis. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolChoiceBasisDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SchoolChoiceImplementStatusDescriptor #

Owning UDM entry: SchoolChoiceImplementStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SchoolChoiceImplementStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolChoiceImplementStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SchoolFoodServiceProgramServiceDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SchoolFoodServiceProgramService. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolFoodServiceProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SchoolGradeLevel #

Owning UDM entry: School

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under School. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SchoolTypeDescriptor #

Owning UDM entry: SchoolType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SchoolType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Section #

Owning UDM entry: Section

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Section. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AvailableCreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
AvailableCredits [DECIMAL](9, 3) nullable Ed-Fi SQL source EITD-000 pass-through
AvailableCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EducationalEnvironmentDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
InstructionLanguageDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LocationClassroomIdentificationCode [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
LocationSchoolId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
MediumOfInstructionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
OfficialAttendancePeriod [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PopulationServedDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SectionName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
SectionTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SequenceOfCourse [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Section504DisabilityDescriptor #

Owning UDM entry: Section504Disability

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Section504Disability. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Section504DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SectionAttendanceTakenEvent #

Owning UDM entry: SectionAttendanceTakenEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SectionAttendanceTakenEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CalendarCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Date [DATE] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SectionCharacteristic #

Owning UDM entry: Section

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Section. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SectionCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SectionCharacteristicDescriptor #

Owning UDM entry: SectionCharacteristic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SectionCharacteristic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SectionCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SectionClassPeriod #

Owning UDM entry: Section

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Section. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
ClassPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SectionCourseLevelCharacteristic #

Owning UDM entry: Section

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Section. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CourseLevelCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SectionOfferedGradeLevel #

Owning UDM entry: Section

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Section. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SectionProgram #

Owning UDM entry: Section

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Section. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SectionTypeDescriptor #

Owning UDM entry: SectionType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SectionType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SectionTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SeparationDescriptor #

Owning UDM entry: Separation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Separation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SeparationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SeparationReasonDescriptor #

Owning UDM entry: SeparationReason

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SeparationReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SeparationReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ServiceDeliveryDescriptor #

Owning UDM entry: ServiceDelivery

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ServiceDelivery. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ServiceDeliveryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ServiceDescriptor #

Owning UDM entry: Service

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Service. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ServiceLocationTypeDescriptor #

Owning UDM entry: ServiceLocationType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ServiceLocationType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ServiceLocationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ServicePrescriptionDescriptor #

Owning UDM entry: ServicePrescription

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ServicePrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ServicePrescriptionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.ServiceProviderTypeDescriptor #

Owning UDM entry: ServiceProviderType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under ServiceProviderType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ServiceProviderTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Session #

Owning UDM entry: Session

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Session. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
TotalInstructionalDays [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SessionAcademicWeek #

Owning UDM entry: Session

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Session. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
WeekIdentifier [NVARCHAR](80) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SessionGradingPeriod #

Owning UDM entry: Session

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Session. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SexDescriptor #

Owning UDM entry: Sex

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Sex. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SexDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SourceDimension #

Owning UDM entry: SourceDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SourceDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
CodeName [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SourceDimensionReportingTag #

Owning UDM entry: SourceDimension

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SourceDimension. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Code [NVARCHAR](16) required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
ReportingTagDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SourceSystemDescriptor #

Owning UDM entry: SourceSystem

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SourceSystem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SpecialEducationExitReasonDescriptor #

Owning UDM entry: SpecialEducationExitReason

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SpecialEducationExitReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SpecialEducationExitReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SpecialEducationProgramServiceDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SpecialEducationProgramService. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SpecialEducationProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SpecialEducationSettingDescriptor #

Owning UDM entry: SpecialEducationSetting

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SpecialEducationSetting. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SpecialEducationSettingDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Staff #

Owning UDM entry: Staff

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Staff. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffUSI [INT] IDENTITY(1,1) required Ed-Fi SQL source EITD-000 pass-through
BirthDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
GenerationCodeSuffix [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
HighestCompletedLevelOfEducationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
HighlyQualifiedTeacher [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LoginId [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
MaidenName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PersonalTitlePrefix [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredFirstName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredLastSurname [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
RequisitionNumber [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
StaffUniqueId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
YearsOfPriorProfessionalExperience [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
YearsOfPriorTeachingExperience [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffAbsenceEvent #

Owning UDM entry: StaffAbsenceEvent

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffAbsenceEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AbsenceEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AbsenceEventReason [NVARCHAR](40) nullable Ed-Fi SQL source EITD-000 pass-through
HoursAbsent [DECIMAL](18, 2) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffClassificationDescriptor #

Owning UDM entry: StaffClassification

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffClassification. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffClassificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffCohortAssociation #

Owning UDM entry: StaffCohortAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffCohortAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CohortIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
StudentRecordAccess [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffCredential #

Owning UDM entry: Staff

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Staff. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CredentialIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StateOfIssueStateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDemographic #

Owning UDM entry: StaffDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CitizenshipStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
GenderIdentity [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
HispanicLatinoEthnicity [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
SexDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDemographicAncestryEthnicOrigin #

Owning UDM entry: StaffDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AncestryEthnicOriginDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDemographicIdentificationDocument #

Owning UDM entry: StaffDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DocumentExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DocumentTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IssuerDocumentIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDemographicLanguage #

Owning UDM entry: StaffDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDemographicLanguageUse #

Owning UDM entry: StaffDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDemographicRace #

Owning UDM entry: StaffDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
RaceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDemographicTribalAffiliation #

Owning UDM entry: StaffDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TribalAffiliationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDemographicVisa #

Owning UDM entry: StaffDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
VisaDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDirectory #

Owning UDM entry: StaffDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDirectoryAddress #

Owning UDM entry: StaffDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
ApartmentRoomSuiteNumber [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
BuildingSiteNumber [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CongressionalDistrict [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CountyFIPSCode [NVARCHAR](5) nullable Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
LocaleDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
NameOfCounty [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDirectoryAddressCharacteristic #

Owning UDM entry: StaffDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDirectoryAddressPeriod #

Owning UDM entry: StaffDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDirectoryElectronicMail #

Owning UDM entry: StaffDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailAddress [NVARCHAR](128) required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryEmailAddressIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDirectoryInternationalAddress #

Owning UDM entry: StaffDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressLine1 [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressLine2 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine3 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine4 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CountryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDirectoryTelephone #

Owning UDM entry: StaffDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumber [NVARCHAR](24) required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumberTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfPriority [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TextMessageCapabilityIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDisciplineIncidentAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDisciplineIncidentAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffDisciplineIncidentAssociationDisciplineIncidentParticipationCode #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffDisciplineIncidentAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DisciplineIncidentParticipationCodeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffEducationOrganizationAssignmentAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffEducationOrganizationAssignmentAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffClassificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CredentialIdentifier [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
EmploymentEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
EmploymentStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EmploymentHireDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
FullTimeEquivalency [DECIMAL](5, 4) nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfAssignment [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PositionTitle [NVARCHAR](100) nullable Ed-Fi SQL source EITD-000 pass-through
StateOfIssueStateAbbreviationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
YearsOfExperienceAtCurrentEducationOrganization [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffEducationOrganizationEmploymentAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffEducationOrganizationEmploymentAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EmploymentStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
HireDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AnnualWage [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
CredentialIdentifier [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
Department [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
FullTimeEquivalency [DECIMAL](5, 4) nullable Ed-Fi SQL source EITD-000 pass-through
HourlyWage [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
LengthOfContractDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
OfferDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ProbationCompleteDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
SeparationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SeparationReasonDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
StateOfIssueStateAbbreviationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Tenured [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
TenureTrack [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffEducationOrganizationEmploymentAssociationBackgroundCheck #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffEducationOrganizationEmploymentAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EmploymentStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
HireDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckCompletedDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckRequestedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
BackgroundCheckStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Fingerprint [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffEducationOrganizationEmploymentAssociationSalary #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffEducationOrganizationEmploymentAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EmploymentStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
HireDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
SalaryAmount [DECIMAL](19, 4) nullable Ed-Fi SQL source EITD-000 pass-through
SalaryMaxRange [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SalaryMinRange [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SalaryTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffEducationOrganizationEmploymentAssociationSeniority #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffEducationOrganizationEmploymentAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EmploymentStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
HireDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CredentialFieldDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
NameOfInstitution [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
YearsExperience [DECIMAL](5, 2) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffEducatorPreparationProgram #

Owning UDM entry: Staff

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Staff. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffEducatorPreparationProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffEducatorPreparationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
Completer [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffEducatorResearch #

Owning UDM entry: Staff

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Staff. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ResearchExperienceDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ResearchExperienceDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
ResearchExperienceTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffHighlyQualifiedAcademicSubject #

Owning UDM entry: Staff

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Staff. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffIdentificationCode #

Owning UDM entry: StaffIdentificationCode

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffIdentificationCode. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AssigningOrganizationIdentificationCode [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffIdentificationSystemDescriptor #

Owning UDM entry: StaffIdentificationSystem

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffIdentificationSystem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffLeave #

Owning UDM entry: StaffLeave

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffLeave. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StaffLeaveEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Reason [NVARCHAR](40) nullable Ed-Fi SQL source EITD-000 pass-through
SubstituteAssigned [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffLeaveEventCategoryDescriptor #

Owning UDM entry: StaffLeaveEventCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffLeaveEventCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffLeaveEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffOtherName #

Owning UDM entry: Staff

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Staff. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
OtherNameTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
GenerationCodeSuffix [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PersonalTitlePrefix [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffPersonalIdentificationDocument #

Owning UDM entry: Staff

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Staff. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DocumentExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DocumentTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IssuerDocumentIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffProgramAssociation #

Owning UDM entry: StaffProgramAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
StudentRecordAccess [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffRecognition #

Owning UDM entry: Staff

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Staff. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
RecognitionTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AchievementCategoryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AchievementCategorySystem [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
AchievementTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
Criteria [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CriteriaURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
EvidenceStatement [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
ImageURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerOriginURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
RecognitionAwardDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
RecognitionAwardExpiresDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
RecognitionDescription [NVARCHAR](80) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffSchoolAssociation #

Owning UDM entry: StaffSchoolAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffSchoolAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramAssignmentDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CalendarCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffSchoolAssociationAcademicSubject #

Owning UDM entry: StaffSchoolAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffSchoolAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramAssignmentDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AcademicSubjectDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffSchoolAssociationGradeLevel #

Owning UDM entry: StaffSchoolAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffSchoolAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ProgramAssignmentDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffSectionAssociation #

Owning UDM entry: StaffSectionAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffSectionAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ClassroomPositionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
HighlyQualifiedTeacher [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PercentageContribution [DECIMAL](5, 4) nullable Ed-Fi SQL source EITD-000 pass-through
TeacherStudentDataLinkExclusion [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StaffToCandidateRelationshipDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StaffToCandidateRelationship. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StaffToCandidateRelationshipDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StateAbbreviationDescriptor #

Owning UDM entry: StateAbbreviation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StateAbbreviation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StateEducationAgency #

Owning UDM entry: StateEducationAgency

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StateEducationAgency. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StateEducationAgencyId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FederalLocaleCodeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StateEducationAgencyAccountability #

Owning UDM entry: StateEducationAgency

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StateEducationAgency. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StateEducationAgencyId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
CTEGraduationRateInclusion [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StateEducationAgencyFederalFunds #

Owning UDM entry: StateEducationAgency

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StateEducationAgency. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StateEducationAgencyId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
FiscalYear [INT] required Ed-Fi SQL source EITD-000 pass-through
FederalProgramsFundingAllocation [MONEY] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Student #

Owning UDM entry: Student

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Student. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StudentUSI [INT] IDENTITY(1,1) required Ed-Fi SQL source EITD-000 pass-through
BirthCity [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
BirthCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
BirthDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
BirthInternationalProvince [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
BirthSexDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
BirthStateAbbreviationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DateEnteredUS [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
GenerationCodeSuffix [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
MaidenName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
MultipleBirthStatus [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PersonalTitlePrefix [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredFirstName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PreferredLastSurname [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
StudentUniqueId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAcademicRecord #

Owning UDM entry: StudentAcademicRecord

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAcademicRecord. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CumulativeAttemptedCreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
CumulativeAttemptedCredits [DECIMAL](9, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CumulativeAttemptedCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CumulativeEarnedCreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
CumulativeEarnedCredits [DECIMAL](9, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CumulativeEarnedCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ProjectedGraduationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
SessionAttemptedCreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
SessionAttemptedCredits [DECIMAL](9, 3) nullable Ed-Fi SQL source EITD-000 pass-through
SessionAttemptedCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SessionEarnedCreditConversion [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
SessionEarnedCredits [DECIMAL](9, 3) nullable Ed-Fi SQL source EITD-000 pass-through
SessionEarnedCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAcademicRecordAcademicHonor #

Owning UDM entry: StudentAcademicRecord

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAcademicRecord. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AcademicHonorCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
HonorDescription [NVARCHAR](80) required Ed-Fi SQL source EITD-000 pass-through
AchievementCategoryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AchievementCategorySystem [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
AchievementTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
Criteria [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CriteriaURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
EvidenceStatement [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
HonorAwardDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
HonorAwardExpiresDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ImageURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerOriginURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAcademicRecordClassRanking #

Owning UDM entry: StudentAcademicRecord

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAcademicRecord. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ClassRank [INT] required Ed-Fi SQL source EITD-000 pass-through
ClassRankingDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
PercentageRanking [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TotalNumberInClass [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAcademicRecordDiploma #

Owning UDM entry: StudentAcademicRecord

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAcademicRecord. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DiplomaAwardDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
DiplomaTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AchievementCategoryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AchievementCategorySystem [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
AchievementTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
Criteria [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CriteriaURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CTECompleter [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
DiplomaAwardExpiresDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DiplomaDescription [NVARCHAR](80) nullable Ed-Fi SQL source EITD-000 pass-through
DiplomaLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EvidenceStatement [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
ImageURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerOriginURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAcademicRecordGradePointAverage #

Owning UDM entry: StudentAcademicRecord

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAcademicRecord. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradePointAverageTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradePointAverageValue [DECIMAL](18, 4) required Ed-Fi SQL source EITD-000 pass-through
IsCumulative [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
MaxGradePointAverageValue [DECIMAL](18, 4) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAcademicRecordRecognition #

Owning UDM entry: StudentAcademicRecord

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAcademicRecord. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
RecognitionTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AchievementCategoryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AchievementCategorySystem [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
AchievementTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
Criteria [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CriteriaURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
EvidenceStatement [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
ImageURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerOriginURL [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
RecognitionAwardDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
RecognitionAwardExpiresDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
RecognitionDescription [NVARCHAR](80) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAcademicRecordReportCard #

Owning UDM entry: StudentAcademicRecord

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAcademicRecord. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessment #

Owning UDM entry: StudentAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AdministrationDate [DATETIME2](7) nullable Ed-Fi SQL source EITD-000 pass-through
AdministrationEndDate [DATETIME2](7) nullable Ed-Fi SQL source EITD-000 pass-through
AdministrationEnvironmentDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AdministrationLanguageDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AssessedGradeLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AssessedMinutes [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EventCircumstanceDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EventDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
PlatformTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ReasonNotTestedDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ReportedSchoolId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
ReportedSchoolIdentifier [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
RetestIndicatorDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SerialNumber [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
WhenAssessedGradeLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentAccommodation #

Owning UDM entry: StudentAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AccommodationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentEducationOrganizationAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessmentEducationOrganizationAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationAssociationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentIndicator #

Owning UDM entry: StudentAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
Indicator [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
IndicatorName [NVARCHAR](200) required Ed-Fi SQL source EITD-000 pass-through
IndicatorGroup [NVARCHAR](200) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentItem #

Owning UDM entry: StudentAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssessmentItemResultDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AssessmentResponse [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
DescriptiveFeedback [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
ItemNumber [INT] nullable Ed-Fi SQL source EITD-000 pass-through
RawScoreResult [DECIMAL](15, 5) nullable Ed-Fi SQL source EITD-000 pass-through
ResponseIndicatorDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TimeAssessed [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentPerformanceLevel #

Owning UDM entry: StudentAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceLevelIndicatorName [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentPeriod #

Owning UDM entry: StudentAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AssessmentPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentRegistration #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessmentRegistration. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssigningEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AssessmentGradeLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EntryDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
PlatformTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ReportingEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
ScheduledEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
ScheduledStudentUSI [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
TestingEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentRegistrationAssessmentAccommodation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessmentRegistration. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssigningEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AccommodationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentRegistrationAssessmentCustomization #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessmentRegistration. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssigningEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CustomizationKey [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CustomizationValue [NVARCHAR](1024) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentRegistrationBatteryPartAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessmentRegistrationBatteryPartAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentBatteryPartName [NVARCHAR](65) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssigningEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentRegistrationBatteryPartAssociationAccommodation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessmentRegistrationBatteryPartAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AdministrationIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
AssessmentBatteryPartName [NVARCHAR](65) required Ed-Fi SQL source EITD-000 pass-through
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssigningEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AccommodationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentScoreResult #

Owning UDM entry: StudentAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
Result [NVARCHAR](35) required Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentStudentObjectiveAssessment #

Owning UDM entry: StudentAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AdministrationDate [DATETIME2](7) nullable Ed-Fi SQL source EITD-000 pass-through
AdministrationEndDate [DATETIME2](7) nullable Ed-Fi SQL source EITD-000 pass-through
AssessedMinutes [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentStudentObjectiveAssessmentPerformanceLevel #

Owning UDM entry: StudentAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PerformanceLevelIndicatorName [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentAssessmentStudentObjectiveAssessmentScoreResult #

Owning UDM entry: StudentAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentAssessmentIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
AssessmentReportingMethodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
Result [NVARCHAR](35) required Ed-Fi SQL source EITD-000 pass-through
ResultDatatypeTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentCharacteristicDescriptor #

Owning UDM entry: StudentCharacteristic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentCharacteristic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StudentCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentCohortAssociation #

Owning UDM entry: StudentCohortAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentCohortAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CohortIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentCohortAssociationSection #

Owning UDM entry: StudentCohortAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentCohortAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CohortIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentCompetencyObjective #

Owning UDM entry: StudentCompetencyObjective

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentCompetencyObjective. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
ObjectiveEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Objective [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ObjectiveGradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CompetencyLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DiagnosticStatement [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentCompetencyObjectiveGeneralStudentProgramAssociation #

Owning UDM entry: StudentCompetencyObjective

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentCompetencyObjective. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
ObjectiveEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Objective [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ObjectiveGradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentCompetencyObjectiveStudentSectionAssociation #

Owning UDM entry: StudentCompetencyObjective

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentCompetencyObjective. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradingPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
GradingPeriodSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
ObjectiveEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Objective [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ObjectiveGradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentContactAssociation #

Owning UDM entry: StudentContactAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentContactAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ContactUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ContactPriority [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ContactRestrictions [NVARCHAR](250) nullable Ed-Fi SQL source EITD-000 pass-through
EmergencyContactStatus [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
LegalGuardian [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
LivesWith [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryContactStatus [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
RelationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentCTEProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentCTEProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
NonTraditionalGenderStatus [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PrivateCTEProgram [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
TechnicalSkillsAssessmentDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentCTEProgramAssociationCTEProgramService #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentCTEProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CTEProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CIPCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceBeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographic #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CitizenshipStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EconomicDisadvantageDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
GenderIdentity [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
HispanicLatinoEthnicity [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
LimitedEnglishProficiencyDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SexDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SupporterMilitaryConnectionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicAncestryEthnicOrigin #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AncestryEthnicOriginDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicDisability #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDeterminationSourceTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DisabilityDiagnosis [NVARCHAR](80) nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfDisability [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicDisabilityDesignation #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDesignationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicIdentificationDocument #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DocumentExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DocumentTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IssuerDocumentIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicLanguage #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicLanguageUse #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicRace #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
RaceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicStudentCharacteristic #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DesignatedBy [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicStudentCharacteristicPeriod #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicTribalAffiliation #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TribalAffiliationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDemographicVisa #

Owning UDM entry: StudentDemographic

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDemographic. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
VisaDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDirectory #

Owning UDM entry: StudentDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDirectoryAddress #

Owning UDM entry: StudentDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
ApartmentRoomSuiteNumber [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
BuildingSiteNumber [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CongressionalDistrict [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CountyFIPSCode [NVARCHAR](5) nullable Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
LocaleDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
NameOfCounty [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDirectoryAddressCharacteristic #

Owning UDM entry: StudentDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressCharacteristicDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDirectoryAddressPeriod #

Owning UDM entry: StudentDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
City [NVARCHAR](30) required Ed-Fi SQL source EITD-000 pass-through
PostalCode [NVARCHAR](17) required Ed-Fi SQL source EITD-000 pass-through
StateAbbreviationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StreetNumberName [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDirectoryElectronicMail #

Owning UDM entry: StudentDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailAddress [NVARCHAR](128) required Ed-Fi SQL source EITD-000 pass-through
ElectronicMailTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryEmailAddressIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDirectoryInternationalAddress #

Owning UDM entry: StudentDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AddressLine1 [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
AddressLine2 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine3 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
AddressLine4 [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CountryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Latitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
Longitude [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDirectoryTelephone #

Owning UDM entry: StudentDirectory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDirectory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumber [NVARCHAR](24) required Ed-Fi SQL source EITD-000 pass-through
TelephoneNumberTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DoNotPublishIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfPriority [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TextMessageCapabilityIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDisciplineIncidentBehaviorAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDisciplineIncidentBehaviorAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BehaviorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BehaviorDetailedDescription [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDisciplineIncidentBehaviorAssociationDisciplineIncidentParticipationCode #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDisciplineIncidentBehaviorAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BehaviorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DisciplineIncidentParticipationCodeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDisciplineIncidentBehaviorAssociationWeapon #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDisciplineIncidentBehaviorAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BehaviorDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
WeaponDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDisciplineIncidentNonOffenderAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDisciplineIncidentNonOffenderAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentDisciplineIncidentNonOffenderAssociationDisciplineIncidentParticipationCode #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentDisciplineIncidentNonOffenderAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
IncidentIdentifier [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DisciplineIncidentParticipationCodeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentEducationOrganizationAssessmentAccommodation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentEducationOrganizationAssessmentAccommodation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentEducationOrganizationAssessmentAccommodationGeneralAccommodation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentEducationOrganizationAssessmentAccommodation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AccommodationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentEducationOrganizationAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentEducationOrganizationAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BarrierToInternetAccessInResidenceDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
InternetAccessInResidence [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
InternetAccessTypeInResidenceDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
InternetPerformanceInResidenceDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
LoginId [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryLearningDeviceAccessDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryLearningDeviceAwayFromSchoolDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryLearningDeviceProviderDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ProfileThumbnail [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentEducationOrganizationAssociationCohortYear #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentEducationOrganizationAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CohortYearTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentEducationOrganizationAssociationDisplacedStudent #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentEducationOrganizationAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CrisisEventName [NVARCHAR](100) required Ed-Fi SQL source EITD-000 pass-through
CrisisHomelessnessIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
DisplacedStudentEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DisplacedStudentStartDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DisplacedStudentStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentEducationOrganizationAssociationStudentIndicator #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentEducationOrganizationAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IndicatorName [NVARCHAR](200) required Ed-Fi SQL source EITD-000 pass-through
DesignatedBy [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
Indicator [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
IndicatorGroup [NVARCHAR](200) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentEducationOrganizationAssociationStudentIndicatorPeriod #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentEducationOrganizationAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IndicatorName [NVARCHAR](200) required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentEducationOrganizationResponsibilityAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentEducationOrganizationResponsibilityAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ResponsibilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ResponsibleEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentGradebookEntry #

Owning UDM entry: StudentGradebookEntry

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentGradebookEntry. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
GradebookEntryIdentifier [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AssignmentLateStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
AssignmentPassed [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CompetencyLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DateCompleted [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DateFulfilled [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DiagnosticStatement [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
LetterGradeEarned [NVARCHAR](20) nullable Ed-Fi SQL source EITD-000 pass-through
NumericGradeEarned [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
PointsEarned [DECIMAL](9, 2) nullable Ed-Fi SQL source EITD-000 pass-through
SubmissionStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TimeFulfilled [TIME](7) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentHealth #

Owning UDM entry: StudentHealth

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentHealth. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AsOfDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
NonMedicalImmunizationExemptionDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
NonMedicalImmunizationExemptionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentHealthAdditionalImmunization #

Owning UDM entry: StudentHealth

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentHealth. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ImmunizationName [NVARCHAR](100) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentHealthAdditionalImmunizationDate #

Owning UDM entry: StudentHealth

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentHealth. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ImmunizationName [NVARCHAR](100) required Ed-Fi SQL source EITD-000 pass-through
ImmunizationDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentHealthRequiredImmunization #

Owning UDM entry: StudentHealth

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentHealth. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ImmunizationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MedicalExemption [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
MedicalExemptionDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentHealthRequiredImmunizationDate #

Owning UDM entry: StudentHealth

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentHealth. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ImmunizationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ImmunizationDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentHomelessProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentHomelessProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AwaitingFosterCare [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
HomelessPrimaryNighttimeResidenceDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
HomelessUnaccompaniedYouth [BIT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentHomelessProgramAssociationHomelessProgramService #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentHomelessProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
HomelessProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PrimaryIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceBeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIdentificationCode #

Owning UDM entry: StudentIdentificationCode

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIdentificationCode. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AssigningOrganizationIdentificationCode [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIdentificationSystemDescriptor #

Owning UDM entry: StudentIdentificationSystem

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIdentificationSystem. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StudentIdentificationSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEP #

Owning UDM entry: StudentIEP

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEP. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IEPAmendedDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
IEPBeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IEPEndDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IEPStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
MedicallyFragile [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
MultiplyDisabled [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ReasonExitedDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolHoursPerWeek [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
SpecialEducationHoursPerWeek [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
SpecialEducationSettingDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPAccommodation #

Owning UDM entry: StudentIEP

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEP. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AccommodationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPDisability #

Owning UDM entry: StudentIEP

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEP. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDeterminationSourceTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DisabilityDiagnosis [NVARCHAR](80) nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfDisability [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPDisabilityDesignation #

Owning UDM entry: StudentIEP

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEP. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDesignationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPGoal #

Owning UDM entry: StudentIEPGoal

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEPGoal. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IEPGoalIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IEPGoalDetails [NVARCHAR](2048) required Ed-Fi SQL source EITD-000 pass-through
IEPGoalTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPGoalAchievementPeriod #

Owning UDM entry: StudentIEPGoal

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEPGoal. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IEPGoalIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPGoalIDEAEvent #

Owning UDM entry: StudentIEPGoal

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEPGoal. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IEPGoalIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IDEAEventIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IDEAEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPIDEAEvent #

Owning UDM entry: StudentIEP

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEP. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IDEAEventIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IDEAEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPServiceDelivery #

Owning UDM entry: StudentIEPServiceDelivery

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEPServiceDelivery. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IEPServiceDeliveryIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
ServiceDeliveryDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ServiceDeliveryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ServicePrescriptionDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ServicePrescriptionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPServiceDeliveryIDEAEvent #

Owning UDM entry: StudentIEPServiceDelivery

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEPServiceDelivery. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IEPServiceDeliveryIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
ServiceDeliveryDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ServiceDeliveryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IDEAEventIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IDEAEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPServiceDeliveryProvider #

Owning UDM entry: StudentIEPServiceDelivery

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEPServiceDelivery. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
IEPServiceDeliveryIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
ServiceDeliveryDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ServiceDeliveryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PrimaryProvider [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ProviderCode [NVARCHAR](16) nullable Ed-Fi SQL source EITD-000 pass-through
ServiceProviderTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPServicePrescription #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEPServicePrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ServicePrescriptionDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ServicePrescriptionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
Duration [INT] required Ed-Fi SQL source EITD-000 pass-through
DurationIntervalDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Frequency [DECIMAL](9, 2) required Ed-Fi SQL source EITD-000 pass-through
FrequencyIntervalDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ServiceLocationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPServicePrescriptionIDEAEvent #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEPServicePrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ServicePrescriptionDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ServicePrescriptionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IDEAEventIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
IDEAEventTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentIEPServicePrescriptionStaff #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentIEPServicePrescription. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
IEPFinalizedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ServicePrescriptionDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ServicePrescriptionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentIEPIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentInterventionAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentInterventionAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CohortIdentifier [NVARCHAR](36) nullable Ed-Fi SQL source EITD-000 pass-through
CohortEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
DiagnosticStatement [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
Dosage [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentInterventionAssociationInterventionEffectiveness #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentInterventionAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DiagnosisDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
GradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PopulationServedDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ImprovementIndex [INT] nullable Ed-Fi SQL source EITD-000 pass-through
InterventionEffectivenessRatingDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentInterventionAttendanceEvent #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentInterventionAttendanceEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AttendanceEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
InterventionIdentificationCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AttendanceEventReason [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
EducationalEnvironmentDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EventDuration [DECIMAL](3, 2) nullable Ed-Fi SQL source EITD-000 pass-through
InterventionDuration [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentLanguageInstructionProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentLanguageInstructionProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
Dosage [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EnglishLearnerParticipation [BIT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentLanguageInstructionProgramAssociationEnglishLanguageProficiencyAssessment #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentLanguageInstructionProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
MonitoredDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ParticipationDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ProficiencyDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ProgressDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentLanguageInstructionProgramAssociationLanguageInstructionProgramService #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentLanguageInstructionProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
LanguageInstructionProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PrimaryIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceBeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentMigrantEducationProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentMigrantEducationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ContinuationOfServicesReasonDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EligibilityExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
LastQualifyingMove [DATE] required Ed-Fi SQL source EITD-000 pass-through
PriorityForServices [BIT] required Ed-Fi SQL source EITD-000 pass-through
QualifyingArrivalDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
StateResidencyDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
USInitialEntry [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
USInitialSchoolEntry [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
USMostRecentEntry [DATE] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentMigrantEducationProgramAssociationMigrantEducationProgramService #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentMigrantEducationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
MigrantEducationProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PrimaryIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceBeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentNeglectedOrDelinquentProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentNeglectedOrDelinquentProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ELAProgressLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MathematicsProgressLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
NeglectedOrDelinquentProgramDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentNeglectedOrDelinquentProgramAssociationNeglectedOrDelinquentProgramService #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentNeglectedOrDelinquentProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
NeglectedOrDelinquentProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PrimaryIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceBeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentOtherName #

Owning UDM entry: Student

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Student. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
OtherNameTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
FirstName [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
GenerationCodeSuffix [NVARCHAR](10) nullable Ed-Fi SQL source EITD-000 pass-through
LastSurname [NVARCHAR](75) required Ed-Fi SQL source EITD-000 pass-through
MiddleName [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PersonalTitlePrefix [NVARCHAR](30) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentPath #

Owning UDM entry: StudentPath

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentPath. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PathName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentPathMilestoneStatus #

Owning UDM entry: StudentPathMilestoneStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentPathMilestoneStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PathMilestoneName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathMilestoneTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PathName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CompletionIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
PathPhaseName [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentPathMilestoneStatusEvent #

Owning UDM entry: StudentPathMilestoneStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentPathMilestoneStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PathMilestoneName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathMilestoneTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PathName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
Description [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
PathMilestoneStatusDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
PathMilestoneStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentPathPeriod #

Owning UDM entry: StudentPath

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentPath. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PathName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentPathPhaseStatus #

Owning UDM entry: StudentPathPhaseStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentPathPhaseStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PathName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathPhaseName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CompletionIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentPathPhaseStatusEvent #

Owning UDM entry: StudentPathPhaseStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentPathPhaseStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PathName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathPhaseName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
PathPhaseStatusDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
PathPhaseStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentPathPhaseStatusPeriod #

Owning UDM entry: StudentPathPhaseStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentPathPhaseStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
PathName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
PathPhaseName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentPersonalIdentificationDocument #

Owning UDM entry: Student

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Student. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IdentificationDocumentUseDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonalInformationVerificationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DocumentExpirationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
DocumentTitle [NVARCHAR](60) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerCountryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
IssuerDocumentIdentificationCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
IssuerName [NVARCHAR](150) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentProgramAssociation #

Owning UDM entry: StudentProgramAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentProgramAssociationService #

Owning UDM entry: StudentProgramAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PrimaryIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceBeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentProgramAttendanceEvent #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentProgramAttendanceEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AttendanceEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AttendanceEventReason [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
EducationalEnvironmentDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EventDuration [DECIMAL](3, 2) nullable Ed-Fi SQL source EITD-000 pass-through
ProgramAttendanceDuration [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentProgramEvaluation #

Owning UDM entry: StudentProgramEvaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentProgramEvaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationDuration [INT] nullable Ed-Fi SQL source EITD-000 pass-through
StaffEvaluatorStaffUSI [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SummaryEvaluationComment [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
SummaryEvaluationNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
SummaryEvaluationRatingLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentProgramEvaluationExternalEvaluator #

Owning UDM entry: StudentProgramEvaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentProgramEvaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ExternalEvaluator [NVARCHAR](150) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentProgramEvaluationStudentEvaluationElement #

Owning UDM entry: StudentProgramEvaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentProgramEvaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationElementTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationElementNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationElementRatingLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentProgramEvaluationStudentEvaluationObjective #

Owning UDM entry: StudentProgramEvaluation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentProgramEvaluation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EvaluationDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveNumericRating [DECIMAL](6, 3) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveRatingLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSchoolAssociation #

Owning UDM entry: StudentSchoolAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSchoolAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EntryDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
CalendarCode [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
ClassOfSchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
EmployedWhileEnrolled [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
EnrollmentTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EntryGradeLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EntryGradeLevelReasonDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EntryTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ExitWithdrawDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ExitWithdrawTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
FullTimeEquivalency [DECIMAL](5, 4) nullable Ed-Fi SQL source EITD-000 pass-through
GraduationPlanTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
GraduationSchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
NextYearGradeLevelDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
NextYearSchoolId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
PrimarySchool [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
RepeatGradeIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ResidencyStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolChoice [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolChoiceBasisDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolChoiceTransfer [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
TermCompletionIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSchoolAssociationAlternativeGraduationPlan #

Owning UDM entry: StudentSchoolAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSchoolAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EntryDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AlternativeEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
AlternativeGraduationPlanTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
AlternativeGraduationSchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSchoolAssociationEducationPlan #

Owning UDM entry: StudentSchoolAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSchoolAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EntryDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationPlanDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSchoolAttendanceEvent #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSchoolAttendanceEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AttendanceEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ArrivalTime [TIME](7) nullable Ed-Fi SQL source EITD-000 pass-through
AttendanceEventReason [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
DepartureTime [TIME](7) nullable Ed-Fi SQL source EITD-000 pass-through
EducationalEnvironmentDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EventDuration [DECIMAL](3, 2) nullable Ed-Fi SQL source EITD-000 pass-through
SchoolAttendanceDuration [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSchoolFoodServiceProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSchoolFoodServiceProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DirectCertification [BIT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSchoolFoodServiceProgramAssociationSchoolFoodServiceProgramService #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSchoolFoodServiceProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
SchoolFoodServiceProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PrimaryIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceBeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSection504ProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSection504ProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AccommodationPlan [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
Section504DisabilityDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
Section504Eligibility [BIT] required Ed-Fi SQL source EITD-000 pass-through
Section504EligibilityDecisionDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
Section504MeetingDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSectionAssociation #

Owning UDM entry: StudentSectionAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSectionAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
AttemptStatusDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DualCreditEducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
DualCreditIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
DualCreditInstitutionDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DualCreditTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DualHighSchoolCreditIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
EndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
HomeroomIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
RepeatIdentifierDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TeacherStudentDataLinkExclusion [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSectionAssociationProgram #

Owning UDM entry: StudentSectionAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSectionAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSectionAttendanceEvent #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSectionAttendanceEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AttendanceEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ArrivalTime [TIME](7) nullable Ed-Fi SQL source EITD-000 pass-through
AttendanceEventReason [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
DepartureTime [TIME](7) nullable Ed-Fi SQL source EITD-000 pass-through
EducationalEnvironmentDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EventDuration [DECIMAL](3, 2) nullable Ed-Fi SQL source EITD-000 pass-through
SectionAttendanceDuration [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSectionAttendanceEventClassPeriod #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSectionAttendanceEvent. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
AttendanceEventCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EventDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ClassPeriodName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSpecialEducationProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSpecialEducationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
IdeaEligibility [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
IEPBeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
IEPEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
IEPEvaluationDueDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
IEPLastEvaluationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
IEPLastReviewDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
IEPReviewDueDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
MedicallyFragile [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
MultiplyDisabled [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ReductionInHoursPerWeekComparedToPeers [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
SchoolHoursPerWeek [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
ShortenedSchoolDayIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
SpecialEducationExitDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
SpecialEducationExitExplained [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
SpecialEducationExitReasonDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SpecialEducationHoursPerWeek [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
SpecialEducationSettingDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSpecialEducationProgramAssociationDisability #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSpecialEducationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDeterminationSourceTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
DisabilityDiagnosis [NVARCHAR](80) nullable Ed-Fi SQL source EITD-000 pass-through
OrderOfDisability [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSpecialEducationProgramAssociationDisabilityDesignation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSpecialEducationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
DisabilityDesignationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSpecialEducationProgramAssociationServiceProvider #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSpecialEducationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
PrimaryProvider [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSpecialEducationProgramAssociationSpecialEducationProgramService #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSpecialEducationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
SpecialEducationProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PrimaryIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceBeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSpecialEducationProgramAssociationSpecialEducationProgramServiceProvider #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSpecialEducationProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
SpecialEducationProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
PrimaryProvider [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentSpecialEducationProgramEligibilityAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentSpecialEducationProgramEligibilityAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
ConsentToEvaluationReceivedDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
ConsentToEvaluationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EligibilityConferenceDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EligibilityDelayReasonDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EligibilityDeterminationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EligibilityEvaluationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
EligibilityEvaluationTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationCompleteIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationDelayDays [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationDelayReasonDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationLateReason [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
IDEAIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
IDEAPartDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
OriginalECIServicesDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
TransitionConferenceDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
TransitionNotificationDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentTitleIPartAProgramAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentTitleIPartAProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TitleIPartAParticipantDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentTitleIPartAProgramAssociationTitleIPartAProgramService #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentTitleIPartAProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
BeginDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TitleIPartAProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PrimaryIndicator [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceBeginDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
ServiceEndDate [DATE] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentTransportation #

Owning UDM entry: StudentTransportation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentTransportation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TransportationEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SpecialAccomodationRequirements [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
TransportationPublicExpenseEligibilityTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TransportationTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentTransportationStudentBusDetails #

Owning UDM entry: StudentTransportation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentTransportation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TransportationEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
BusNumber [NVARCHAR](36) required Ed-Fi SQL source EITD-000 pass-through
BusRouteDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
Mileage [DECIMAL](5, 2) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentTransportationStudentBusDetailsTravelDayofWeek #

Owning UDM entry: StudentTransportation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentTransportation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TransportationEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
TravelDayofWeekDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.StudentTransportationStudentBusDetailsTravelDirection #

Owning UDM entry: StudentTransportation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under StudentTransportation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
StudentUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
TransportationEducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
TravelDirectionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SubmissionStatusDescriptor #

Owning UDM entry: SubmissionStatus

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SubmissionStatus. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SubmissionStatusDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SupporterMilitaryConnectionDescriptor #

Owning UDM entry: SupporterMilitaryConnection

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SupporterMilitaryConnection. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SupporterMilitaryConnectionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.Survey #

Owning UDM entry: Survey

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Survey. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
NumberAdministered [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) nullable Ed-Fi SQL source EITD-000 pass-through
SurveyCategoryDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SurveyTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyCategoryDescriptor #

Owning UDM entry: SurveyCategory

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyCategory. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SurveyCategoryDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyCourseAssociation #

Owning UDM entry: SurveyCourseAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyCourseAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
CourseCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyLevelDescriptor #

Owning UDM entry: SurveyLevel

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyLevel. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
SurveyLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyProgramAssociation #

Owning UDM entry: SurveyProgramAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyProgramAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
ProgramName [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
ProgramTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyQuestion #

Owning UDM entry: SurveyQuestion

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyQuestion. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
QuestionCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
QuestionFormDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
QuestionText [NVARCHAR](1024) required Ed-Fi SQL source EITD-000 pass-through
SurveySectionTitle [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyQuestionMatrix #

Owning UDM entry: SurveyQuestion

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyQuestion. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
QuestionCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
MatrixElement [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
MaxRawScore [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MinRawScore [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyQuestionResponse #

Owning UDM entry: SurveyQuestionResponse

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyQuestionResponse. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
QuestionCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
Comment [NVARCHAR](1024) nullable Ed-Fi SQL source EITD-000 pass-through
NoResponse [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyQuestionResponseChoice #

Owning UDM entry: SurveyQuestion

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyQuestion. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
QuestionCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SortOrder [INT] required Ed-Fi SQL source EITD-000 pass-through
NumericValue [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TextValue [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyQuestionResponseSurveyQuestionMatrixElementResponse #

Owning UDM entry: SurveyQuestionResponse

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyQuestionResponse. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
QuestionCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
MatrixElement [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
MaxNumericResponse [INT] nullable Ed-Fi SQL source EITD-000 pass-through
MinNumericResponse [INT] nullable Ed-Fi SQL source EITD-000 pass-through
NoResponse [BIT] nullable Ed-Fi SQL source EITD-000 pass-through
NumericResponse [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TextResponse [NVARCHAR](2048) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyQuestionResponseValue #

Owning UDM entry: SurveyQuestionResponse

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyQuestionResponse. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
QuestionCode [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyQuestionResponseValueIdentifier [INT] required Ed-Fi SQL source EITD-000 pass-through
NumericResponse [INT] nullable Ed-Fi SQL source EITD-000 pass-through
TextResponse [NVARCHAR](2048) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyResponse #

Owning UDM entry: SurveyResponse

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyResponse. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
ContactUSI [INT] nullable Ed-Fi SQL source EITD-000 pass-through
ElectronicMailAddress [NVARCHAR](128) nullable Ed-Fi SQL source EITD-000 pass-through
FullName [NVARCHAR](80) nullable Ed-Fi SQL source EITD-000 pass-through
Location [NVARCHAR](75) nullable Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) nullable Ed-Fi SQL source EITD-000 pass-through
ResponseDate [DATE] required Ed-Fi SQL source EITD-000 pass-through
ResponseTime [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] nullable Ed-Fi SQL source EITD-000 pass-through
StudentUSI [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyResponseEducationOrganizationTargetAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyResponseEducationOrganizationTargetAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyResponsePersonTargetAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyResponsePersonTargetAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyResponseStaffTargetAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyResponseStaffTargetAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveyResponseSurveyLevel #

Owning UDM entry: SurveyResponse

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveyResponse. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyLevelDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveySection #

Owning UDM entry: SurveySection

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveySection. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveySectionTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
EducationOrganizationId [BIGINT] nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationElementTitle [NVARCHAR](255) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) nullable Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] nullable Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveySectionAggregateResponse #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveySectionAggregateResponse. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationDate [DATETIME2](7) required Ed-Fi SQL source EITD-000 pass-through
EvaluationElementTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
EvaluationObjectiveTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
EvaluationPeriodDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
EvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTitle [NVARCHAR](50) required Ed-Fi SQL source EITD-000 pass-through
PerformanceEvaluationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveySectionTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
ScoreValue [DECIMAL](6, 3) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveySectionAssociation #

Owning UDM entry: SurveySectionAssociation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveySectionAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
LocalCourseCode [NVARCHAR](60) required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SchoolId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
SchoolYear [SMALLINT] required Ed-Fi SQL source EITD-000 pass-through
SectionIdentifier [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SessionName [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveySectionResponse #

Owning UDM entry: SurveySectionResponse

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveySectionResponse. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveySectionTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SectionRating [DECIMAL](9, 3) nullable Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveySectionResponseEducationOrganizationTargetAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveySectionResponseEducationOrganizationTargetAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
EducationOrganizationId [BIGINT] required Ed-Fi SQL source EITD-000 pass-through
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveySectionTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveySectionResponsePersonTargetAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveySectionResponsePersonTargetAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
PersonId [NVARCHAR](32) required Ed-Fi SQL source EITD-000 pass-through
SourceSystemDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveySectionTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.SurveySectionResponseStaffTargetAssociation #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under SurveySectionResponseStaffTargetAssociation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
Namespace [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
StaffUSI [INT] required Ed-Fi SQL source EITD-000 pass-through
SurveyIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveyResponseIdentifier [NVARCHAR](120) required Ed-Fi SQL source EITD-000 pass-through
SurveySectionTitle [NVARCHAR](255) required Ed-Fi SQL source EITD-000 pass-through
CreateDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
LastModifiedDate [DATETIME] required Ed-Fi SQL source EITD-000 pass-through
Id [UNIQUEIDENTIFIER] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TeachingCredentialBasisDescriptor #

Owning UDM entry: TeachingCredentialBasis

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TeachingCredentialBasis. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TeachingCredentialBasisDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TeachingCredentialDescriptor #

Owning UDM entry: TeachingCredential

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TeachingCredential. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TeachingCredentialDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TechnicalSkillsAssessmentDescriptor #

Owning UDM entry: TechnicalSkillsAssessment

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TechnicalSkillsAssessment. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TechnicalSkillsAssessmentDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TelephoneNumberTypeDescriptor #

Owning UDM entry: TelephoneNumberType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TelephoneNumberType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TelephoneNumberTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TermDescriptor #

Owning UDM entry: Term

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Term. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TermDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TitleIPartAParticipantDescriptor #

Owning UDM entry: TitleIPartAParticipant

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TitleIPartAParticipant. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TitleIPartAParticipantDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TitleIPartAProgramServiceDescriptor #

Owning UDM entry: TitleIPartAProgramService

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TitleIPartAProgramService. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TitleIPartAProgramServiceDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TitleIPartASchoolDesignationDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TitleIPartASchoolDesignation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TitleIPartASchoolDesignationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TransportationPublicExpenseEligibilityTypeDescriptor #

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TransportationPublicExpenseEligibilityType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TransportationPublicExpenseEligibilityTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TransportationTypeDescriptor #

Owning UDM entry: TransportationType

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TransportationType. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TransportationTypeDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TravelDayofWeekDescriptor #

Owning UDM entry: TravelDayofWeek

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TravelDayofWeek. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TravelDayofWeekDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TravelDirectionDescriptor #

Owning UDM entry: TravelDirection

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TravelDirection. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TravelDirectionDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.TribalAffiliationDescriptor #

Owning UDM entry: TribalAffiliation

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under TribalAffiliation. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
TribalAffiliationDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.VisaDescriptor #

Owning UDM entry: Visa

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Visa. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
VisaDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.WeaponDescriptor #

Owning UDM entry: Weapon

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under Weapon. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
WeaponDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Ed-Fi ODS SQL snippet

edfi.WithdrawReasonDescriptor #

Owning UDM entry: WithdrawReason

Physical SQL table listed in the Ed-Fi v6.1 Handbook SQL snippet under WithdrawReason. The owning UDM entry linked above carries the semantic field definitions; this table records only the pass-through physical object name, SQL type, and nullability needed for migrations and SQL checks.

ColumnSQL TypeNullabilitySource / ITDOrigin
WithdrawReasonDescriptorId [INT] required Ed-Fi SQL source EITD-000 pass-through

Platform Gap Fills

Local Fields And Tables Added By Architecture

These rows are not Ed-Fi UDM fields. They exist because the approved architecture pins platform behavior Ed-Fi does not decide: tenant routing, local ids, roster FKs, soft deletes, governed descriptors, draft state, bulk evidence, conformance evidence, and typed Problems.

platform gap fill

edfi.canonical_record_overlay #

GAP-A1, GAP-A2, GAP-A3, EITD-103, EITD-104, EITD-109

Platform-owned fields applied to every canonical Ed-Fi UDM row without changing Ed-Fi pass-through field meanings.

FieldTypeRequirednessMeaningExampleITDOrigin
tenant_id UUID required Tenant scope from the signed JWT. Ordinary Ed-Fi routes do not accept a tenant URL segment or tenant header. Example: tenant_demo architecture ITD gap fill
edfi_local_id UUID required Platform-minted row id. It is never a OneRoster sourcedId and never an Ed-Fi natural key. Example: 018f4f57-7f9a-7c49-a768-1d9bbcc88a02 architecture ITD gap fill
source_key_json JSONB required Canonical JSON object holding the Ed-Fi natural-key values exactly as written at the source boundary. {"studentUniqueId":"student-001","schoolId":255901001,"eventDate":"2026-02-04"} architecture ITD gap fill
student_sourced_id TEXT conditional OneRoster user.sourcedId when the UDM row references a student. Example: student-001 architecture ITD gap fill
staff_sourced_id TEXT conditional OneRoster user.sourcedId when the UDM row references staff. Example: staff-example-001 architecture ITD gap fill
school_sourced_id TEXT conditional OneRoster org.sourcedId when the UDM row references a school or education organization. Example: school-north-valley architecture ITD gap fill
class_sourced_id TEXT conditional OneRoster class.sourcedId when the UDM row references an Ed-Fi Section/Class anchor. `acmesis_class_sourced_id` and `section_sourced_id` are accepted only as write compatibility aliases and normalize to this field; reads and storage use `class_sourced_id` only. Example: class-math7-p2 architecture ITD gap fill
ack_id TEXT required after canonical commit Platform acknowledgement id returned only after all validation, roster, descriptor, tenant, and privacy checks pass. Example: ack_edfi_01J2ABC architecture ITD gap fill
etag TEXT required on canonical detail reads Optimistic concurrency validator returned on detail reads and required by overwriting writes. Example: "W/\"edfi-4e66a\"" architecture ITD gap fill
created_at TIMESTAMPTZ required Timestamp when the platform first accepted this local row. Example: 2026-06-03T19:40:00Z architecture ITD gap fill
updated_at TIMESTAMPTZ required Timestamp used by modifiedSince filters. It advances on canonical value, descriptor, soft-delete, and privacy-redaction changes. Example: 2026-06-03T19:45:20Z architecture ITD gap fill
is_deleted BOOLEAN required, default false Visibility flag for soft deletion. Ordinary lists exclude true rows unless includeDeleted=true is authorized. Example: false architecture ITD gap fill
deleted_at TIMESTAMPTZ nullable When the record became soft-deleted. Example: 2026-06-10T13:02:01Z architecture ITD gap fill
deleted_by TEXT nullable Actor or job id that caused the soft delete. Must not contain secrets or raw request bodies. Example: import_job_2026_06_10 architecture ITD gap fill
deleted_reason TEXT nullable Short audit-safe reason. Detailed source payloads stay out of this field. Example: replaced by corrected import row architecture ITD gap fill
delete_source TEXT enum nullable One of api, import, correction, retention_policy. Example: import architecture ITD gap fill

platform gap fill

edfi.edfi_draft_record #

GAP-A5

Pre-canonical store for administrative records entered by apps or imports before platform3 validation returns an ack_id and ETag.

FieldTypeRequirednessMeaningExampleITDOrigin
draft_id UUID required Platform-minted draft id. Not a canonical row id and never accepted as an Ed-Fi natural key. Example: 018f4f61-2fd4-70ae-8f55-90e69ed9a991 architecture ITD gap fill
tenant_id UUID required Tenant scope from JWT at draft creation. Example: tenant_demo architecture ITD gap fill
resource_name TEXT required Generated Ed-Fi resource name the draft intends to become. Example: StudentSchoolAttendanceEvent architecture ITD gap fill
record_state TEXT enum required draft, rejected, canonical, or soft_deleted. Drafts are invisible to ordinary canonical lists. Example: draft architecture ITD gap fill
payload_json JSONB required The submitted Ed-Fi-shaped payload. Problems and audit logs must redact PII from this content. {"studentReference":{"studentUniqueId":"student-001"}} architecture ITD gap fill
validation_errors JSONB nullable Structured fieldErrors from the latest failed validation attempt. [{"field":"studentReference","code":"edfi:platform3_roster_required"}] architecture ITD gap fill
canonical_edfi_local_id UUID nullable until promotion The canonical row id after successful promotion. Example: 018f4f57-7f9a-7c49-a768-1d9bbcc88a02 architecture ITD gap fill
ack_id TEXT nullable until promotion Acknowledgement id emitted only after canonical promotion. Example: ack_edfi_01J2ABC architecture ITD gap fill
etag TEXT nullable until promotion ETag emitted only for canonical records. Example: "W/\"edfi-4e66a\"" architecture ITD gap fill
canonicalized_at TIMESTAMPTZ nullable Time the draft became canonical. Example: 2026-06-03T20:02:10Z architecture ITD gap fill

platform gap fill

edfi.edfi_descriptor_code #

GAP-A4

Governed tag-registry view for every Ed-Fi descriptor code list, seeded from Ed-Fi default descriptors and open to tenant-local governed values.

FieldTypeRequirednessMeaningExampleITDOrigin
tag_def_id UUID required Platform tag definition id whose anchor is edfi_descriptor. Example: tagdef-attendance-event-category architecture ITD gap fill
descriptor_type TEXT required Ed-Fi descriptor type name without the Descriptor suffix in field references. Example: AttendanceEventCategory architecture ITD gap fill
namespace TEXT required Descriptor namespace. Only uri://ed-fi.org/... values are Ed-Fi standard values. Example: uri://ed-fi.org/AttendanceEventCategoryDescriptor architecture ITD gap fill
code_value TEXT required Descriptor code as governed by namespace and descriptor_type. Example: Tardy architecture ITD gap fill
short_description TEXT required Human-readable short descriptor label. Example: Tardy architecture ITD gap fill
description TEXT nullable Longer descriptor meaning when the source supplies one. Example: Student arrived after the expected start time. architecture ITD gap fill
effective_begin_date DATE nullable First date this descriptor value may be written. Example: 2026-07-01 architecture ITD gap fill
effective_end_date DATE nullable Last date this descriptor value may be written. Null means still valid. Example: 2027-06-30 architecture ITD gap fill
standard_status TEXT enum required ed_fi_standard, district_local, platform_extension, or deprecated. Example: ed_fi_standard architecture ITD gap fill

platform gap fill

edfi.import_job #

EITD-101 / EITD-105 / EITD-110

Bulk import evidence for complete-model Ed-Fi exchange. Jobs share validation with per-resource writes and never bypass GAP-A1 through GAP-A5.

FieldTypeRequirednessMeaningExampleITDOrigin
import_job_id UUID required Platform-minted bulk import job id. Example: import-2026-06-03-01 architecture ITD gap fill
tenant_id UUID required Tenant scope from JWT or operator job context. Example: tenant_demo architecture ITD gap fill
source_format TEXT required Declared import format such as edfi-bulk-xml or edfi-json-bundle. Example: edfi-bulk-xml architecture ITD gap fill
source_hash TEXT required Hash of the import package for evidence. It does not replace Idempotency-Key on retryable commands. Example: sha256:... architecture ITD gap fill
state TEXT enum required queued, processing, completed, completed_with_errors, failed, or cancelled. Example: completed_with_errors architecture ITD gap fill
row_count INTEGER required Number of source rows or resource records seen by the importer. Example: 5821 architecture ITD gap fill
error_count INTEGER required Number of row-level failures retained in import_row. Example: 3 architecture ITD gap fill
created_at TIMESTAMPTZ required Time the import job was accepted. Example: 2026-06-03T19:40:00Z architecture ITD gap fill
completed_at TIMESTAMPTZ nullable Time the import job reached a terminal state. Example: 2026-06-03T19:52:12Z architecture ITD gap fill

platform gap fill

edfi.import_row #

EITD-101 / EITD-110

Per-row import outcome and source-key evidence. It lets integrators reconcile imports without re-running platform validation in their own code.

FieldTypeRequirednessMeaningExampleITDOrigin
import_row_id UUID required Platform-minted import row id. Example: import-row-001 architecture ITD gap fill
import_job_id UUID required Belongs to one edfi.import_job. Example: import-2026-06-03-01 architecture ITD gap fill
resource_name TEXT required Generated Ed-Fi resource name this source row targeted. Example: StudentSchoolAttendanceEvent architecture ITD gap fill
source_key_json JSONB required Natural-key values from the source row. {"studentUniqueId":"student-001","eventDate":"2026-02-04"} architecture ITD gap fill
canonical_edfi_local_id UUID nullable Canonical local id written or updated by this row, when successful. Example: 018f4f57-7f9a-7c49-a768-1d9bbcc88a02 architecture ITD gap fill
outcome TEXT required inserted, updated, soft_deleted, rejected, or skipped. Example: inserted architecture ITD gap fill
problem_code TEXT nullable Stable edfi:* code when outcome is rejected or skipped. Example: edfi:descriptor_not_governed architecture ITD gap fill

platform gap fill

edfi.export_job #

EITD-101 / EITD-110 / EITD-111

Bulk export request and evidence for authorized complete-model exchange, privacy export, and conformance snapshots.

FieldTypeRequirednessMeaningExampleITDOrigin
export_job_id UUID required Platform-minted export job id. Example: export-2026-06-03-01 architecture ITD gap fill
tenant_id UUID required Tenant scope from JWT or operator context. Example: tenant_demo architecture ITD gap fill
export_scope TEXT required Named export scope such as complete_model, changed_since, privacy_subject, or conformance_snapshot. Example: changed_since architecture ITD gap fill
modified_since TIMESTAMPTZ nullable Lower bound for changed-since exports; same semantics as list modifiedSince. Example: 2026-06-01T00:00:00Z architecture ITD gap fill
state TEXT enum required queued, processing, completed, completed_with_errors, failed, or cancelled. Example: completed architecture ITD gap fill
result_hash TEXT nullable Hash of generated export artifact for evidence. Example: sha256:... architecture ITD gap fill
redaction_summary_json JSONB nullable Counts and reasons for PII redaction. Never contains raw PII. {"studentHealth":12,"discipline":5} architecture ITD gap fill

platform gap fill

edfi.conformance_evidence #

EITD-110

Local executable evidence that the generated dictionary and implementation cover the complete UDM and platform gap-fill rules. This is not an official Ed-Fi certification claim.

FieldTypeRequirednessMeaningExampleITDOrigin
evidence_id UUID required Platform-minted evidence row id. Example: evidence-udm-coverage-2026-06-03 architecture ITD gap fill
evidence_kind TEXT required udm_coverage, descriptor_governance, roster_fk, soft_delete, draft_state, http_contract, or live_probe. Example: udm_coverage architecture ITD gap fill
artifact_url TEXT required URL or artifact path to the evidence. Must be fetchable by reviewers when public. Example: /ed_fi/1edtech/surface_qc/#udm-coverage architecture ITD gap fill
passed BOOLEAN required Whether this evidence item passed. Example: true architecture ITD gap fill
checked_at TIMESTAMPTZ required Time the evidence was produced. Example: 2026-06-03T20:10:00Z architecture ITD gap fill
notes TEXT nullable Short audit-safe note. Do not place source payloads, PII, or secrets here. Example: 1166 handbook entries covered architecture ITD gap fill

List And Query Contract

Offset Paging, Cursor Paging, Totals, And Query Errors

Shared request and response fields inherited by every generated Ed-Fi UDM collection, descriptor catalog, draft list, import/export job list, and conformance/evidence list. This section is a platform gap-fill reference, not an Ed-Fi UDM table: it exists because the approved architecture now pins Ed-Fi offset+limit paging and platform cursor paging as two documented, mutually exclusive modes. Trace: EITD-103 EITD-112.

platform gap fill

List Request Parameters #

EITD-103 / EITD-112

Every list endpoint accepts only documented filters and one paging mode. offset and cursor are mutually exclusive; combining them is invalid and returns edfi:invalid_query_parameter.

FieldTypeRequirednessMeaningConstraints / RangeExampleITDOrigin
limit INTEGER query parameter optional Maximum number of records requested for one list page in either offset or cursor mode. Positive integer. The implementation may apply a documented default and max page size. Example: limit=100 architecture ITD gap fill API contract
offset INTEGER query parameter optional; offset mode Ed-Fi-compatible zero-based page offset. Used with limit when a client wants stable offset paging. Must be a non-negative integer. Mutually exclusive with cursor. Offset responses return page.offset, page.nextOffset when another offset page exists, links.next, totalCount, page.totalCount, and the HTTP Total-Count header. Example: offset=200 architecture ITD gap fill API contract
cursor TEXT query parameter optional; cursor mode Opaque platform paging token returned by the previous cursor response. Mutually exclusive with offset. Clients must treat the value as opaque and follow links.next or page.nextCursor. Example: cursor=eyJzb3J0IjoiSWQ6MTAwIn0 architecture ITD gap fill API contract
modifiedSince TIMESTAMPTZ query parameter optional Lower bound for rows whose canonical record or overlay changed after the supplied timestamp. ISO 8601 timestamp. Applies only to collections that expose change discovery. Example: modifiedSince=2026-06-01T00:00:00Z architecture ITD gap fill API contract
sort TEXT query parameter optional Documented stable sort key or key list for the collection. Only documented sort keys are accepted. Unsupported keys return edfi:invalid_query_parameter. Example: sort=LastModifiedDate,Id architecture ITD gap fill API contract
includeDeleted BOOLEAN query parameter optional; privileged Includes GAP-A3 soft-deleted rows when the caller is authorized to inspect correction/audit history. Ordinary lists exclude soft-deleted rows. Unauthorized use returns a typed Problem rather than leaking deleted records. Example: includeDeleted=true architecture ITD gap fill API contract
documented resource filters query parameters optional Resource-specific filters generated from stable Ed-Fi identity/reference fields and documented by the customer website. Unsupported or malformed filter names/values return edfi:invalid_query_parameter. Example: schoolId=255901001&studentUniqueId=student-001 architecture ITD gap fill API contract

platform gap fill

List Response Fields #

EITD-103 / EITD-112

Totals are intentionally duplicated for client ergonomics: totalCount, page.totalCount, and the Total-Count response header carry the same integer. Next-page links use page.nextOffset in offset mode and page.nextCursor in cursor mode.

FieldTypeRequirednessMeaningConstraints / RangeExampleITDOrigin
data JSON array required List page records in Ed-Fi JSON shape plus documented platform overlay fields. Every row remains tenant-scoped by JWT. Example: [{...}] architecture ITD gap fill API contract
page.limit INTEGER required Effective limit used for this page after defaults and max-page enforcement. Positive integer. Example: 100 architecture ITD gap fill API contract
page.offset INTEGER conditional; offset mode Offset used to produce the current page. Present when the request uses offset mode. Example: 200 architecture ITD gap fill API contract
page.nextOffset INTEGER nullable; offset mode Offset for the next page when more rows remain. Null or absent when no next offset page exists. Example: 300 architecture ITD gap fill API contract
page.nextCursor TEXT nullable; cursor mode Opaque cursor for the next page when more rows remain. Clients must not parse this value. Example: eyJzb3J0IjoiSWQ6MjAwIn0 architecture ITD gap fill API contract
totalCount INTEGER required Computed count for the collection under the current filter set. Same value as page.totalCount and HTTP Total-Count. Example: 473 architecture ITD gap fill API contract
page.totalCount INTEGER required Nested copy of totalCount for clients that keep all paging fields under page. Same value as top-level totalCount and HTTP Total-Count. Example: 473 architecture ITD gap fill API contract
Total-Count INTEGER HTTP response header required Header copy of the computed total count. Same value as totalCount and page.totalCount. Example: Total-Count: 473 architecture ITD gap fill API contract
links.next URI string nullable Fully formed next-page URL for the active paging mode. Uses nextOffset in offset mode or nextCursor in cursor mode. Example: /ed-fi/studentSchoolAttendanceEvents?limit=100&offset=300 architecture ITD gap fill API contract

Allowed Values

Descriptor Values, Platform Enums, And Problem Codes

Ed-Fi descriptor seed values are rendered inline in each descriptor entry and indexed here. The finite enums below are the platform-owned values introduced by the approved architecture gap fills.

Ed-Fi Descriptor Value Index #

Each descriptor link jumps to an inline value table rendered from Ed-Fi's v6.1 default descriptor seed file. Local district values are governed through edfi.edfi_descriptor_code, not hidden in raw XML or client code.

AbsenceEventCategoryDescriptor 12 Ed-Fi seed values ยท fetched AcademicHonorCategoryDescriptor 18 Ed-Fi seed values ยท fetched AcademicSubjectDescriptor 21 Ed-Fi seed values ยท fetched AccommodationDescriptor 9 Ed-Fi seed values ยท fetched AccountTypeDescriptor 3 Ed-Fi seed values ยท fetched AccreditationStatusDescriptor 5 Ed-Fi seed values ยท fetched AchievementCategoryDescriptor 12 Ed-Fi seed values ยท fetched AdditionalCreditTypeDescriptor 5 Ed-Fi seed values ยท fetched AddressCharacteristicDescriptor 2 Ed-Fi seed values ยท fetched AddressTypeDescriptor 15 Ed-Fi seed values ยท fetched AdministrationEnvironmentDescriptor 4 Ed-Fi seed values ยท fetched AdministrativeFundingControlDescriptor 3 Ed-Fi seed values ยท fetched AidTypeDescriptor 24 Ed-Fi seed values ยท fetched AncestryEthnicOriginDescriptor 0 Ed-Fi seed values ยท missing_404 ApplicationEventResultDescriptor 6 Ed-Fi seed values ยท fetched ApplicationEventTypeDescriptor 14 Ed-Fi seed values ยท fetched ApplicationSourceDescriptor 20 Ed-Fi seed values ยท fetched ApplicationStatusDescriptor 17 Ed-Fi seed values ยท fetched AssessmentCategoryDescriptor 44 Ed-Fi seed values ยท fetched AssessmentIdentificationSystemDescriptor 8 Ed-Fi seed values ยท fetched AssessmentItemCategoryDescriptor 22 Ed-Fi seed values ยท fetched AssessmentItemResultDescriptor 6 Ed-Fi seed values ยท fetched AssessmentPeriodDescriptor 6 Ed-Fi seed values ยท fetched AssessmentReportingMethodDescriptor 44 Ed-Fi seed values ยท fetched AssignmentLateStatusDescriptor 2 Ed-Fi seed values ยท fetched AttemptStatusDescriptor 16 Ed-Fi seed values ยท fetched AttendanceEventCategoryDescriptor 7 Ed-Fi seed values ยท fetched BackgroundCheckStatusDescriptor 6 Ed-Fi seed values ยท fetched BackgroundCheckTypeDescriptor 9 Ed-Fi seed values ยท fetched BarrierToInternetAccessInResidenceDescriptor 4 Ed-Fi seed values ยท fetched BehaviorDescriptor 4 Ed-Fi seed values ยท fetched BusRouteDescriptor 0 Ed-Fi seed values ยท missing_404 CalendarEventDescriptor 10 Ed-Fi seed values ยท fetched CalendarTypeDescriptor 5 Ed-Fi seed values ยท fetched CandidateCharacteristicDescriptor 16 Ed-Fi seed values ยท fetched CandidateIdentificationSystemDescriptor 15 Ed-Fi seed values ยท fetched CareerPathwayDescriptor 17 Ed-Fi seed values ยท fetched CertificationExamStatusDescriptor 5 Ed-Fi seed values ยท fetched CertificationExamTypeDescriptor 3 Ed-Fi seed values ยท fetched CertificationFieldDescriptor 30 Ed-Fi seed values ยท fetched CertificationLevelDescriptor 8 Ed-Fi seed values ยท fetched CertificationRouteDescriptor 11 Ed-Fi seed values ยท fetched CertificationStandardDescriptor 0 Ed-Fi seed values ยท missing_404 CharterApprovalAgencyTypeDescriptor 9 Ed-Fi seed values ยท fetched CharterStatusDescriptor 4 Ed-Fi seed values ยท fetched CitizenshipStatusDescriptor 5 Ed-Fi seed values ยท fetched ClassroomPositionDescriptor 4 Ed-Fi seed values ยท fetched CohortScopeDescriptor 9 Ed-Fi seed values ยท fetched CohortTypeDescriptor 11 Ed-Fi seed values ยท fetched CohortYearTypeDescriptor 12 Ed-Fi seed values ยท fetched CompetencyLevelDescriptor 7 Ed-Fi seed values ยท fetched ContactIdentificationSystemDescriptor 15 Ed-Fi seed values ยท fetched ContentClassDescriptor 5 Ed-Fi seed values ยท fetched ContinuationOfServicesReasonDescriptor 3 Ed-Fi seed values ยท fetched CostRateDescriptor 2 Ed-Fi seed values ยท fetched CoteachingStyleObservedDescriptor 0 Ed-Fi seed values ยท missing_404 CountryDescriptor 249 Ed-Fi seed values ยท fetched CourseAttemptResultDescriptor 4 Ed-Fi seed values ยท fetched CourseDefinedByDescriptor 4 Ed-Fi seed values ยท fetched CourseGPAApplicabilityDescriptor 3 Ed-Fi seed values ยท fetched CourseIdentificationSystemDescriptor 9 Ed-Fi seed values ยท fetched CourseLevelCharacteristicDescriptor 23 Ed-Fi seed values ยท fetched CourseRepeatCodeDescriptor 6 Ed-Fi seed values ยท fetched CredentialEventTypeDescriptor 10 Ed-Fi seed values ยท fetched CredentialFieldDescriptor 15 Ed-Fi seed values ยท fetched CredentialStatusDescriptor 8 Ed-Fi seed values ยท fetched CredentialTypeDescriptor 7 Ed-Fi seed values ยท fetched CreditCategoryDescriptor 8 Ed-Fi seed values ยท fetched CreditTypeDescriptor 17 Ed-Fi seed values ยท fetched CrisisTypeDescriptor 19 Ed-Fi seed values ยท fetched CTEProgramServiceDescriptor 17 Ed-Fi seed values ยท fetched CurriculumUsedDescriptor 9 Ed-Fi seed values ยท fetched DegreeDescriptor 6 Ed-Fi seed values ยท fetched DeliveryMethodDescriptor 4 Ed-Fi seed values ยท fetched DiagnosisDescriptor 2 Ed-Fi seed values ยท fetched DiplomaLevelDescriptor 7 Ed-Fi seed values ยท fetched DiplomaTypeDescriptor 18 Ed-Fi seed values ยท fetched DisabilityDescriptor 20 Ed-Fi seed values ยท fetched DisabilityDesignationDescriptor 3 Ed-Fi seed values ยท fetched DisabilityDeterminationSourceTypeDescriptor 9 Ed-Fi seed values ยท fetched DisciplineDescriptor 10 Ed-Fi seed values ยท fetched DisciplineActionLengthDifferenceReasonDescriptor 12 Ed-Fi seed values ยท fetched DisciplineIncidentParticipationCodeDescriptor 4 Ed-Fi seed values ยท fetched DisplacedStudentStatusDescriptor 4 Ed-Fi seed values ยท fetched DualCreditInstitutionDescriptor 0 Ed-Fi seed values ยท missing_404 DualCreditTypeDescriptor 3 Ed-Fi seed values ยท fetched DurationIntervalDescriptor 5 Ed-Fi seed values ยท fetched EconomicDisadvantageDescriptor 5 Ed-Fi seed values ยท fetched EducationalEnvironmentDescriptor 13 Ed-Fi seed values ยท fetched EducationOrganizationAssociationTypeDescriptor 3 Ed-Fi seed values ยท fetched EducationOrganizationCategoryDescriptor 9 Ed-Fi seed values ยท fetched EducationOrganizationIdentificationSystemDescriptor 11 Ed-Fi seed values ยท fetched EducationPlanDescriptor 12 Ed-Fi seed values ยท fetched EducatorRoleDescriptor 19 Ed-Fi seed values ยท fetched ElectronicMailTypeDescriptor 4 Ed-Fi seed values ยท fetched EligibilityDelayReasonDescriptor 9 Ed-Fi seed values ยท fetched EligibilityEvaluationTypeDescriptor 2 Ed-Fi seed values ยท fetched EmploymentStatusDescriptor 10 Ed-Fi seed values ยท fetched EnglishLanguageExamDescriptor 4 Ed-Fi seed values ยท fetched EnrollmentTypeDescriptor 3 Ed-Fi seed values ยท fetched EntryGradeLevelReasonDescriptor 13 Ed-Fi seed values ยท fetched EntryTypeDescriptor 5 Ed-Fi seed values ยท fetched EPPDegreeTypeDescriptor 9 Ed-Fi seed values ยท fetched EPPProgramPathwayDescriptor 5 Ed-Fi seed values ยท fetched EvaluationDelayReasonDescriptor 3 Ed-Fi seed values ยท fetched EvaluationElementRatingLevelDescriptor 9 Ed-Fi seed values ยท fetched EvaluationPeriodDescriptor 11 Ed-Fi seed values ยท fetched EvaluationRatingLevelDescriptor 9 Ed-Fi seed values ยท fetched EvaluationRatingStatusDescriptor 0 Ed-Fi seed values ยท missing_404 EvaluationTypeDescriptor 10 Ed-Fi seed values ยท fetched EventCircumstanceDescriptor 32 Ed-Fi seed values ยท fetched EventComplianceDescriptor 11 Ed-Fi seed values ยท fetched EventReasonDescriptor 15 Ed-Fi seed values ยท fetched ExitWithdrawTypeDescriptor 15 Ed-Fi seed values ยท fetched FederalLocaleCodeDescriptor 4 Ed-Fi seed values ยท fetched FieldworkTypeDescriptor 5 Ed-Fi seed values ยท fetched FinancialCollectionDescriptor 5 Ed-Fi seed values ยท fetched FrequencyIntervalDescriptor 6 Ed-Fi seed values ยท fetched FundingSourceDescriptor 4 Ed-Fi seed values ยท fetched GoalTypeDescriptor 9 Ed-Fi seed values ยท fetched GradebookEntryTypeDescriptor 8 Ed-Fi seed values ยท fetched GradeLevelDescriptor 35 Ed-Fi seed values ยท fetched GradePointAverageTypeDescriptor 5 Ed-Fi seed values ยท fetched GradeTypeDescriptor 7 Ed-Fi seed values ยท fetched GradingPeriodDescriptor 20 Ed-Fi seed values ยท fetched GraduationPlanTypeDescriptor 5 Ed-Fi seed values ยท fetched GunFreeSchoolsActReportingStatusDescriptor 4 Ed-Fi seed values ยท fetched HireStatusDescriptor 7 Ed-Fi seed values ยท fetched HiringSourceDescriptor 3 Ed-Fi seed values ยท fetched HomelessPrimaryNighttimeResidenceDescriptor 4 Ed-Fi seed values ยท fetched HomelessProgramServiceDescriptor 8 Ed-Fi seed values ยท fetched IDEAEventTypeDescriptor 22 Ed-Fi seed values ยท fetched IDEAPartDescriptor 2 Ed-Fi seed values ยท fetched IdentificationDocumentUseDescriptor 3 Ed-Fi seed values ยท fetched IEPGoalTypeDescriptor 4 Ed-Fi seed values ยท fetched IEPStatusDescriptor 2 Ed-Fi seed values ยท fetched ImmunizationTypeDescriptor 18 Ed-Fi seed values ยท fetched IncidentLocationDescriptor 25 Ed-Fi seed values ยท fetched IndicatorDescriptor 0 Ed-Fi seed values ยท missing_404 IndicatorGroupDescriptor 0 Ed-Fi seed values ยท missing_404 IndicatorLevelDescriptor 0 Ed-Fi seed values ยท missing_404 InstitutionTelephoneNumberTypeDescriptor 7 Ed-Fi seed values ยท fetched InstructionalSettingDescriptor 5 Ed-Fi seed values ยท fetched InteractivityStyleDescriptor 4 Ed-Fi seed values ยท fetched InternetAccessDescriptor 13 Ed-Fi seed values ยท fetched InternetAccessTypeInResidenceDescriptor 9 Ed-Fi seed values ยท fetched InternetPerformanceInResidenceDescriptor 3 Ed-Fi seed values ยท fetched InterventionClassDescriptor 4 Ed-Fi seed values ยท fetched InterventionEffectivenessRatingDescriptor 7 Ed-Fi seed values ยท fetched LanguageDescriptor 484 Ed-Fi seed values ยท fetched LanguageInstructionProgramServiceDescriptor 17 Ed-Fi seed values ยท fetched LanguageUseDescriptor 8 Ed-Fi seed values ยท fetched LearningStandardCategoryDescriptor 3 Ed-Fi seed values ยท fetched LearningStandardEquivalenceStrengthDescriptor 4 Ed-Fi seed values ยท fetched LearningStandardScopeDescriptor 6 Ed-Fi seed values ยท fetched LengthOfContractDescriptor 4 Ed-Fi seed values ยท fetched LevelOfEducationDescriptor 7 Ed-Fi seed values ยท fetched LicenseStatusDescriptor 3 Ed-Fi seed values ยท fetched LicenseTypeDescriptor 15 Ed-Fi seed values ยท fetched LimitedEnglishProficiencyDescriptor 4 Ed-Fi seed values ยท fetched LocaleDescriptor 12 Ed-Fi seed values ยท fetched LocalEducationAgencyCategoryDescriptor 11 Ed-Fi seed values ยท fetched MagnetSpecialProgramEmphasisSchoolDescriptor 3 Ed-Fi seed values ยท fetched MediumOfInstructionDescriptor 13 Ed-Fi seed values ยท fetched MethodCreditEarnedDescriptor 8 Ed-Fi seed values ยท fetched MigrantEducationProgramServiceDescriptor 7 Ed-Fi seed values ยท fetched ModelEntityDescriptor 0 Ed-Fi seed values ยท missing_404 MonitoredDescriptor 3 Ed-Fi seed values ยท fetched NeglectedOrDelinquentProgramDescriptor 6 Ed-Fi seed values ยท fetched NeglectedOrDelinquentProgramServiceDescriptor 13 Ed-Fi seed values ยท fetched NetworkPurposeDescriptor 2 Ed-Fi seed values ยท fetched NonMedicalImmunizationExemptionDescriptor 3 Ed-Fi seed values ยท fetched ObjectiveRatingLevelDescriptor 9 Ed-Fi seed values ยท fetched OpenStaffPositionEventStatusDescriptor 2 Ed-Fi seed values ยท fetched OpenStaffPositionEventTypeDescriptor 6 Ed-Fi seed values ยท fetched OpenStaffPositionReasonDescriptor 2 Ed-Fi seed values ยท fetched OperationalStatusDescriptor 8 Ed-Fi seed values ยท fetched OtherNameTypeDescriptor 4 Ed-Fi seed values ยท fetched ParticipationDescriptor 4 Ed-Fi seed values ยท fetched ParticipationStatusDescriptor 5 Ed-Fi seed values ยท fetched PathMilestoneStatusDescriptor 7 Ed-Fi seed values ยท fetched PathMilestoneTypeDescriptor 17 Ed-Fi seed values ยท fetched PathPhaseStatusDescriptor 3 Ed-Fi seed values ยท fetched PerformanceBaseConversionDescriptor 7 Ed-Fi seed values ยท fetched PerformanceEvaluationRatingLevelDescriptor 9 Ed-Fi seed values ยท fetched PerformanceEvaluationTypeDescriptor 10 Ed-Fi seed values ยท fetched PerformanceLevelDescriptor 14 Ed-Fi seed values ยท fetched PersonalInformationVerificationDescriptor 15 Ed-Fi seed values ยท fetched PlatformTypeDescriptor 2 Ed-Fi seed values ยท fetched PopulationServedDescriptor 11 Ed-Fi seed values ยท fetched PostingResultDescriptor 2 Ed-Fi seed values ยท fetched PostSecondaryEventCategoryDescriptor 11 Ed-Fi seed values ยท fetched PostSecondaryInstitutionLevelDescriptor 11 Ed-Fi seed values ยท fetched PreviousCareerDescriptor 7 Ed-Fi seed values ยท fetched PrimaryLearningDeviceAccessDescriptor 3 Ed-Fi seed values ยท fetched PrimaryLearningDeviceAwayFromSchoolDescriptor 7 Ed-Fi seed values ยท fetched PrimaryLearningDeviceProviderDescriptor 3 Ed-Fi seed values ยท fetched ProfessionalDevelopmentOfferedByDescriptor 4 Ed-Fi seed values ยท fetched ProficiencyDescriptor 2 Ed-Fi seed values ยท fetched ProgramAssignmentDescriptor 6 Ed-Fi seed values ยท fetched ProgramCharacteristicDescriptor 0 Ed-Fi seed values ยท missing_404 ProgramEvaluationPeriodDescriptor 11 Ed-Fi seed values ยท fetched ProgramEvaluationTypeDescriptor 6 Ed-Fi seed values ยท fetched ProgramSponsorDescriptor 12 Ed-Fi seed values ยท fetched ProgramTypeDescriptor 61 Ed-Fi seed values ยท fetched ProgressDescriptor 3 Ed-Fi seed values ยท fetched ProgressLevelDescriptor 4 Ed-Fi seed values ยท fetched ProviderCategoryDescriptor 21 Ed-Fi seed values ยท fetched ProviderProfitabilityDescriptor 3 Ed-Fi seed values ยท fetched ProviderStatusDescriptor 3 Ed-Fi seed values ยท fetched PublicationStatusDescriptor 5 Ed-Fi seed values ยท fetched QuantitativeMeasureDatatypeDescriptor 0 Ed-Fi seed values ยท missing_404 QuantitativeMeasureTypeDescriptor 5 Ed-Fi seed values ยท fetched QuestionFormDescriptor 8 Ed-Fi seed values ยท fetched RaceDescriptor 9 Ed-Fi seed values ยท fetched RatingLevelDescriptor 9 Ed-Fi seed values ยท fetched ReasonExitedDescriptor 13 Ed-Fi seed values ยท fetched ReasonNotTestedDescriptor 15 Ed-Fi seed values ยท fetched RecognitionTypeDescriptor 12 Ed-Fi seed values ยท fetched RecruitmentEventAttendeeTypeDescriptor 0 Ed-Fi seed values ยท missing_404 RecruitmentEventTypeDescriptor 7 Ed-Fi seed values ยท fetched RelationDescriptor 50 Ed-Fi seed values ยท fetched RepeatIdentifierDescriptor 8 Ed-Fi seed values ยท fetched ReporterDescriptionDescriptor 6 Ed-Fi seed values ยท fetched ReportingTagDescriptor 5 Ed-Fi seed values ยท fetched ResidencyStatusDescriptor 5 Ed-Fi seed values ยท fetched ResponseIndicatorDescriptor 4 Ed-Fi seed values ยท fetched ResponsibilityDescriptor 8 Ed-Fi seed values ยท fetched RestraintEventReasonDescriptor 3 Ed-Fi seed values ยท fetched ResultDatatypeTypeDescriptor 6 Ed-Fi seed values ยท fetched RetestIndicatorDescriptor 4 Ed-Fi seed values ยท fetched RubricRatingLevelDescriptor 0 Ed-Fi seed values ยท missing_404 SalaryTypeDescriptor 5 Ed-Fi seed values ยท fetched SchoolCategoryDescriptor 16 Ed-Fi seed values ยท fetched SchoolChoiceBasisDescriptor 5 Ed-Fi seed values ยท fetched SchoolChoiceImplementStatusDescriptor 4 Ed-Fi seed values ยท fetched SchoolFoodServiceProgramServiceDescriptor 15 Ed-Fi seed values ยท fetched SchoolTypeDescriptor 5 Ed-Fi seed values ยท fetched Section504DisabilityDescriptor 22 Ed-Fi seed values ยท fetched SectionCharacteristicDescriptor 2 Ed-Fi seed values ยท fetched SectionTypeDescriptor 3 Ed-Fi seed values ยท fetched SeparationDescriptor 4 Ed-Fi seed values ยท fetched SeparationReasonDescriptor 11 Ed-Fi seed values ยท fetched ServiceDescriptor 15 Ed-Fi seed values ยท fetched ServiceDeliveryDescriptor 45 Ed-Fi seed values ยท fetched ServiceLocationTypeDescriptor 24 Ed-Fi seed values ยท fetched ServicePrescriptionDescriptor 42 Ed-Fi seed values ยท fetched ServiceProviderTypeDescriptor 16 Ed-Fi seed values ยท fetched SexDescriptor 4 Ed-Fi seed values ยท fetched SourceSystemDescriptor 4 Ed-Fi seed values ยท fetched SpecialEducationExitReasonDescriptor 11 Ed-Fi seed values ยท fetched SpecialEducationProgramServiceDescriptor 12 Ed-Fi seed values ยท fetched SpecialEducationSettingDescriptor 16 Ed-Fi seed values ยท fetched StaffClassificationDescriptor 52 Ed-Fi seed values ยท fetched StaffIdentificationSystemDescriptor 15 Ed-Fi seed values ยท fetched StaffLeaveEventCategoryDescriptor 18 Ed-Fi seed values ยท fetched StaffToCandidateRelationshipDescriptor 3 Ed-Fi seed values ยท fetched StateAbbreviationDescriptor 62 Ed-Fi seed values ยท fetched StudentCharacteristicDescriptor 14 Ed-Fi seed values ยท fetched StudentIdentificationSystemDescriptor 12 Ed-Fi seed values ยท fetched SubmissionStatusDescriptor 5 Ed-Fi seed values ยท fetched SupporterMilitaryConnectionDescriptor 6 Ed-Fi seed values ยท fetched SurveyCategoryDescriptor 10 Ed-Fi seed values ยท fetched SurveyLevelDescriptor 25 Ed-Fi seed values ยท fetched TeachingCredentialDescriptor 15 Ed-Fi seed values ยท fetched TeachingCredentialBasisDescriptor 8 Ed-Fi seed values ยท fetched TechnicalSkillsAssessmentDescriptor 3 Ed-Fi seed values ยท fetched TelephoneNumberTypeDescriptor 8 Ed-Fi seed values ยท fetched TermDescriptor 16 Ed-Fi seed values ยท fetched TitleIPartAParticipantDescriptor 5 Ed-Fi seed values ยท fetched TitleIPartAProgramServiceDescriptor 9 Ed-Fi seed values ยท fetched TitleIPartASchoolDesignationDescriptor 7 Ed-Fi seed values ยท fetched TransportationPublicExpenseEligibilityTypeDescriptor 11 Ed-Fi seed values ยท fetched TransportationTypeDescriptor 5 Ed-Fi seed values ยท fetched TravelDayofWeekDescriptor 7 Ed-Fi seed values ยท fetched TravelDirectionDescriptor 3 Ed-Fi seed values ยท fetched TribalAffiliationDescriptor 620 Ed-Fi seed values ยท fetched VisaDescriptor 7 Ed-Fi seed values ยท fetched WeaponDescriptor 19 Ed-Fi seed values ยท fetched WithdrawReasonDescriptor 5 Ed-Fi seed values ยท fetched

record_state #

Owner: edfi_draft_record.record_state. Type: TEXT enum. Trace: GAP-A5.

ValueMeaning
draftEntered or imported but not canonical; never appears in ordinary Ed-Fi lists and cannot satisfy references.
canonicalValidated, acknowledged, and visible through canonical list/detail endpoints.
rejectedFailed validation or governance checks; retained with validation_errors for correction.
soft_deletedFormerly canonical or draft evidence retained after delete/correction under GAP-A3.

delete_source #

Owner: canonical overlay and draft tables. Type: TEXT enum. Trace: GAP-A3.

ValueMeaning
apiA caller explicitly requested delete through a public API operation.
importA later import or sync removed or replaced the source row.
correctionA privileged correction workflow invalidated the prior record.
retention_policyA configured retention policy removed ordinary visibility while preserving audit facts.

standard_status #

Owner: edfi_descriptor_code.standard_status. Type: TEXT enum. Trace: GAP-A4.

ValueMeaning
ed_fi_standardSeeded from an Ed-Fi descriptor value in the ed-fi.org namespace.
district_localTenant-governed local descriptor value outside the ed-fi.org namespace.
platform_extensionPlatform-owned governance value needed to operate the surface.
deprecatedRetained for historical reads but rejected for new writes unless explicitly reopened.

job_state #

Owner: edfi_import_job.state and edfi_export_job.state. Type: TEXT enum. Trace: EITD-101 / EITD-110.

ValueMeaning
queuedThe platform accepted the job but has not started row processing.
processingRows are being validated, canonicalized, exported, or reported.
completedThe job finished with no row-level errors.
completed_with_errorsThe job finished and retained per-row errors for caller review.
failedThe job could not complete because of a job-level error.
cancelledThe job was stopped before completion by an authorized actor.

edfi:* Problem codes #

Every error response uses typed RFC 7807 Problem Details and one stable code. Problem payloads redact PII, secrets, raw request bodies, headers, and source files.

CodeMeaningTrace
edfi:platform3_roster_requiredA write named a student, staff, school, class, course, section, or enrollment anchor that does not exist in OneRoster.ITD
edfi:id_provenance_conflictA caller mixed edfi_local_id, OneRoster sourcedId, or Ed-Fi natural key in a way that would make provenance ambiguous.ITD
edfi:delete_not_hard_deleteA caller attempted a hard delete through an ordinary Ed-Fi operation.ITD
edfi:descriptor_not_governedA descriptor value is missing from the governed descriptor registry and was not written through the descriptor-create path.ITD
edfi:draft_not_canonicalA draft record was used where only a canonical acknowledged record is allowed.ITD
edfi:invalid_query_parameterA list endpoint received an unsupported, malformed, or mixed paging/filter parameter, including a request that combines cursor with offset.ITD
edfi:if_match_requiredA mutation that can overwrite visible work did not include If-Match.ITD
edfi:etag_mismatchThe supplied If-Match value does not match the current canonical ETag.ITD
edfi:idempotency_conflictAn Idempotency-Key was replayed with a different request hash for the same tenant, route, and operation.ITD
edfi:privacy_redactedA privileged export, audit, or error surface redacted PII or secret-bearing content.ITD

Generated UDM Catalog

Entries, Fields, Constraints, Sources

Each entry has a stable anchor, source link, origin label, field-level datatypes/nullability, constraints derived from Ed-Fi SQL and cardinality metadata, and trace links to the approved architecture. Use the sidebar filters for a specific domain or resource kind.

Descriptor catalog Descriptor

AbsenceEventCategory #

/ed-fi/descriptors/absenceEventCategoryDescriptors

This descriptor describes the type of absence

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.AbsenceEventCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (12 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AbsenceEventCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Bereavement Bereavement Bereavement uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Compensatory leave time Compensatory leave time Compensatory leave time uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Flex time Flex time Flex time uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Jury duty Jury duty Jury duty uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Personal Personal Personal uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Professional development Professional development Professional development uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Release time Release time Release time uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sick leave Sick leave Sick leave uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suspension Suspension Suspension uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vacation Vacation Vacation uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Work compensation Work compensation Work compensation uri://ed-fi.org/AbsenceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StaffAbsenceEvent.AbsenceEventCategory (required)

UDM common/composite Composite Part

AcademicHonor #

dictionary-only type

Academic distinctions earned by or awarded to the individual.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Achievement
Achievement
Reference
InlineCommonProperty
required The achievement earned by the individual upon fulfilling specified criteria. object reference; required Ed-Fi field source pass-through
AcademicHonorCategory
AcademicHonorCategoryDescriptor
Reference
DescriptorProperty
Allowed values: AcademicHonorCategoryDescriptor (18 Ed-Fi seed values)
required
identity
ODS/API identity
A designation of the type of academic distinctions earned by or awarded to the individual. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
HonorDescription
HonorDescription
String
VARCHAR(80)
required
identity
ODS/API identity
A description of the type of academic distinctions earned by or awarded to the individual. max length 80 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
HonorAwardDate
HonorAwardDate
Date
DATE
optional The date the honor was awarded. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
HonorAwardExpiresDate
HonorAwardExpiresDate
Date
DATE
optional Date on which the honor expires. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentAcademicRecord.AcademicHonor (optional collection)

Descriptor catalog Descriptor

AcademicHonorCategory #

/ed-fi/descriptors/academicHonorCategoryDescriptors

A designation of the type of academic distinctions earned by or awarded to the student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Graduation, Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.AcademicHonorCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (18 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AcademicHonorCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Attendance award Attendance award Attendance award uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Awarding of units of value Awarding of units of value Awarding of units of value uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Certificate Certificate Certificate uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Citizenship award/recognition Citizenship award/recognition Citizenship award/recognition uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Completion of requirement, but no units awarded Completion of requirement, but no units of value awarded Completion of requirement, but no units of value awarded uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Honor award Honor award Honor award uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Honor roll Honor roll Honor roll uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Honor society Honor society Honor society uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Honorable mention Honorable mention Honorable mention uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Honors program Honors program Honors program uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Letter of student commendation Letter of student commendation Letter of student commendation uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medals Medals Medals uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
National Merit Scholar National Merit Scholar National Merit Scholar uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Points Points Points uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Prize awards Prize awards Prize awards uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Promotion or advancement Promotion or advancement Promotion or advancement uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Scholarships Scholarships Scholarships uri://ed-fi.org/AcademicHonorCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • AcademicHonor.AcademicHonorCategory (required)

Descriptor catalog Descriptor

AcademicSubject #

/ed-fi/descriptors/academicSubjectDescriptors

This descriptor holds the description of the content or subject area (e.g., arts, mathematics, reading, stenography, or a foreign language).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Credential, Discipline, Education Organization, Educator Preparation Program, Enrollment, Finance, Graduation, Intervention, Performance Evaluation, Recruiting and Staffing, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.AcademicSubjectDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (21 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AcademicSubjectDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Bilingual Bilingual Bilingual uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career and Technical Education Career and Technical Education Career and Technical Education uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Composite Composite Composite uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Critical Reading Critical Reading Critical Reading uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cross Subject Cross Subject Cross Subject uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
English English English uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
English Language Arts English Language Arts English Language Arts uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
English Language Learners English Language Learners English Language Learners uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fine and Performing Arts Fine and Performing Arts Fine and Performing Arts uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Foreign Language and Literature Foreign Language and Literature Foreign Language and Literature uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Life and Physical Sciences Life and Physical Sciences Life and Physical Sciences uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mathematics Mathematics Mathematics uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Military Science Military Science Military Science uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical, Health, and Safety Education Physical, Health, and Safety Education Physical, Health, and Safety Education uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reading Reading Reading uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Religious Education and Theology Religious Education and Theology Religious Education and Theology uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Science Science Science uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Social Sciences and History Social Sciences and History Social Sciences and History uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Social Studies Social Studies Social Studies uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Writing Writing Writing uri://ed-fi.org/AcademicSubjectDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (18)
  • StaffSchoolAssociation.AcademicSubject (optional collection)
  • CreditsBySubject.AcademicSubject (required)
  • CurrentPosition.AcademicSubject (optional)
  • EPPProgramDegree.AcademicSubject (required)
  • ApplicantProfile.HighlyQualifiedAcademicSubject (optional collection)
  • Application.AcademicSubject (optional)
  • Application.HighNeedsAcademicSubject (optional)
  • Assessment.AcademicSubject (required)
  • Cohort.AcademicSubject (optional)
  • Course.AcademicSubject (optional collection)
  • CourseTranscript.AcademicSubject (optional collection)
  • Credential.AcademicSubject (optional collection)
  • LearningStandard.AcademicSubject (required collection)
  • ObjectiveAssessment.AcademicSubject (optional)
  • OpenStaffPosition.AcademicSubject (optional collection)
  • PerformanceEvaluation.AcademicSubject (optional)
  • Staff.HighlyQualifiedAcademicSubject (optional collection)
  • OrganizationDepartment.AcademicSubject (optional)

Canonical UDM resource Class

AcademicWeek #

/ed-fi/academicWeeks

This entity represents the academic weeks for a school year, optionally captured to support analyses.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
School Calendar
Source
UDM Handbook entry
Physical SQL snippets
edfi.AcademicWeek
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the academic week to an existing school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
WeekIdentifier
WeekIdentifier
String
VARCHAR(80)
required
identity
ODS/API identity
The school label for the week. max length 80 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required The start date for the academic week. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
required The end date for the academic week. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
TotalInstructionalDays
TotalInstructionalDays
Number
INT
required The total instructional days during the academic week. integer range -2,147,483,648 to 2,147,483,647; required Ed-Fi field source pass-through
Used By (1)
  • Session.AcademicWeek (optional collection)

UDM primitive/simple type Date

AcceptedDate #

dictionary-only type

The date of acceptance, if offered.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Application.AcceptedDate (optional)

Descriptor catalog Descriptor

Accommodation #

/ed-fi/descriptors/accommodationDescriptors

This descriptor defines variations used in how an assessment is presented or taken.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment, Assessment Registration, Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.AccommodationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AccommodationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
504 accommodation 504 accommodation 504 accommodation uri://ed-fi.org/AccommodationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
English language learner accommodation English language learner accommodation English language learner accommodation uri://ed-fi.org/AccommodationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/AccommodationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Scheduling accommodation Scheduling accommodation Scheduling accommodation uri://ed-fi.org/AccommodationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Settings accommodation Settings accommodation Settings accommodation uri://ed-fi.org/AccommodationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student equipment/technology accommodation Student equipment/technology Student equipment/technology uri://ed-fi.org/AccommodationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Test administration accommodation Test administration accommodation Test administration accommodation uri://ed-fi.org/AccommodationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Test material accommodation Test material accommodation Test material accommodation uri://ed-fi.org/AccommodationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Test response accommodation Test response accommodation Test response accommodation uri://ed-fi.org/AccommodationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (5)
  • StudentAssessmentRegistrationBatteryPartAssociation.Accommodation (optional collection)
  • StudentAssessment.Accommodation (optional collection)
  • StudentAssessmentRegistration.AssessmentAccommodation (optional collection)
  • StudentEducationOrganizationAssessmentAccommodation.GeneralAccommodation (optional collection)
  • StudentIEP.Accommodation (optional collection)

UDM primitive/simple type Boolean

AccommodationPlan #

dictionary-only type

Indicates whether student has a Section 504 accommodation plan.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSection504ProgramAssociation.AccommodationPlan (optional)

Canonical UDM resource Class

AccountabilityRating #

/ed-fi/accountabilityRatings

An accountability rating for a school or district.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization, Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.AccountabilityRating
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the accountability rating to an education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
RatingTitle
RatingTitle
String
VARCHAR(60)
required
identity
ODS/API identity
The title of the rating. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Rating
Rating
String
VARCHAR(35)
required An accountability rating level, designation, or assessment. max length 35 characters; required Ed-Fi field source pass-through
RatingDate
RatingDate
Date
DATE
optional The date the rating was awarded. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The school year for which the accountability rating is assessed. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
RatingOrganization
RatingOrganization
String
VARCHAR(35)
optional The organization that assessed the rating. max length 35 characters; optional Ed-Fi field source pass-through
RatingProgram
RatingProgram
String
VARCHAR(30)
optional The program associated with the accountability rating (e.g., NCLB, AEIS). max length 30 characters; optional Ed-Fi field source pass-through

UDM primitive/simple type String

AccountIdentifier #

dictionary-only type

The alphanumeric string that identifies the account.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 50
Used By (2)
  • ChartOfAccount.AccountIdentifier (required)
  • LocalAccount.AccountIdentifier (required)

UDM primitive/simple type String

AccountName #

dictionary-only type

A descriptive name for an account.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 100
Used By (2)
  • ChartOfAccount.AccountName (optional)
  • LocalAccount.AccountName (optional)

Descriptor catalog Descriptor

AccountType #

/ed-fi/descriptors/accountTypeDescriptors

The type of account used in accounting such as revenue, expenditure, or balance sheet.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.AccountTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AccountTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Balance sheet Balance sheet Balance sheet uri://ed-fi.org/AccountTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expenditure Expenditure Expenditure uri://ed-fi.org/AccountTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Revenue Revenue Revenue uri://ed-fi.org/AccountTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • ChartOfAccount.AccountType (required)

Descriptor catalog Descriptor

AccreditationStatus #

/ed-fi/descriptors/accreditationStatusDescriptors

The accreditation status for an education preparation provider.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Educator Preparation Program, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.AccreditationStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AccreditationStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accredited Accredited Accredited uri://ed-fi.org/AccreditationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Accredited - Probation Accredited - Probation Accredited - Probation uri://ed-fi.org/AccreditationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Accredited - Warned Accredited - Warned Accredited - Warned uri://ed-fi.org/AccreditationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Accredited Not Accredited Not Accredited uri://ed-fi.org/AccreditationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Rated Not Rated Not Rated uri://ed-fi.org/AccreditationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • EducatorPreparationProgram.AccreditationStatus (optional)
  • School.AccreditationStatus (optional)

UDM common/composite Composite Part

Achievement #

dictionary-only type

The achievement earned by the individual upon fulfilling specified criteria.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AchievementTitle
AchievementTitle
String
VARCHAR(60)
optional The title assigned to the achievement. max length 60 characters; optional Ed-Fi field source pass-through
AchievementCategory
AchievementCategoryDescriptor
Reference
DescriptorProperty
Allowed values: AchievementCategoryDescriptor (12 Ed-Fi seed values)
optional The category of achievement attributed to the individual. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AchievementCategorySystem
AchievementCategorySystem
String
VARCHAR(60)
optional The system that defines the categories by which an achievement is attributed to the individual. max length 60 characters; optional Ed-Fi field source pass-through
IssuerName
IssuerName
String
VARCHAR(150)
optional The name of the agent, entity, or institution issuing the element. max length 150 characters; optional Ed-Fi field source pass-through
IssuerOriginURL
IssuerOriginURL
String
VARCHAR(255)
optional The Uniform Resource Locator (URL) from which the award was issued. max length 255 characters; optional Ed-Fi field source pass-through
Criteria
Criteria
String
VARCHAR(150)
optional The criteria for competency-based completion of the achievement/award. max length 150 characters; optional Ed-Fi field source pass-through
CriteriaURL
CriteriaURL
String
VARCHAR(255)
optional The Uniform Resource Locator (URL) for the unique address of a web page describing the competency-based completion criteria for the achievement/award. max length 255 characters; optional Ed-Fi field source pass-through
EvidenceStatement
EvidenceStatement
String
VARCHAR(150)
optional A statement or reference describing the evidence that the individual met the criteria for attainment of the achievement/award. max length 150 characters; optional Ed-Fi field source pass-through
ImageURL
ImageURL
String
VARCHAR(255)
optional The Uniform Resource Locator (URL) for the unique address of an image representing an award or badge associated with the achievement/award. max length 255 characters; optional Ed-Fi field source pass-through
Used By (3)
  • AcademicHonor.Achievement (required)
  • Diploma.Achievement (required)
  • Recognition.Achievement (required)

Descriptor catalog Descriptor

AchievementCategory #

/ed-fi/descriptors/achievementCategoryDescriptors

This descriptor defines the category of achievement attributed to the learner.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Discipline, Finance, Graduation, Intervention, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.AchievementCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (12 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AchievementCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Academic Honor Academic Honor Academic Honor uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Certificate Earned Certificate Earned Certificate Earned uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Competency Mastered Competency Mastered Competency Mastered uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Competency Retained Competency Retained Competency Retained uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Course Completed Course Completed Course Completed uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Diploma Earned Diploma Earned Diploma Earned uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Level Completed Level Completed Level Completed uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
License Earned License Earned License Earned uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
License Endorsement Earned License Endorsement Earned License Endorsement Earned uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-Academic Honor Non-Academic Honor Non-Academic Honor uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Participation Participation Participation uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Recognition Recognition Recognition uri://ed-fi.org/AchievementCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Achievement.AchievementCategory (optional)

UDM primitive/simple type String

AchievementCategorySystem #

dictionary-only type

The system that defines the categories by which an achievement is attributed to the learner.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • Achievement.AchievementCategorySystem (optional)

UDM primitive/simple type String

AchievementTitle #

dictionary-only type

The title assigned to the achievement.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • Achievement.AchievementTitle (optional)

UDM primitive/simple type Date

ActualDate #

dictionary-only type

The month, day, and year on which the performance evaluation was conducted.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PerformanceEvaluationRating.ActualDate (required)

UDM primitive/simple type Time

ActualTime #

dictionary-only type

An indication of the time at which the performance evaluation was conducted.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PerformanceEvaluationRating.ActualTime (optional)

UDM primitive/simple type Boolean

AdaptiveAssessment #

dictionary-only type

Indicates that the assessment is adaptive.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Assessment.AdaptiveAssessment (optional)

UDM primitive/simple type Boolean

AdditionalAuthorsIndicator #

dictionary-only type

Indicates whether there are additional un-named authors. In a research report, this is often marked by the abbreviation "et al".

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • LearningResource.AdditionalAuthorsIndicator (optional)

UDM common/composite Composite Part

AdditionalCredits #

dictionary-only type

Additional credits or units of value awarded for the completion of a course (e.g., AP, IB, Dual Credits).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Credits
Credits
Number
DECIMAL(9, 3)
required The value of credits or units of value awarded for the completion of a course numeric precision 9, scale 3; required Ed-Fi field source pass-through
AdditionalCreditType
AdditionalCreditTypeDescriptor
Reference
DescriptorProperty
Allowed values: AdditionalCreditTypeDescriptor (5 Ed-Fi seed values)
required
identity
ODS/API identity
The type of credits or units of value awarded for the completion of a course. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • CourseTranscript.EarnedAdditionalCredits (optional collection)

Descriptor catalog Descriptor

AdditionalCreditType #

/ed-fi/descriptors/additionalCreditTypeDescriptors

The type of additional credits or units of value awarded for the completion of a course.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.AdditionalCreditTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AdditionalCreditTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Advanced Placement Advanced Placement Advanced Placement uri://ed-fi.org/AdditionalCreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career and Technical Education Career and Technical Education Career and Technical Education uri://ed-fi.org/AdditionalCreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dual credit Dual credit Dual credit uri://ed-fi.org/AdditionalCreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
International Baccalaureate International Baccalaureate International Baccalaureate uri://ed-fi.org/AdditionalCreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/AdditionalCreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • AdditionalCredits.AdditionalCreditType (required)

UDM common/composite Composite Part

AdditionalImmunization #

dictionary-only type

Stores student's vaccination or immunization history beyond those mandated.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ImmunizationName
ImmunizationName
String
VARCHAR(100)
required
identity
ODS/API identity
The name of the immunization that the student has received. max length 100 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ImmunizationDate
Dates
Date
DATE
optional collection The year, month and day of the related additional immunization. calendar date in ISO 8601 full-date form; optional collection Ed-Fi field source pass-through
Used By (1)
  • StudentHealth.AdditionalImmunization (optional collection)

UDM common/composite Composite Part

Address #

dictionary-only type

The set of elements that describes an address, including the street address, city, state, and ZIP code.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (16)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StreetNumberName
StreetNumberName
String
VARCHAR(150)
required
identity
ODS/API identity
The street number and street name or post office box number of an address. max length 150 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ApartmentRoomSuiteNumber
ApartmentRoomSuiteNumber
String
VARCHAR(50)
optional The apartment, room, or suite number of an address. max length 50 characters; optional Ed-Fi field source pass-through
BuildingSiteNumber
BuildingSiteNumber
String
VARCHAR(20)
optional The number of the building on the site, if more than one building shares the same address. max length 20 characters; optional Ed-Fi field source pass-through
City
City
String
VARCHAR(30)
required
identity
ODS/API identity
The name of the city in which an address is located. max length 30 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StateAbbreviation
StateAbbreviationDescriptor
Reference
DescriptorProperty
Allowed values: StateAbbreviationDescriptor (62 Ed-Fi seed values)
required
identity
ODS/API identity
The abbreviation for the state (within the United States) or outlying area in which an address is located. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PostalCode
PostalCode
String
VARCHAR(17)
required
identity
ODS/API identity
The five or nine digit zip code or overseas postal code portion of an address. max length 17 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
NameOfCounty
NameOfCounty
String
VARCHAR(30)
optional The name of the county, parish, borough, or comparable unit (within a state) in which an address is located. max length 30 characters; optional Ed-Fi field source pass-through
CountyFIPSCode
CountyFIPSCode
String
VARCHAR(5)
optional The Federal Information Processing Standards (FIPS) numeric code for the county issued by the National Institute of Standards and Technology (NIST). Counties are considered to be the "first-order subdivisions" of each State and statistically equivalent entity, regardless of their local designations (county, parish, borough, etc.) Counties in different States will have the same code. A unique county number is created when combined with the 2-digit FIPS State Code. max length 5 characters; optional Ed-Fi field source pass-through
Latitude
Latitude
String
VARCHAR(20)
optional The geographic latitude of the physical address. max length 20 characters; optional Ed-Fi field source pass-through
Longitude
Longitude
String
VARCHAR(20)
optional The geographic longitude of the physical address. max length 20 characters; optional Ed-Fi field source pass-through
Period
Periods
Reference
CommonProperty
optional collection The time periods for which the address is valid. For physical addresses, the periods in which the person lived at that address. object reference; optional collection Ed-Fi field source pass-through
AddressType
AddressTypeDescriptor
Reference
DescriptorProperty
Allowed values: AddressTypeDescriptor (15 Ed-Fi seed values)
required
identity
ODS/API identity
The type of address listed for an individual or organization. (For example: Physical Address, Mailing Address, Home Address, etc.) object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DoNotPublishIndicator
DoNotPublishIndicator
Boolean
BOOLEAN
optional An indication that the address should not be published. boolean true/false; optional Ed-Fi field source pass-through
CongressionalDistrict
CongressionalDistrict
String
VARCHAR(30)
optional The congressional district in which an address is located. max length 30 characters; optional Ed-Fi field source pass-through
Locale
LocaleDescriptor
Reference
DescriptorProperty
Allowed values: LocaleDescriptor (12 Ed-Fi seed values)
optional A general geographic indicator that categorizes U.S. territory (e.g., City, Suburban). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AddressCharacteristic
Characteristics
Reference
DescriptorProperty
Allowed values: governed CharacteristicsDescriptor values; no matching handbook descriptor entry found.
optional collection The address characteristic mainly to reflect if Primary and type of communication to be received, e.g.: Primary, Validated, Gets Copy of Report, Discipline Correspondence. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (6)
  • ApplicantProfile.Address (optional collection)
  • Candidate.Address (optional collection)
  • Contact.Address (optional collection)
  • EducationOrganization.Address (optional collection)
  • StaffDirectory.Address (optional collection)
  • StudentDirectory.Address (optional collection)

Descriptor catalog Descriptor

AddressCharacteristic #

/ed-fi/descriptors/addressCharacteristicDescriptors

The address characteristic mainly to reflect if Primary and type of communication to be received, e.g.: Primary, Validated, Gets Copy of Report, Discipline Correspondence.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Education Organization, Educator Preparation Program, Enrollment, Finance, Graduation, Intervention, Recruiting and Staffing, School Calendar, Special Education, Staff, Student Academic Record, Student Cohort, Student Health, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.AddressCharacteristicDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AddressCharacteristicDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Primary Primary Primary uri://ed-fi.org/AddressCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Validated Validated Validated uri://ed-fi.org/AddressCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Address.AddressCharacteristic (optional collection)

UDM primitive/simple type String

AddressLine #

dictionary-only type

A line of an address.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 150
Used By (4)
  • InternationalAddress.AddressLine1 (required)
  • InternationalAddress.AddressLine2 (optional)
  • InternationalAddress.AddressLine3 (optional)
  • InternationalAddress.AddressLine4 (optional)

Descriptor catalog Descriptor

AddressType #

/ed-fi/descriptors/addressTypeDescriptors

The type of address listed for an individual or organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Education Organization, Educator Preparation Program, Enrollment, Finance, Graduation, Intervention, Recruiting and Staffing, School Calendar, Special Education, Staff, Student Academic Record, Student Cohort, Student Health, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.AddressTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AddressTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Billing Billing Billing uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Doubled - up (i.e., living with another family) Doubled - up (i.e., living with another family) Doubled - up (i.e., living with another family) uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Father Address Father Address Father Address uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Guardian Address Guardian Address Guardian Address uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Home Home Home uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hotels/Motels Hotels/Motels Hotels/Motels uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mailing Mailing Mailing uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mother Address Mother Address Mother Address uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical Physical Physical uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shelter, Transitional housing, Awaiting Foster Shelters, Transitional housing, Awaiting Foster Care Shelters, Transitional housing, Awaiting Foster Care uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shipping Shipping Shipping uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Temporary Temporary Temporary uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unsheltered Unsheltered (cars, parks, temporary trailers, or abandoned buildings) Unsheltered (e.g. cars, parks, campgrounds, temporary trailers including FEMA trailers, or abandoned buildings) uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Work Work Work uri://ed-fi.org/AddressTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • Address.AddressType (required)
  • InternationalAddress.AddressType (required)

Descriptor catalog Descriptor

AdministrationEnvironment #

/ed-fi/descriptors/administrationEnvironmentDescriptors

The environment in which the test was administered.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.AdministrationEnvironmentDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AdministrationEnvironmentDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Classroom Classroom Classroom uri://ed-fi.org/AdministrationEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Remote Remote Outside the school or district uri://ed-fi.org/AdministrationEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/AdministrationEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Testing Center Testing Center Testing Center uri://ed-fi.org/AdministrationEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentAssessment.AdministrationEnvironment (optional)

UDM primitive/simple type String

AdministrationIdentifier #

dictionary-only type

The title or name of the assessment in the context of its administration.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • AssessmentAdministration.AdministrationIdentifier (required)

UDM common/composite Composite Part

AdministrationPointOfContact #

dictionary-only type

Short list of information which identifies the point of contact for the administration of an assessment within an education organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ElectronicMailAddress
ElectronicMailAddress
String
VARCHAR(128)
required
identity
ODS/API identity
The email address for the contact. max length 128 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FirstName
FirstName
String
VARCHAR(75)
required The contact's first name. max length 75 characters; required Ed-Fi field source pass-through
LastSurname
LastSurname
String
VARCHAR(75)
required The contact's last name. max length 75 characters; required Ed-Fi field source pass-through
LoginId
LoginId
String
VARCHAR(120)
optional The login ID for the user; used for security access control interface. max length 120 characters; optional Ed-Fi field source pass-through
Used By (1)
  • AssessmentAdministrationParticipation.AdministrationPointOfContact (optional collection)

Descriptor catalog Descriptor

AdministrativeFundingControl #

/ed-fi/descriptors/administrativeFundingControlDescriptors

This descriptor holds the type of education institution as classified by its funding source (e.g., public or private).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.AdministrativeFundingControlDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AdministrativeFundingControlDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Other Other Other uri://ed-fi.org/AdministrativeFundingControlDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Private School Private School Private School uri://ed-fi.org/AdministrativeFundingControlDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Public School Public School Public School uri://ed-fi.org/AdministrativeFundingControlDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • PostSecondaryInstitution.AdministrativeFundingControl (optional)
  • School.AdministrativeFundingControl (optional)

UDM primitive/simple type Number

AgeAuthorizedToServe #

dictionary-only type

Age of children a provider is authorized or licensed to serve.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (2)
  • License.OldestAgeAuthorizedToServe (optional)
  • License.YoungestAgeAuthorizedToServe (optional)

UDM primitive/simple type Number

AidAmount #

dictionary-only type

The amount of financial aid awarded to a person for the term/year.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 19
  • decimal places: 4

Descriptor catalog Descriptor

AidType #

/ed-fi/descriptors/aidTypeDescriptors

The classification of financial aid awarded to a person for the academic term/year.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.AidTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (24 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AidTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Assistantships Assistantships Assistantships uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Scholarships Federal Scholarships Federal Scholarships uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Subsidized Loans Federal Subsidized Loans Federal Subsidized Loans uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Unsubsidized Loans Federal Unsubsidized Loans Federal Unsubsidized Loans uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Work Study Federal Work Study Federal Work Study uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Institutional Grants Institutional Grants Institutional Grants uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Institutional Loans Institutional Loans Institutional Loans uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Institutional Scholarships Institutional Scholarships Institutional Scholarships uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Loan Forgiveness Loan Forgiveness Loan Forgiveness uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Federal Grants Other Federal Grants Other Federal Grants uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Grants Other Grants Other Grants uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other On-Campus Work Other On-Campus Work Other On-Campus Work uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Scholarships Other Scholarships Other Scholarships uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent PLUS Loans Parent PLUS Loans Parent PLUS Loans uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pell Grants Pell Grants Pell Grants uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Private Grants Private Grants Private Grants uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Private Loans Private Loans Private Loans uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Private Scholarships Private Scholarships Private Scholarships uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State and Local Grants State and Local Grants State and Local Grants uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State and Local Scholarships State and Local Scholarships State and Local Scholarships uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State Loans State Loans State Loans uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State Work State Work State Work uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teach Grants Teach Grants Teach Grants uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tuition Reimbursements Tuition Reimbursements Tuition Reimbursements uri://ed-fi.org/AidTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • FinancialAid.AidType (required)

UDM primitive/simple type String

AlternateDayName #

dictionary-only type

used for the bell schedule, another name for day (e.g., Blue day, Red day).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 20
Used By (1)
  • BellSchedule.AlternateDayName (optional)

Descriptor catalog Descriptor

AncestryEthnicOrigin #

/ed-fi/descriptors/ancestryEthnicOriginDescriptors

The original peoples or cultures with which the individual identifies.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Enrollment, Staff, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.AncestryEthnicOriginDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/AncestryEthnicOriginDescriptor.xml ยท status missing_404
Used By (2)
  • StaffDemographic.AncestryEthnicOrigin (optional collection)
  • StudentDemographic.AncestryEthnicOrigin (optional collection)

UDM primitive/simple type Boolean

Announced #

dictionary-only type

An indicator of whether the performance evaluation was announced or not.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PerformanceEvaluationRating.Announced (optional)

UDM primitive/simple type String

ApartmentRoomSuiteNumber #

dictionary-only type

The apartment, room, or suite number of an address.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 50
Used By (1)
  • Address.ApartmentRoomSuiteNumber (optional)

UDM common/composite Composite Part

ApplicantCharacteristic #

dictionary-only type

Reflects important characteristics of the applicant's home situation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentCharacteristic
StudentCharacteristicDescriptor
Reference
DescriptorProperty
Allowed values: StudentCharacteristicDescriptor (14 Ed-Fi seed values)
required
identity
ODS/API identity
The characteristic designated for the student applicant. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
optional The date the characteristic was designated. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The date the characteristic was removed. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
DesignatedBy
DesignatedBy
String
VARCHAR(60)
optional The person, organization, or department that designated the characteristic. max length 60 characters; optional Ed-Fi field source pass-through
Used By (1)
  • ApplicantProfile.ApplicantCharacteristic (optional collection)

Canonical UDM resource Class deprecated source element

ApplicantProfile #

/ed-fi/applicantProfiles

The profile of the person making an application.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.ApplicantProfile edfi.ApplicantProfileAddress edfi.ApplicantProfileAddressCharacteristic edfi.ApplicantProfileAddressPeriod edfi.ApplicantProfileApplicantCharacteristic edfi.ApplicantProfileBackgroundCheck edfi.ApplicantProfileDisability edfi.ApplicantProfileDisabilityDesignation edfi.ApplicantProfileEducatorPreparationProgramName edfi.ApplicantProfileElectronicMail edfi.ApplicantProfileGradePointAverage edfi.ApplicantProfileHighlyQualifiedAcademicSubject edfi.ApplicantProfileIdentificationDocument edfi.ApplicantProfileInternationalAddress edfi.ApplicantProfileLanguage edfi.ApplicantProfileLanguageUse edfi.ApplicantProfilePersonalIdentificationDocument edfi.ApplicantProfileRace edfi.ApplicantProfileTelephone edfi.ApplicantProfileVisa
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (25)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ApplicantProfileIdentifier
ApplicantProfileIdentifier
String
VARCHAR(32)
required
identity
ODS/API identity
Identifier assigned to a person making formal application for entrance into a program or an open staff position. max length 32 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Name
Name
Reference
InlineCommonProperty
required Full legal name of the person. object reference; required Ed-Fi field source pass-through
Sex
SexDescriptor
Reference
DescriptorProperty
Allowed values: SexDescriptor (4 Ed-Fi seed values)
optional A person's birth sex. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GenderIdentity
GenderIdentity
String
VARCHAR(60)
optional The gender the person identifies themselves as. max length 60 characters; optional Ed-Fi field source pass-through
BirthDate
BirthDate
Date
DATE
optional The month, day, and year on which an individual was born. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Address
Addresses
Reference
CommonProperty
optional collection The set of elements that describes an address, including the street address, city, state, and ZIP code. object reference; optional collection Ed-Fi field source pass-through
InternationalAddress
InternationalAddresses
Reference
CommonProperty
optional collection The set of elements that describes an international address. object reference; optional collection Ed-Fi field source pass-through
Telephone
Telephones
Reference
CommonProperty
optional collection The 10-digit telephone number, including the area code, for the person. object reference; optional collection Ed-Fi field source pass-through
ElectronicMail
ElectronicMails
Reference
CommonProperty
optional collection The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the individual or organization belongs. object reference; optional collection Ed-Fi field source pass-through
HispanicLatinoEthnicity
HispanicLatinoEthnicity
Boolean
BOOLEAN
optional An indication that the individual traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central, and South America, and other Spanish cultures, regardless of race. The term, "Spanish origin," can be used in addition to "Hispanic or Latino". boolean true/false; optional; deprecated: see deprecation reason
Deprecated: This element is scheduled for removal by 2029. Users of this element are advised to use Race instead.
Ed-Fi field source pass-through
Race
Races
Reference
DescriptorProperty
Allowed values: governed RacesDescriptor values; no matching handbook descriptor entry found.
optional collection The general racial category which most clearly reflects the individual's recognition of his or her community or with which the individual most identifies. The way this data element is listed, it must allow for multiple entries so that each individual can specify all appropriate races. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Citizenship
Citizenship
Reference
InlineCommonProperty
optional Contains information relative to citizenship status and its associated probationary documentation. object reference; optional Ed-Fi field source pass-through
Language
Languages
Reference
CommonProperty
optional collection The language(s) the individual uses to communicate. object reference; optional collection Ed-Fi field source pass-through
BackgroundCheck
BackgroundChecks
Reference
CommonProperty
optional collection Applicant background check history and disposition. object reference; optional collection Ed-Fi field source pass-through
Disability
Disabilities
Reference
CommonProperty
optional collection The disability condition(s) that best describes an individual's impairment. object reference; optional collection Ed-Fi field source pass-through
EconomicDisadvantage
EconomicDisadvantageDescriptor
Reference
DescriptorProperty
Allowed values: EconomicDisadvantageDescriptor (5 Ed-Fi seed values)
optional An indication of inadequate financial condition of an individual's family, as determined by family income, number of family members/dependents, participation in public assistance programs, and/or other characteristics considered relevant by federal, state, and local policy. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
FirstGenerationStudent
FirstGenerationStudent
Boolean
BOOLEAN
optional Indicator of whether individual is a first generation college student. boolean true/false; optional Ed-Fi field source pass-through
ApplicantCharacteristic
ApplicantCharacteristics
Reference
CommonProperty
optional collection Reflects important characteristics of the applicant's home situation. object reference; optional collection Ed-Fi field source pass-through
HighestCompletedLevelOfEducation
HighestCompletedLevelOfEducationDescriptor
Reference
DescriptorProperty
Allowed values: governed HighestCompletedLevelOfEducationDescriptor values; no matching handbook descriptor entry found.
optional The extent of formal instruction an individual has received. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
YearsOfPriorProfessionalExperience
YearsOfPriorProfessionalExperience
Number
DECIMAL(5, 2)
optional The total number of years that an individual has previously held a similar professional position in one or more education institutions. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
YearsOfPriorTeachingExperience
YearsOfPriorTeachingExperience
Number
DECIMAL(5, 2)
optional The total number of years that an individual has previously held a teaching position in one or more education institutions. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
HighlyQualifiedTeacher
HighlyQualifiedTeacher
Boolean
BOOLEAN
optional An indication of whether a teacher is classified as highly qualified for his/her assignment according to state definition. This attribute indicates the teacher is highly qualified for all sections being taught. boolean true/false; optional Ed-Fi field source pass-through
HighlyQualifiedAcademicSubject
HighlyQualifiedAcademicSubjects
Reference
DescriptorProperty
Allowed values: governed HighlyQualifiedAcademicSubjectsDescriptor values; no matching handbook descriptor entry found.
optional collection The academic subject(s) in which the staff is deemed to be "highly qualified". object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradePointAverage
GradePointAverages
Reference
CommonProperty
optional collection Data that provides information on a measure of average performance in a group of courses taken by an individual. object reference; optional collection Ed-Fi field source pass-through
EducatorPreparationProgramName
EducatorPreparationProgramNames
String
VARCHAR(255)
optional collection The teacher preparation program(s) completed by the teacher. max length 255 characters; optional collection Ed-Fi field source pass-through
Used By (1)
  • Application.ApplicantProfile (required)

UDM primitive/simple type String

ApplicantProfileIdentifier #

dictionary-only type

Identifier assigned to a person making formal application for an open staff position.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 32
Used By (1)
  • ApplicantProfile.ApplicantProfileIdentifier (required)

Canonical UDM resource Class

Application #

/ed-fi/applications

An application for employment or acceptance.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.Application edfi.ApplicationRecruitmentEventAttendance edfi.ApplicationScoreResult edfi.ApplicationTerm
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (19)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ApplicationIdentifier
ApplicationIdentifier
String
VARCHAR(20)
required
identity
ODS/API identity
Identifier assigned to the application for a candidate or open staff position. max length 20 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization to which the applicant is submitting their application. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ApplicantProfile
ApplicantProfileReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The profile of the applicant submitting the application. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ApplicationDate
ApplicationDate
Date
DATE
required The month, day, and year the application was submitted. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
Term
Terms
Reference
DescriptorProperty
Allowed values: governed TermsDescriptor values; no matching handbook descriptor entry found.
optional collection The intended term of enrollment for which the application is being submitted. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ApplicationStatus
ApplicationStatusDescriptor
Reference
DescriptorProperty
Allowed values: ApplicationStatusDescriptor (17 Ed-Fi seed values)
required Indicates the current status of the application. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CurrentEmployee
CurrentEmployee
Boolean
BOOLEAN
optional Indicator as to whether the applicant is a current employee of the school district. boolean true/false; optional Ed-Fi field source pass-through
AcademicSubject
AcademicSubjectDescriptor
Reference
DescriptorProperty
Allowed values: AcademicSubjectDescriptor (21 Ed-Fi seed values)
optional The academic subject for which the application is made. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AcceptedDate
AcceptedDate
Date
DATE
optional The date of acceptance, if offered. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ApplicationSource
ApplicationSourceDescriptor
Reference
DescriptorProperty
Allowed values: ApplicationSourceDescriptor (20 Ed-Fi seed values)
optional Specifies the source for the application. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
FirstContactDate
FirstContactDate
Date
DATE
optional Date applicant was first contacted after submitting application. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
HighNeedsAcademicSubject
HighNeedsAcademicSubjectDescriptor
Reference
DescriptorProperty
Allowed values: governed HighNeedsAcademicSubjectDescriptor values; no matching handbook descriptor entry found.
optional The high need academic subject for the application, if any. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
HireStatus
HireStatusDescriptor
Reference
DescriptorProperty
Allowed values: HireStatusDescriptor (7 Ed-Fi seed values)
optional Indicates the current status of the application for hire. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
HiringSource
HiringSourceDescriptor
Reference
DescriptorProperty
Allowed values: HiringSourceDescriptor (3 Ed-Fi seed values)
optional The source for the application. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
WithdrawDate
WithdrawDate
Date
DATE
optional The date the application was withdrawn by the applicant. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
WithdrawReason
WithdrawReasonDescriptor
Reference
DescriptorProperty
Allowed values: WithdrawReasonDescriptor (5 Ed-Fi seed values)
optional Reason applicant withdrew application. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ScoreResult
ScoreResults
Reference
CommonProperty
optional collection A meaningful score or statistical expression of the performance of an individual. The results can be expressed as a number, percentile, range, level, etc. object reference; optional collection Ed-Fi field source pass-through
OpenStaffPosition
OpenStaffPositionReference
Reference
DomainEntityProperty
optional The open staff position associated with the application. object reference; optional Ed-Fi field source pass-through
RecruitmentEventAttendance
RecruitmentEventAttendances
Reference
DomainEntityProperty
optional collection The recruitment event(s) associated with the application. object reference; optional collection Ed-Fi field source pass-through
Used By (2)
  • CandidateEducatorPreparationProgramAssociation.Application (optional)
  • ApplicationEvent.Application (required)

UDM primitive/simple type Date

ApplicationDate #

dictionary-only type

The month, day, and year the application was submitted.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Application.ApplicationDate (required)

UDM primitive/simple type Number

ApplicationEvaluationScore #

dictionary-only type

The evaluation score for the application, if applicable.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 36
  • decimal places: 18

Canonical UDM resource Class

ApplicationEvent #

/ed-fi/applicationEvents

The life cycle event associated with an application.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.ApplicationEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EventDate
EventDate
Date
DATE
required
identity
ODS/API identity
The date of the application event, or begin date if an interval. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EventEndDate
EventEndDate
Date
DATE
optional The end date of the event, if an interval. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
SequenceNumber
SequenceNumber
Number
INT
required
identity
ODS/API identity
The sequence number of the application events. This is used to discriminate between multiple events of the same type on the same day. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ApplicationEventType
ApplicationEventTypeDescriptor
Reference
DescriptorProperty
Allowed values: ApplicationEventTypeDescriptor (14 Ed-Fi seed values)
required
identity
ODS/API identity
Description of the application event. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ApplicationEvaluationScore
ApplicationEvaluationScore
Number
DECIMAL(36, 18)
optional The evaluation score for the application, if applicable. numeric precision 36, scale 18; optional Ed-Fi field source pass-through
ApplicationEventResult
ApplicationEventResultDescriptor
Reference
DescriptorProperty
Allowed values: ApplicationEventResultDescriptor (6 Ed-Fi seed values)
optional The recommendation, result or conclusion of the application event. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Application
ApplicationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the application associated with the application event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required The identifier for the school year. object reference; required Ed-Fi field source pass-through
Term
TermDescriptor
Reference
DescriptorProperty
Allowed values: TermDescriptor (16 Ed-Fi seed values)
optional Defines the term of a session during the school year. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through

Descriptor catalog Descriptor

ApplicationEventResult #

/ed-fi/descriptors/applicationEventResultDescriptors

The recommendation, result, or conclusion of an application event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.ApplicationEventResultDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ApplicationEventResultDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Advance Advance Advance to next stage uri://ed-fi.org/ApplicationEventResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Highly Recommend Highly Recommend Advance to next stage, highly recommended uri://ed-fi.org/ApplicationEventResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NA NA Not Available uri://ed-fi.org/ApplicationEventResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Recommend Recommend Advance to next stage, recommended uri://ed-fi.org/ApplicationEventResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reservations Reservations Advance to next stage with reservations uri://ed-fi.org/ApplicationEventResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Screen out Screen out Screen out uri://ed-fi.org/ApplicationEventResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • ApplicationEvent.ApplicationEventResult (optional)

Descriptor catalog Descriptor

ApplicationEventType #

/ed-fi/descriptors/applicationEventTypeDescriptors

The description of an application event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.ApplicationEventTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (14 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ApplicationEventTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accepted Accepted Offer accepted uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Communication Communication Contact with the applicant uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Extended Extended Offer extended uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Interview Interview In Person Interview uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No response No response Discarded due to no response from applicant uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Phone Interview Phone Interview Phone Interview uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pre-screened Pre-screened Pre-screened uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Recommendations Recommendations Recommendations submitted uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rejected Rejected Offer rejected uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sample Lesson Sample Lesson Sample Lesson uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Visit School Visit School Visit uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Selected Selected Selected uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Video Video Video Submitted uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Withdrawn Withdrawn Withdrawn uri://ed-fi.org/ApplicationEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • ApplicationEvent.ApplicationEventType (required)

UDM primitive/simple type String

ApplicationIdentifier #

dictionary-only type

Identifier assigned to the application for an open staff position.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 20
Used By (1)
  • Application.ApplicationIdentifier (required)

Descriptor catalog Descriptor

ApplicationSource #

/ed-fi/descriptors/applicationSourceDescriptors

The descriptor holds the source for the application.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.ApplicationSourceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (20 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ApplicationSourceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Craigslist Craigslist Craigslist uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
District Website District Website District Website uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Email Email Email uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Employee Employee Current Employee uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Facebook Facebook Facebook uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Indeed Indeed Indeed uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Instagram Instagram Instagram uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Job Fair Job Fair Community Job Fair uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
K12jobs.com K12jobs.com K12jobs.com uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LinkedIn LinkedIn LinkedIn uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Newspaper Newspaper Newspaper uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Print Ad Print Ad Print Advertisement uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Radio Radio Radio uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teachers-Teachers.com Teachers-Teachers.com Teachers-Teachers.com uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TFANet TFANet TFANet Job Board uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Twitter Twitter Twitter uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
University University University Job Fair uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
USTeach.com USTeach.com USTeach.com uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Word of Mouth Word of Mouth Word of Mouth uri://ed-fi.org/ApplicationSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Application.ApplicationSource (optional)

Descriptor catalog Descriptor

ApplicationStatus #

/ed-fi/descriptors/applicationStatusDescriptors

The descriptor holds the current status of the application.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.ApplicationStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (17 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ApplicationStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accepted Accepted Offer accepted uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Candidate Pool Candidate Pool Candidate Pool uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Extended Extended Offer extended uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
In Progress In Progress In Progress uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Incomplete Incomplete Incomplete uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Interview Interview In Person Interview uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No response No response No response from applicant uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Phone Interview Phone Interview Phone Interview uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pre-screened Pre-screened Pre-screened uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Recommendations Recommendations Recommendations submitted uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rejected Rejected Rejected uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sample Lesson Sample Lesson Sample Lesson uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Visit School Visit School Visit uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Selected Selected Selected uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Submitted Submitted Submitted uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Video Video Video Submitted uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Withdrawn Withdrawn Withdrawn uri://ed-fi.org/ApplicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Application.ApplicationStatus (required)

UDM primitive/simple type Boolean

Applied #

dictionary-only type

Indicator of whether the prospect applied for a position.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • RecruitmentEventAttendance.Applied (optional)

UDM primitive/simple type Time

ArrivalTime #

dictionary-only type

The time of day the student arrived for the attendance event in ISO 8601 format.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolAttendanceEvent.ArrivalTime (optional)

UDM primitive/simple type Time

ArrivalTime #

dictionary-only type

The time of day the student arrived for the attendance event in ISO 8601 format.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSectionAttendanceEvent.ArrivalTime (optional)

UDM primitive/simple type Date

AsOfDate (LocalActual) #

dictionary-only type

The date of the reported amount for the account.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • LocalActual.AsOfDate (identity)

UDM primitive/simple type Date

AsOfDate (LocalBudget) #

dictionary-only type

The date of the reported amount for the account.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • LocalBudget.AsOfDate (identity)

UDM primitive/simple type Date

AsOfDate (LocalContractedStaff) #

dictionary-only type

The date of the reported amount for the account.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • LocalContractedStaff.AsOfDate (identity)

UDM primitive/simple type Date

AsOfDate (LocalEncumbrance) #

dictionary-only type

The date of the reported amount for the account.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • LocalEncumbrance.AsOfDate (identity)

UDM primitive/simple type Date

AsOfDate (LocalPayroll) #

dictionary-only type

The date of the reported amount for the account.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • LocalPayroll.AsOfDate (identity)

UDM primitive/simple type Date

AsOfDate (StudentHealth) #

dictionary-only type

Date of last update of the student's health record.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentHealth.AsOfDate (required)

UDM primitive/simple type Number

AssessedMinutes #

dictionary-only type

Reported time student was assessed in minutes.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Canonical UDM resource Class

Assessment #

/ed-fi/assessments

This entity represents a tool, instrument, process, or exhibition composed of a systematic sampling of behavior for measuring a student's competence, knowledge, skills, or behavior. An assessment can be used to measure differences in individuals or groups and changes in performance from one occasion to the next.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.Assessment edfi.AssessmentAssessedGradeLevel edfi.AssessmentContentStandard edfi.AssessmentContentStandardAuthor edfi.AssessmentIdentificationCode edfi.AssessmentLanguage edfi.AssessmentPerformanceLevel edfi.AssessmentPeriod edfi.AssessmentPlatformType edfi.AssessmentProgram edfi.AssessmentScore edfi.AssessmentSection
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (22)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AssessmentIdentifier
AssessmentIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to an assessment. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AssessmentTitle
AssessmentTitle
String
VARCHAR(255)
required The title or name of the assessment. max length 255 characters; required Ed-Fi field source pass-through
AssessmentIdentificationCode
IdentificationCodes
Reference
CommonProperty
optional collection A unique number or alphanumeric code assigned to an assessment by a school, school system, a state, or other agency or entity. object reference; optional collection Ed-Fi field source pass-through
AssessmentCategory
AssessmentCategoryDescriptor
Reference
DescriptorProperty
Allowed values: AssessmentCategoryDescriptor (44 Ed-Fi seed values)
optional The category of an assessment based on format and content. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AcademicSubject
AcademicSubjectDescriptor
Reference
DescriptorProperty
Allowed values: AcademicSubjectDescriptor (21 Ed-Fi seed values)
required The description of the content or subject area (e.g., arts, mathematics, reading, stenography, a foreign language, or composite if multi-subject) of an assessment. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssessedGradeLevel
AssessedGradeLevels
Reference
DescriptorProperty
Allowed values: governed AssessedGradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The grade level(s) for which an assessment is designed. The semantics of null is assumed to mean that the assessment is not associated with any grade level. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssessmentScore
Scores
Reference
CommonProperty
optional collection Definition of the scores to be expected from this assessment. object reference; optional collection Ed-Fi field source pass-through
AssessmentPerformanceLevel
PerformanceLevels
Reference
CommonProperty
optional collection Definition of the performance levels and the associated cut scores. Three styles are supported: 1. Specification of performance level by minimum and maximum score, 2. Specification of performance level by cut score, using only minimum score, 3. Specification of performance level without any mapping to scores. object reference; optional collection Ed-Fi field source pass-through
ContentStandard
ContentStandard
Reference
CommonProperty
optional An indication as to whether an assessment conforms to a standard (e.g., local standard, statewide standard, regional standard, association standard). object reference; optional Ed-Fi field source pass-through
AssessmentForm
AssessmentForm
String
VARCHAR(60)
optional Identifies the form of the assessment, for example a regular versus makeup form, multiple choice versus constructed response, etc. max length 60 characters; optional Ed-Fi field source pass-through
Language
Languages
Reference
DescriptorProperty
Allowed values: governed LanguagesDescriptor values; no matching handbook descriptor entry found.
optional collection An indication of the languages in which the assessment is designed. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssessmentVersion
AssessmentVersion
Number
INT
optional The version identifier for the assessment. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
RevisionDate
RevisionDate
Date
DATE
optional The month, day, and year that the conceptual design for the assessment was most recently revised substantially. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
MaxRawScore
MaxRawScore
Number
DECIMAL(15, 5)
optional The maximum raw score achievable across all assessment items that are correct and scored at the maximum. numeric precision 15, scale 5; optional Ed-Fi field source pass-through
Nomenclature
Nomenclature
String
VARCHAR(100)
optional Reflects the specific nomenclature used for assessment. max length 100 characters; optional Ed-Fi field source pass-through
AssessmentPeriod
Periods
Reference
CommonProperty
optional collection The period or window in which an assessment is supposed to be administered. object reference; optional collection Ed-Fi field source pass-through
AssessmentFamily
AssessmentFamily
String
VARCHAR(60)
optional The assessment family this assessment is a member of. max length 60 characters; optional Ed-Fi field source pass-through
SectionOrProgramChoice
SectionOrProgramChoice
Reference
ChoiceProperty
optional The section(s) to which the assessment is associated. object reference; optional Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required
identity
ODS/API identity
Namespace for the assessment. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
optional The education organization for which the assessment was developed and in which it was employed. object reference; optional Ed-Fi field source pass-through
AdaptiveAssessment
AdaptiveAssessment
Boolean
BOOLEAN
optional Indicates that the assessment is adaptive. boolean true/false; optional Ed-Fi field source pass-through
PlatformType
PlatformTypes
Reference
DescriptorProperty
Allowed values: governed PlatformTypesDescriptor values; no matching handbook descriptor entry found.
optional collection The platforms with which the assessment may be delivered. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (7)
  • RequiredAssessment.Assessment (required)
  • AssessmentAdministration.Assessment (required)
  • AssessmentBatteryPart.Assessment (required)
  • AssessmentItem.Assessment (required)
  • AssessmentScoreRangeLearningStandard.Assessment (required)
  • ObjectiveAssessment.Assessment (required)
  • StudentAssessment.Assessment (required)

Canonical UDM resource Class

AssessmentAdministration #

/ed-fi/assessmentAdministrations

The anticipated administration of an assessment under the purview of an education organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentAdministration edfi.AssessmentAdministrationAssessmentBatteryPart edfi.AssessmentAdministrationPeriod
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AssigningEducationOrganization
AssigningEducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization which contracts for or administers an assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Assessment
AssessmentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AdministrationIdentifier
AdministrationIdentifier
String
VARCHAR(255)
required
identity
ODS/API identity
The title or name of the assessment in the context of its administration. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AssessmentAdministrationPeriod
Periods
Reference
CommonProperty
optional collection The anticipated dates for the assessment or administration window. object reference; optional collection Ed-Fi field source pass-through
AssessmentBatteryPart
AssessmentBatteryParts
Reference
DomainEntityProperty
optional collection A reference to the parts of the assessment battery that are offered in this administration of the assessment. object reference; optional collection Ed-Fi field source pass-through
Used By (2)
  • AssessmentAdministrationParticipation.AssessmentAdministration (required)
  • StudentAssessmentRegistration.AssessmentAdministration (required)

Canonical UDM resource Class

AssessmentAdministrationParticipation #

/ed-fi/assessmentAdministrationParticipations

Identifies the point of contact for the administration of an assessment under the purview of an education organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentAdministrationParticipation edfi.AssessmentAdministrationParticipationAdministrationPointOfContact
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AssessmentAdministration
AssessmentAdministrationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the assessment administration for which participation is being indicated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ParticipatingEducationOrganization
ParticipatingEducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization for which participation is being indicated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AdministrationPointOfContact
AdministrationPointOfContacts
Reference
CommonProperty
optional collection Pre-identified contacts for education organizations administering the assessment. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM resource Class

AssessmentBatteryPart #

/ed-fi/assessmentBatteryParts

The parts organized for administering an assessessment which together provide a comprehensive assessment of the students.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentBatteryPart edfi.AssessmentBatteryPartObjectiveAssessment
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Assessment
AssessmentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AssessmentBatteryPartName
AssessmentBatteryPartName
String
VARCHAR(65)
required
identity
ODS/API identity
The name of the part of an assessment battery. max length 65 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ObjectiveAssessment
ObjectiveAssessments
Reference
DomainEntityProperty
optional collection A reference to the objective assessment(s) that are administered by the assessment battery part. object reference; optional collection Ed-Fi field source pass-through
Used By (2)
  • StudentAssessmentRegistrationBatteryPartAssociation.AssessmentBatteryPart (required)
  • AssessmentAdministration.AssessmentBatteryPart (optional collection)

UDM primitive/simple type String

AssessmentBatteryPartName #

dictionary-only type

The name of the part of a assessment battery.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 65
Used By (1)
  • AssessmentBatteryPart.AssessmentBatteryPartName (required)

Descriptor catalog Descriptor

AssessmentCategory #

/ed-fi/descriptors/assessmentCategoryDescriptors

This descriptor holds the category of an assessment based on format and content.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (44 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AssessmentCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Achievement test Achievement test Achievement test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Advanced Placement Advanced Placement Advanced Placement uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alternate assessment/ELL Alternate assessment/ELL Alternate assessment/ELL uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alternate assessment/grade-level standards Alternate assessment/grade-level standards Alternate assessment/grade-level standards uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alternative assessment/modified standards Alternative assessment/modified standards Alternative assessment/modified standards uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Aptitude test Aptitude test Aptitude test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Attitudinal test Attitudinal test Attitudinal test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Benchmark test Benchmark test Benchmark test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Class quiz Class quiz Class quiz uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Class test Class test Class test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cognitive and perceptual skills test Cognitive and perceptual skills test Cognitive and perceptual skills test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College entrance exam College entrance exam College entrance exam uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Developmental observation Developmental observation Developmental observation uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Diagnostic Diagnostic Diagnostic uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Learning - Approaches toward learning Early Learning - Approaches toward learning Early Learning - Approaches toward learning uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Learning - Cognition and general knowledge Early Learning - Cognition and general knowledge Early Learning - Cognition and general knowledge uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Learning - Language and literacy development Early Learning - Language and literacy development Early Learning - Language and literacy development uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Learning - Physical well-being and motor dev Early Learning - Physical well-being and motor development Early Learning - Physical well-being and motor development uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Learning - Social and emotional development Early Learning - Social and emotional development Early Learning - Social and emotional development uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
English proficiency screening test English proficiency screening test English proficiency screening test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Foreign language proficiency test Foreign language proficiency test Foreign language proficiency test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Formative Formative Formative uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Interest inventory Interest inventory Interest inventory uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Interim Interim Interim uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
International Baccalaureate International Baccalaureate International Baccalaureate uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Language proficiency test Language proficiency test Language proficiency test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Manual dexterity test Manual dexterity test Manual dexterity test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mental ability (intelligence) test Mental ability (intelligence) test Mental ability (intelligence) test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Performance assessment Performance assessment Performance assessment uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Personality test Personality test Personality test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Portfolio assessment Portfolio assessment Portfolio assessment uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Prekindergarten Readiness Prekindergarten Readiness Prekindergarten Readiness uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Psychological test Psychological test Psychological test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Psychomotor test Psychomotor test Psychomotor test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reading readiness test Reading readiness test Reading readiness test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State alternate assessment/ELL State alternate assessment/ELL State alternate assessment/ELL uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State alternative assessment/grade-level standards State alternative assessment/grade-level standards State alternative assessment/grade-level standards uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State alternative assessment/modified standards State alternative assessment/modified standards State alternative assessment/modified standards uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State assessment State assessment State assessment uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State English proficiency test State English proficiency test State English proficiency test uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State high school course assessment State high school course assessment State high school course assessment uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State high school subject assessment State high school subject assessment State high school subject assessment uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State summative assessment 3-8 general State summative assessment 3-8 general State summative assessment 3-8 general uri://ed-fi.org/AssessmentCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Assessment.AssessmentCategory (optional)

UDM common/composite Composite Part

AssessmentCustomization #

dictionary-only type

An untyped key and value pair that is used to provide additional information needed for vendor registration, administration, or reporting.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CustomizationKey
CustomizationKey
String
VARCHAR(60)
required
identity
ODS/API identity
An agreed upon identifier for the custom information. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CustomizationValue
CustomizationValue
String
VARCHAR(1024)
required Custom value for the indicated CustomizationKey. max length 1024 characters; required Ed-Fi field source pass-through
Used By (1)
  • StudentAssessmentRegistration.AssessmentCustomization (optional collection)

UDM primitive/simple type String

AssessmentFamily #

dictionary-only type

The AssessmentFamily an Assessment is a member of.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • Assessment.AssessmentFamily (optional)

UDM primitive/simple type String

AssessmentForm #

dictionary-only type

Identifies the form of the assessment, for example a regular versus makeup form, multiple choice versus contstructed response, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • Assessment.AssessmentForm (optional)

UDM common/composite Composite Part

AssessmentIdentificationCode #

dictionary-only type

A unique number or alphanumeric code assigned to an assessment by a school, school system, a state, or other agency or entity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
IdentificationCode
IdentificationCode
String
VARCHAR(120)
required A unique number or alphanumeric code assigned to an assessment by a school, school system, state, or other agency or entity. max length 120 characters; required Ed-Fi field source pass-through
AssessmentIdentificationSystem
AssessmentIdentificationSystemDescriptor
Reference
DescriptorProperty
Allowed values: AssessmentIdentificationSystemDescriptor (8 Ed-Fi seed values)
required
identity
ODS/API identity
A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to an assessment. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssigningOrganizationIdentificationCode
AssigningOrganizationIdentificationCode
String
VARCHAR(120)
optional The organization code or name assigning the assessment identification code. max length 120 characters; optional Ed-Fi field source pass-through
Used By (1)
  • Assessment.AssessmentIdentificationCode (optional collection)

Descriptor catalog Descriptor

AssessmentIdentificationSystem #

/ed-fi/descriptors/assessmentIdentificationSystemDescriptors

This descriptor holds a coding scheme that is used for identification and record-keeping purposes by schools, social services or other agencies to refer to an assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentIdentificationSystemDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AssessmentIdentificationSystemDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
District District District uri://ed-fi.org/AssessmentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Federal Federal uri://ed-fi.org/AssessmentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
National National National uri://ed-fi.org/AssessmentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/AssessmentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Federal Other Federal Other Federal uri://ed-fi.org/AssessmentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/AssessmentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State State uri://ed-fi.org/AssessmentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Test Contractor Test Contractor Test Contractor uri://ed-fi.org/AssessmentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • AssessmentIdentificationCode.AssessmentIdentificationSystem (required)

Canonical UDM resource Class

AssessmentItem #

/ed-fi/assessmentItems

This entity represents one of many single measures that make up an assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentItem edfi.AssessmentItemLearningStandard edfi.AssessmentItemPossibleResponse
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
IdentificationCode
IdentificationCode
String
VARCHAR(120)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to a space, room, site, building, individual, organization, program, or institution by a school, school system, state, or other agency or entity. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AssessmentItemCategory
AssessmentItemCategoryDescriptor
Reference
DescriptorProperty
Allowed values: AssessmentItemCategoryDescriptor (22 Ed-Fi seed values)
optional Category or type of the assessment item. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MaxRawScore
MaxRawScore
Number
DECIMAL(15, 5)
optional The maximum raw score achievable across all assessment items that are correct and scored at the maximum. numeric precision 15, scale 5; optional Ed-Fi field source pass-through
ItemText
ItemText
String
VARCHAR(1024)
optional The text of the item. max length 1024 characters; optional Ed-Fi field source pass-through
PossibleResponse
PossibleResponses
Reference
CommonProperty
optional collection A possible response to an assessment item. object reference; optional collection Ed-Fi field source pass-through
ExpectedTimeAssessed
ExpectedTimeAssessed
Number
VARCHAR(30)
optional The duration allotted for the assessment item expressed in minutes. max length 30 characters; optional Ed-Fi field source pass-through
Nomenclature
Nomenclature
String
VARCHAR(100)
optional Reflects the specific nomenclature used for assessment item. max length 100 characters; optional Ed-Fi field source pass-through
LearningStandard
LearningStandards
Reference
DomainEntityProperty
optional collection Learning standard tested by this item. object reference; optional collection Ed-Fi field source pass-through
Assessment
AssessmentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the assessment item to an existing assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AssessmentItemURI
AssessmentItemURI
String
VARCHAR(255)
optional The URI (typical a URL) pointing to the entry in an assessment item bank, which describes this content item. max length 255 characters; optional Ed-Fi field source pass-through
Used By (2)
  • StudentAssessmentItem.AssessmentItem (required)
  • ObjectiveAssessment.AssessmentItem (optional collection)

Descriptor catalog Descriptor

AssessmentItemCategory #

/ed-fi/descriptors/assessmentItemCategoryDescriptors

Category or type of the assessment item.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentItemCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (22 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AssessmentItemCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Analytic Analytic Analytic uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Essay Essay Essay uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fill-in-the-blank Fill-in-the-blank Fill-in-the-blank uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Innovative Innovative Innovative uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Labeling Labeling Labeling uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
List Question List Question List Question uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Matching Matching Matching uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Math Matrix Math Matrix Math Matrix uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Multiple-choice Multiple-choice Multiple-choice uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Multiple-choice multi-select Multiple-choice multi-select Multiple-choice multi-select uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other constructed response Other constructed response Other constructed response uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other extended response Other extended response Other extended response uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Performance task Performance task Performance task uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Prose Prose Prose uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reordering Reordering Reordering uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rubric Rubric Rubric uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Short answer Short answer Short answer uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Show your work Show your work Show your work uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Substitution Substitution Substitution uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
True-False True-False True-False uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Visual representation Visual representation Visual representation uri://ed-fi.org/AssessmentItemCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • AssessmentItem.AssessmentItemCategory (optional)

Descriptor catalog Descriptor

AssessmentItemResult #

/ed-fi/descriptors/assessmentItemResultDescriptors

The analyzed result of a student's response to an assessment item.. For example: Correct Incorrect Met standard ...

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentItemResultDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AssessmentItemResultDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Above Standard Above Standard Above Standard uri://ed-fi.org/AssessmentItemResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Below Standard Below Standard Below Standard uri://ed-fi.org/AssessmentItemResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Correct Correct Correct uri://ed-fi.org/AssessmentItemResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Incorrect Incorrect Incorrect uri://ed-fi.org/AssessmentItemResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Met Standard Met Standard Met Standard uri://ed-fi.org/AssessmentItemResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Partially Correct Partially Correct Partially Correct uri://ed-fi.org/AssessmentItemResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentAssessmentItem.AssessmentItemResult (required)

UDM common/composite Composite Part

AssessmentPerformanceLevel #

dictionary-only type

Definition of the performance levels and the associated cut scores. Three styles are supported: 1. Specification of performance level by minimum and maximum score 2. Specification of performance level by cut score, using only minimum score 3. Specification of performance level without any mapping to scores

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PerformanceLevel
PerformanceLevelDescriptor
Reference
DescriptorProperty
Allowed values: PerformanceLevelDescriptor (14 Ed-Fi seed values)
required
identity
ODS/API identity
The performance level(s) defined for the assessment. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssessmentReportingMethod
AssessmentReportingMethodDescriptor
Reference
DescriptorProperty
Allowed values: AssessmentReportingMethodDescriptor (44 Ed-Fi seed values)
required
identity
ODS/API identity
The method that the instructor of the class uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or numerical grade. In some cases, more than one type of reporting method may be used. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MinimumScore
MinimumScore
String
VARCHAR(35)
optional The minimum score required to make the indicated level of performance. max length 35 characters; optional Ed-Fi field source pass-through
MaximumScore
MaximumScore
String
VARCHAR(35)
optional The maximum score to make the indicated level of performance. max length 35 characters; optional Ed-Fi field source pass-through
ResultDatatypeType
ResultDatatypeTypeDescriptor
Reference
DescriptorProperty
Allowed values: ResultDatatypeTypeDescriptor (6 Ed-Fi seed values)
optional The datatype of the result. The results can be expressed as a number, percentile, range, level, etc. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PerformanceLevelIndicatorName
PerformanceLevelIndicatorName
String
VARCHAR(60)
optional The name of the indicator being measured for a collection of performance level values. max length 60 characters; optional Ed-Fi field source pass-through
Used By (3)
  • RequiredAssessment.RequiredAssessmentPerformanceLevel (optional)
  • Assessment.AssessmentPerformanceLevel (optional collection)
  • ObjectiveAssessment.AssessmentPerformanceLevel (optional collection)

UDM common/composite Composite Part

AssessmentPeriod #

dictionary-only type

The period or window in which an assessment is supposed to be administered.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AssessmentPeriod
AssessmentPeriodDescriptor
Reference
DescriptorProperty
Allowed values: AssessmentPeriodDescriptor (6 Ed-Fi seed values)
required
identity
ODS/API identity
The period of time in which an assessment is supposed to be administered (e.g., Beginning of Year, Middle of Year, End of Year). object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
optional The first date the assessment is to be administered. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The last date the assessment is to be administered. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (2)
  • Assessment.AssessmentPeriod (optional collection)
  • StudentAssessment.AssessmentPeriod (optional)

Descriptor catalog Descriptor

AssessmentPeriod #

/ed-fi/descriptors/assessmentPeriodDescriptors

This descriptor holds the period of time window in which an assessment is supposed to be administered.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentPeriodDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AssessmentPeriodDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Beginning of Year Beginning of Year Beginning of Year uri://ed-fi.org/AssessmentPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
End of Year End of Year End of Year uri://ed-fi.org/AssessmentPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fall Fall Fall uri://ed-fi.org/AssessmentPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Middle of Year Middle of Year Middle of Year uri://ed-fi.org/AssessmentPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Spring Spring Spring uri://ed-fi.org/AssessmentPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Summer Summer Summer uri://ed-fi.org/AssessmentPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • AssessmentPeriod.AssessmentPeriod (required)

Descriptor catalog Descriptor

AssessmentReportingMethod #

/ed-fi/descriptors/assessmentReportingMethodDescriptors

This descriptor defines the method that the instructor of the class uses to report the performance and achievement of all students. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or a numerical grade.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment, Enrollment, Graduation, Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentReportingMethodDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (44 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AssessmentReportingMethodDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Achievement/proficiency level Achievement/proficiency level Achievement/proficiency level uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ACT score DEPRECATED: ACT score DEPRECATED: ACT score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Adaptive scale score Adaptive scale score Adaptive scale score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Age score Age score Age score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
C-scaled scores C-scaled scores C-scaled scores uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College Board examination scores DEPRECATED: College Board examination scores DEPRECATED: College Board examination scores uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Composite Rating Composite Rating Composite Rating uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Composite Score Composite Score Composite Score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Composition Score Composition Score Composition Score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grade equivalent or grade-level indicator Grade equivalent or grade-level indicator Grade equivalent or grade-level indicator uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graduation score Graduation score Graduation score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Growth/value-added/indexing Growth/value-added/indexing Growth/value-added/indexing uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
International Baccalaureate score DEPRECATED: International Baccalaureate score DEPRECATED: International Baccalaureate score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Letter grade/mark Letter grade/mark Letter grade/mark uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lexile Measure Lexile Measure Lexile Measure uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mastery level Mastery level Mastery level uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
National College-Bound Percentile National College-Bound Percentile National College-Bound Percentile uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Normal curve equivalent Normal curve equivalent Normal curve equivalent uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Normalized standard score Normalized standard score Normalized standard score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not applicable DEPRECATED: Not applicable DEPRECATED: Not applicable uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Number score Number score Number score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pass-fail Pass-fail Pass-fail uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Percentile Percentile Percentile uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Percentile rank Percentile rank Percentile rank uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Proficiency level Proficiency level Proficiency level uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Promotion score Promotion score Promotion score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quantile Measure Quantile Measure Quantile Measure uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ranking Ranking Ranking uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ratio IQ's Ratio IQ's Ratio IQ's uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Raw score Raw score Raw score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
RIT scale score RIT scale score RIT scale score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Scale score Scale score Scale score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Standard age score Standard age score Standard age score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Standard error measurement Standard error measurement Standard error measurement uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Stanine score Stanine score Stanine score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State College-Bound Percentile State College-Bound Percentile State College-Bound Percentile uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sten score Sten score Sten score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
T-score T-score T-score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Theta Theta Theta uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vertical Scale Score Vertical Scale Score Vertical Scale Score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vertical score Vertical score Vertical score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Workplace readiness score Workplace readiness score Workplace readiness score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Z-score Z-score Z-score uri://ed-fi.org/AssessmentReportingMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (5)
  • AssessmentPerformanceLevel.AssessmentReportingMethod (required)
  • AssessmentScore.AssessmentReportingMethod (required)
  • PerformanceLevel.AssessmentReportingMethod (required)
  • ScoreResult.AssessmentReportingMethod (required)
  • AssessmentScoreRangeLearningStandard.AssessmentReportingMethod (optional)

UDM primitive/simple type String

AssessmentResponse #

dictionary-only type

A student's response to a stimulus on a test.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • StudentAssessmentItem.AssessmentResponse (optional)

UDM common/composite Composite Part

AssessmentScore #

dictionary-only type

Definition of the scores to be expected from this assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AssessmentReportingMethod
AssessmentReportingMethodDescriptor
Reference
DescriptorProperty
Allowed values: AssessmentReportingMethodDescriptor (44 Ed-Fi seed values)
required
identity
ODS/API identity
The method that the administrator of the assessment uses to report the performance and achievement of all students. It may be a qualitative method such as performance level descriptors or a quantitative method such as a numerical grade or cut score. More than one type of reporting method may be used. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MinimumScore
MinimumScore
String
VARCHAR(35)
optional The minimum score possible on the assessment. max length 35 characters; optional Ed-Fi field source pass-through
MaximumScore
MaximumScore
String
VARCHAR(35)
optional The maximum score possible on the assessment. max length 35 characters; optional Ed-Fi field source pass-through
ResultDatatypeType
ResultDatatypeTypeDescriptor
Reference
DescriptorProperty
Allowed values: ResultDatatypeTypeDescriptor (6 Ed-Fi seed values)
optional The datatype of the result. The results can be expressed as a number, percentile, range, level, etc. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (3)
  • RequiredAssessment.RequiredAssessmentScore (optional collection)
  • Assessment.AssessmentScore (optional collection)
  • ObjectiveAssessment.AssessmentScore (optional collection)

Canonical UDM resource Class

AssessmentScoreRangeLearningStandard #

/ed-fi/assessmentScoreRangeLearningStandards

Score ranges of an assessment associated with one or more learning standards.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssessmentScoreRangeLearningStandard edfi.AssessmentScoreRangeLearningStandardLearningStandard
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Assessment
AssessmentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the assessment with which the score range is associated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LearningStandard
LearningStandards
Reference
DomainEntityProperty
required collection Learning standard associated with the score range. object reference; required collection Ed-Fi field source pass-through
ScoreRangeId
ScoreRangeId
String
VARCHAR(120)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to the score range associated with one or more learning standards. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AssessmentReportingMethod
AssessmentReportingMethodDescriptor
Reference
DescriptorProperty
Allowed values: AssessmentReportingMethodDescriptor (44 Ed-Fi seed values)
optional The assessment reporting method defined (e.g., scale score, RIT scale score) associated with the referenced learning standard(s). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MinimumScore
MinimumScore
String
VARCHAR(35)
required The minimum score in the score range. max length 35 characters; required Ed-Fi field source pass-through
MaximumScore
MaximumScore
String
VARCHAR(35)
required The maximum score in the score range. max length 35 characters; required Ed-Fi field source pass-through
ObjectiveAssessment
ObjectiveAssessmentReference
Reference
DomainEntityProperty
optional Reference to the objective assessment with which the score range is associated. object reference; optional Ed-Fi field source pass-through

UDM primitive/simple type String

AssessmentTitle #

dictionary-only type

The title or name of the assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • Assessment.AssessmentTitle (required)

UDM primitive/simple type Number

AssessmentVersion #

dictionary-only type

The version identifier for the assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Assessment.AssessmentVersion (optional)

UDM primitive/simple type String

AssigningOrganizationIdentificationCode #

dictionary-only type

The organization code or name assigning the identification code

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (5)
  • CandidateIdentificationCode.AssigningOrganizationIdentificationCode (optional)
  • ContactIdentificationCode.AssigningOrganizationIdentificationCode (optional)
  • EducationOrganizationIdentificationCode.AssigningOrganizationIdentificationCode (optional)
  • StaffIdentificationCode.AssigningOrganizationIdentificationCode (optional)
  • StudentIdentificationCode.AssigningOrganizationIdentificationCode (optional)

UDM primitive/simple type Date

AssignmentDate #

dictionary-only type

The month, day, and year on which the goal was assigned.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Goal.AssignmentDate (identity)

Descriptor catalog Descriptor

AssignmentLateStatus #

/ed-fi/descriptors/assignmentLateStatusDescriptors

Status of whether the assignment was submitted after the due date and/or marked as late.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.AssignmentLateStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AssignmentLateStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Late Late The assignment was submitted by the student after the due date/time and marked as late and the score may or may not be affected. uri://ed-fi.org/AssignmentLateStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Late Not Late The assignment was not submitted after the due date and/or is not marked as late. uri://ed-fi.org/AssignmentLateStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentGradebookEntry.AssignmentLateStatus (optional)

UDM primitive/simple type Boolean

AssignmentPassed #

dictionary-only type

Indication of whether the assignment was passed or not.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentGradebookEntry.AssignmentPassed (optional)

UDM primitive/simple type Number

AttemptNumber #

dictionary-only type

The number of the person's attempt for the certification exam.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Descriptor catalog Descriptor

AttemptStatus #

/ed-fi/descriptors/attemptStatusDescriptors

This descriptor describes a student's completion status for a section.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Student Academic Record, Student Attendance, Student Cohort, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.AttemptStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (16 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AttemptStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Audited Audited Audited uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Died or is permanently incapacitated DEPRECATED: Died or is permanently incapacitated DEPRECATED: Died or is permanently incapacitated uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Discontinued schooling DEPRECATED: Discontinued schooling DEPRECATED: Discontinued schooling uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fail Fail Fail uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graduated with a high school diploma DEPRECATED: Graduated with a high school diploma DEPRECATED: Graduated with a high school diploma uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Incomplete Incomplete Incomplete uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Moved out of state DEPRECATED: Moved out of state DEPRECATED: Moved out of state uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other DEPRECATED: Other DEPRECATED: Other uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pass Pass Pass uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reached maximum age DEPRECATED: Reached maximum age DEPRECATED: Reached maximum age uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Received certificate of completion or equivalent DEPRECATED: Received completion certificate, modified diploma, or met IEP r DEPRECATED: Received certificate of completion, modified diploma, or finished IEP requirements uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suspended or expelled from school DEPRECATED: Suspended or expelled from school DEPRECATED: Suspended or expelled from school uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transferred to another district or school DEPRECATED: Transferred to another district or school DEPRECATED: Transferred to another district or school uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown reason DEPRECATED: Unknown reason DEPRECATED: Unknown reason uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Withdrawal by a parent (or guardian) DEPRECATED: Withdrawal by a parent (or guardian) DEPRECATED: Withdrawal by a parent (or guardian) uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Withdrawn Withdrawn Withdrawn uri://ed-fi.org/AttemptStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSectionAssociation.AttemptStatus (optional)

UDM primitive/simple type Date

AttendanceDate #

dictionary-only type

Date for this attendance event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ProfessionalDevelopmentEventAttendance.AttendanceDate (identity)

UDM common/composite Composite Part

AttendanceEvent #

dictionary-only type

This event entity represents the recording of whether a student is in attendance for a class or in attendance to receive or participate in program services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EventDate
EventDate
Date
DATE
required
identity
ODS/API identity
Date for this attendance event. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AttendanceEventCategory
AttendanceEventCategoryDescriptor
Reference
DescriptorProperty
Allowed values: AttendanceEventCategoryDescriptor (7 Ed-Fi seed values)
required
identity
ODS/API identity
A code describing the attendance event, for example: Present Unexcused absence Excused absence Tardy. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AttendanceEventReason
AttendanceEventReason
String
VARCHAR(255)
optional The reported reason for a student's absence. max length 255 characters; optional Ed-Fi field source pass-through
EducationalEnvironment
EducationalEnvironmentDescriptor
Reference
DescriptorProperty
Allowed values: EducationalEnvironmentDescriptor (13 Ed-Fi seed values)
optional The setting in which a child receives education and related services. This attribute is only used if it differs from the EducationalEnvironment of the Section. This is only used in the AttendanceEvent if different from the associated Section. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EventDuration
EventDuration
Number
DECIMAL(3, 2)
optional The amount of time in days for the event as recognized by the school: 1 day = 1, 1/2 day = 0.5, 1/3 day = 0.33. numeric precision 3, scale 2; optional Ed-Fi field source pass-through
Used By (4)
  • StudentInterventionAttendanceEvent.AttendanceEvent (required)
  • StudentProgramAttendanceEvent.AttendanceEvent (required)
  • StudentSchoolAttendanceEvent.AttendanceEvent (required)
  • StudentSectionAttendanceEvent.AttendanceEvent (required)

Descriptor catalog Descriptor

AttendanceEventCategory #

/ed-fi/descriptors/attendanceEventCategoryDescriptors

This descriptor holds the category of the attendance event (e.g., tardy).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Intervention, Recruiting and Staffing, Special Education, Student Attendance
Source
UDM Handbook entry
Physical SQL snippets
edfi.AttendanceEventCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for AttendanceEventCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Early departure Early departure Early departure uri://ed-fi.org/AttendanceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Excused Absence Excused Absence Excused Absence uri://ed-fi.org/AttendanceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
In Attendance In Attendance In Attendance uri://ed-fi.org/AttendanceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Partial Partial Partial uri://ed-fi.org/AttendanceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Present Present Present uri://ed-fi.org/AttendanceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tardy Tardy Tardy uri://ed-fi.org/AttendanceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unexcused Absence Unexcused Absence Unexcused Absence uri://ed-fi.org/AttendanceEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • ProfessionalDevelopmentEventAttendance.AttendanceEventCategory (required)
  • AttendanceEvent.AttendanceEventCategory (required)

UDM primitive/simple type Number

AttendanceEventDuration #

dictionary-only type

The duration in minutes of the attendance event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 0
  • max value: 1440
Used By (4)
  • StudentInterventionAttendanceEvent.InterventionDuration (optional)
  • StudentProgramAttendanceEvent.ProgramAttendanceDuration (optional)
  • StudentSchoolAttendanceEvent.SchoolAttendanceDuration (optional)
  • StudentSectionAttendanceEvent.SectionAttendanceDuration (optional)

UDM primitive/simple type String

AttendanceEventReason #

dictionary-only type

The reason for the absence or tardy.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (2)
  • ProfessionalDevelopmentEventAttendance.AttendanceEventReason (optional)
  • AttendanceEvent.AttendanceEventReason (optional)

UDM primitive/simple type String

Author #

dictionary-only type

The person or organization chiefly responsible for intellectual content.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (2)
  • ContentStandard.Author (optional collection)
  • LearningResource.Author (optional collection)

UDM primitive/simple type Boolean

AwaitingFosterCare #

dictionary-only type

State defined definition for awaiting foster care.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentHomelessProgramAssociation.AwaitingFosterCare (optional)

UDM primitive/simple type Date

AwardDate #

dictionary-only type

The date the partial credits and/or grades were awarded or earned.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PartialCourseTranscriptAwards.AwardDate (identity)

UDM common/composite Composite Part

BackgroundCheck #

dictionary-only type

Staff background check history and disposition.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
BackgroundCheckType
BackgroundCheckTypeDescriptor
Reference
DescriptorProperty
Allowed values: BackgroundCheckTypeDescriptor (9 Ed-Fi seed values)
required
identity
ODS/API identity
The type of background check. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BackgroundCheckRequestedDate
BackgroundCheckRequestedDate
Date
DATE
required The date the background check was requested. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
BackgroundCheckStatus
BackgroundCheckStatusDescriptor
Reference
DescriptorProperty
Allowed values: BackgroundCheckStatusDescriptor (6 Ed-Fi seed values)
optional The status of the background check. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BackgroundCheckCompletedDate
BackgroundCheckCompletedDate
Date
DATE
optional The date the background check was completed. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Fingerprint
Fingerprint
Boolean
BOOLEAN
optional Indicates that a person has or has not completed a fingerprint. boolean true/false; optional Ed-Fi field source pass-through
Used By (3)
  • StaffEducationOrganizationEmploymentAssociation.BackgroundCheck (optional collection)
  • ApplicantProfile.BackgroundCheck (optional collection)
  • Candidate.BackgroundCheck (optional)

UDM primitive/simple type Date

BackgroundCheckCompletedDate #

dictionary-only type

The date the background check was completed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • BackgroundCheck.BackgroundCheckCompletedDate (optional)

UDM primitive/simple type Date

BackgroundCheckRequestedDate #

dictionary-only type

The date the background check was requested.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • BackgroundCheck.BackgroundCheckRequestedDate (required)

Descriptor catalog Descriptor

BackgroundCheckStatus #

/ed-fi/descriptors/backgroundCheckStatusDescriptors

This descriptor holds the status of the background check.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program, Recruiting and Staffing, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.BackgroundCheckStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for BackgroundCheckStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Eligible Eligible Eligible uri://ed-fi.org/BackgroundCheckStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Employer Review Employer Review Employer processing results uri://ed-fi.org/BackgroundCheckStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Eligible Not Eligible Not Eligible uri://ed-fi.org/BackgroundCheckStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Started Started Some requirements submitted for review uri://ed-fi.org/BackgroundCheckStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Submitted Submitted All requirements submitted for review uri://ed-fi.org/BackgroundCheckStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Waiting Waiting Awaiting response from authorities uri://ed-fi.org/BackgroundCheckStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • BackgroundCheck.BackgroundCheckStatus (optional)

Descriptor catalog Descriptor

BackgroundCheckType #

/ed-fi/descriptors/backgroundCheckTypeDescriptors

This descriptor defines the classification of the background check a person receives.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program, Recruiting and Staffing, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.BackgroundCheckTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for BackgroundCheckTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
City City City uri://ed-fi.org/BackgroundCheckTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
County County County uri://ed-fi.org/BackgroundCheckTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Federal Federal uri://ed-fi.org/BackgroundCheckTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FP City FP City City uri://ed-fi.org/BackgroundCheckTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FP County FP County County uri://ed-fi.org/BackgroundCheckTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FP Federal FP Federal Federal uri://ed-fi.org/BackgroundCheckTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FP State FP State State uri://ed-fi.org/BackgroundCheckTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Questionnaire Questionnaire Moral Questionnaire uri://ed-fi.org/BackgroundCheckTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State State uri://ed-fi.org/BackgroundCheckTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • BackgroundCheck.BackgroundCheckType (required)

Canonical UDM resource Class

BalanceSheetDimension #

/ed-fi/balanceSheetDimensions

The NCES balance sheet accounting dimension, used to track financial transactions for each fund. These financial statements only report assets, deferred outflows of resources, liabilities, deferred inflows of resources, and equity accounts. The statements are considered snapshots of how these accounts stand as of a certain point in time.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.BalanceSheetDimension edfi.BalanceSheetDimensionReportingTag
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Code
Code
String
VARCHAR(16)
required
identity
ODS/API identity
The code representation of the account balance sheet dimension. max length 16 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for which the account balance sheet dimension is valid. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CodeName
CodeName
String
VARCHAR(100)
optional A description of the account balance sheet dimension. max length 100 characters; optional Ed-Fi field source pass-through
ReportingTag
ReportingTags
Reference
DescriptorProperty
Allowed values: governed ReportingTagsDescriptor values; no matching handbook descriptor entry found.
optional collection Optional tag for accountability reporting. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • ChartOfAccount.BalanceSheetBalanceSheetDimension (optional)

Descriptor catalog Descriptor

BarrierToInternetAccessInResidence #

/ed-fi/descriptors/barrierToInternetAccessInResidenceDescriptors

An indication of the barrier to having internet access in the studentโ€™s primary place of residence.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.BarrierToInternetAccessInResidenceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for BarrierToInternetAccessInResidenceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Not Affordable Not Affordable The student cannot access the internet in their primary place of residence because internet service is not affordable. uri://ed-fi.org/BarrierToInternetAccessInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Available Not Available The student cannot access the internet in their primary place of residence because internet service is not available. uri://ed-fi.org/BarrierToInternetAccessInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Desired Not Desired The student cannot access the internet in their primary place of residence because the parent or guardian chooses not to subscribe to internet service. uri://ed-fi.org/BarrierToInternetAccessInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other The reason why a student cannot access the internet in their primary place of residence is not yet defined. uri://ed-fi.org/BarrierToInternetAccessInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentEducationOrganizationAssociation.BarrierToInternetAccessInResidence (optional)

UDM primitive/simple type Date

BeginDate (AcademicWeek) #

dictionary-only type

The start date for the academic week. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • AcademicWeek.BeginDate (required)

UDM primitive/simple type Date

BeginDate (ApplicantCharacteristic) #

dictionary-only type

The date the characteristic was designated. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ApplicantCharacteristic.BeginDate (optional)

UDM primitive/simple type Date

BeginDate (AssessmentPeriod) #

dictionary-only type

The first date the assessment is to be administered. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • AssessmentPeriod.BeginDate (optional)

UDM primitive/simple type Date

BeginDate (CandidateCharacteristic) #

dictionary-only type

The date the characteristic was designated. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CandidateCharacteristic.BeginDate (optional)

UDM primitive/simple type Date

BeginDate (CandidateEducatorPreparationProgramAssociation) #

dictionary-only type

The begin date for the association. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CandidateEducatorPreparationProgramAssociation.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (CandidateIndicator) #

dictionary-only type

The month, day, and year when the indicator value is valid. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CandidateIndicator.IndicatorBeginDate (identity)

UDM primitive/simple type Date

BeginDate (CandidateRelationshipToStaffAssociation) #

dictionary-only type

The month, day, and year on which the candidate is associated to the staff. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CandidateRelationshipToStaffAssociation.BeginDate (required)

UDM primitive/simple type Date

BeginDate (ContentStandard) #

dictionary-only type

The beginning of the period during which this learning standard document is intended for use. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ContentStandard.BeginDate (optional)

UDM primitive/simple type Date

BeginDate (DegreeSpecialization) #

dictionary-only type

The month, day, and year on which the teacher candidate first declared specialization. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DegreeSpecialization.SpecializationBeginDate (identity)

UDM primitive/simple type Date

BeginDate (EducationOrganizationInterventionPrescriptionAssociation) #

dictionary-only type

The begin date of the period during which the intervention prescription is available. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • EducationOrganizationInterventionPrescriptionAssociation.BeginDate (optional)

UDM primitive/simple type Date

BeginDate (EducationOrganizationNetworkAssociation) #

dictionary-only type

The date on which the education organization joined this network. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • EducationOrganizationNetworkAssociation.BeginDate (optional)

UDM primitive/simple type Date

BeginDate (FeederSchoolAssociation) #

dictionary-only type

The month, day, and year of the first day of the feeder school association. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • FeederSchoolAssociation.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (FieldworkExperience) #

dictionary-only type

The month, day, and year on which the staff first starts fieldwork. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • FieldworkExperience.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (FinancialAid) #

dictionary-only type

The date the award was designated. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • FinancialAid.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (GeneralStudentProgramAssociation) #

dictionary-only type

The earliest date the student is involved with the program. Typically, this is the date the student becomes eligible for the program. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • GeneralStudentProgramAssociation.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (GradingPeriod) #

dictionary-only type

Month, day, and year of the first day of the grading period. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • GradingPeriod.BeginDate (required)

UDM primitive/simple type Date

BeginDate (IDEAEvent) #

dictionary-only type

The date when the IDEA related event started. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • IDEAEvent.BeginDate (required)

UDM primitive/simple type Date

BeginDate (InternationalAddress) #

dictionary-only type

The first date the address is valid. For physical addresses, the date the individual moved to that address. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • InternationalAddress.BeginDate (optional)

UDM primitive/simple type Date

BeginDate (Intervention) #

dictionary-only type

The start date for the intervention implementation. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Intervention.BeginDate (required)

UDM primitive/simple type Date

BeginDate (Period) #

dictionary-only type

The month, day, and year for the start of the period. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Period.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (Session) #

dictionary-only type

Month, day, and year of the first day of the session. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Session.BeginDate (required)

UDM primitive/simple type Date

BeginDate (StaffCohortAssociation) #

dictionary-only type

Start date for the association of staff to this cohort. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffCohortAssociation.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (StaffEducationOrganizationAssignmentAssociation) #

dictionary-only type

Month, day, and year of the start or effective date of a staff member's employment, contract, or relationship with the education organization. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffEducationOrganizationAssignmentAssociation.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (StaffEducatorPreparationProgramAssociation) #

dictionary-only type

The start date for the association of staff to this program. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffEducatorPreparationProgramAssociation.BeginDate (required)

UDM primitive/simple type Date

BeginDate (StaffLeave) #

dictionary-only type

The begin date of the staff leave. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffLeave.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (StaffProgramAssociation) #

dictionary-only type

Start date for the association of staff to this program. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffProgramAssociation.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (StaffSectionAssociation) #

dictionary-only type

Month, day, and year of a teacher's assignment to the section. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffSectionAssociation.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (StudentCohortAssociation) #

dictionary-only type

The month, day, and year on which the student was first identified as part of the cohort. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentCohortAssociation.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (StudentEducationOrganizationResponsibilityAssociation) #

dictionary-only type

Month, day, and year of the start date of an education organization's responsibility for a student. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentEducationOrganizationResponsibilityAssociation.BeginDate (identity)

UDM primitive/simple type Date

BeginDate (StudentIEPServicePrescription) #

dictionary-only type

The effective date when service is to begin. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentIEPServicePrescription.BeginDate (required)

UDM primitive/simple type Date

BeginDate (StudentSectionAssociation) #

dictionary-only type

Month, day, and year of the student's entry or assignment to the section. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSectionAssociation.BeginDate (identity)

UDM common/composite Composite Part

Behavior #

dictionary-only type

Describes behavior by category and provides a detailed description.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
BehaviorDetailedDescription
BehaviorDetailedDescription
String
VARCHAR(1024)
optional Specifies a more granular level of detail of a behavior involved in the incident. max length 1024 characters; optional Ed-Fi field source pass-through
Behavior
BehaviorDescriptor
Reference
DescriptorProperty
Allowed values: BehaviorDescriptor (4 Ed-Fi seed values)
required
identity
ODS/API identity
Describes behavior by category and provides a detailed description. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • DisciplineIncident.Behavior (optional collection)

Descriptor catalog Descriptor

Behavior #

/ed-fi/descriptors/behaviorDescriptors

This descriptor holds the categories of behavior describing a discipline incident.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.BehaviorDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for BehaviorDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Other Other Other uri://ed-fi.org/BehaviorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Code of Conduct School Code of Conduct School Code of Conduct uri://ed-fi.org/BehaviorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Violation School Violation School Violation uri://ed-fi.org/BehaviorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State Offense State Offense State Offense uri://ed-fi.org/BehaviorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • StudentDisciplineIncidentBehaviorAssociation.Behavior (required)
  • Behavior.Behavior (required)

Canonical UDM resource Class

BellSchedule #

/ed-fi/bellSchedules

This entity represents the schedule of class period meeting times.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Bell Schedule
Source
UDM Handbook entry
Physical SQL snippets
edfi.BellSchedule edfi.BellScheduleClassPeriod edfi.BellScheduleDate edfi.BellScheduleGradeLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
BellScheduleName
BellScheduleName
String
VARCHAR(60)
required
identity
ODS/API identity
Name or title of the bell schedule. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GradeLevel
GradeLevels
Reference
DescriptorProperty
Allowed values: governed GradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The grade levels the particular bell schedule applies to. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The school for which the bell schedule is defined. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ClassPeriod
ClassPeriods
Reference
DomainEntityProperty
required collection The class periods that compose this bell schedule. object reference; required collection Ed-Fi field source pass-through
Date
Dates
Date
DATE
optional collection The dates for which the bell schedule applies. calendar date in ISO 8601 full-date form; optional collection Ed-Fi field source pass-through
AlternateDayName
AlternateDayName
String
VARCHAR(20)
optional An alternate name for the day (e.g., Red, Blue). max length 20 characters; optional Ed-Fi field source pass-through
StartTime
StartTime
Time
TIME
optional An indication of the time of day the bell schedule begins. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
EndTime
EndTime
Time
TIME
optional An indication of the time of day the bell schedule ends. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
TotalInstructionalTime
TotalInstructionalTime
Number
INT
optional The total instructional time in minutes per day for the bell schedule. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through

UDM primitive/simple type String

BellScheduleName #

dictionary-only type

The title or name of the bell schedule.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • BellSchedule.BellScheduleName (required)

UDM common/composite Composite Part

BirthData #

dictionary-only type

The set of elements that capture relevant data regarding a person's birth, including birth date and place of birth.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
BirthDate
BirthDate
Date
DATE
required The month, day, and year on which an individual was born. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
BirthCity
BirthCity
String
VARCHAR(30)
optional The city the student was born in. max length 30 characters; optional Ed-Fi field source pass-through
BirthStateAbbreviation
BirthStateAbbreviationDescriptor
Reference
DescriptorProperty
Allowed values: governed BirthStateAbbreviationDescriptor values; no matching handbook descriptor entry found.
optional The abbreviation for the name of the state (within the United States) or extra-state jurisdiction in which an individual was born. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BirthInternationalProvince
BirthInternationalProvince
String
VARCHAR(150)
optional For students born outside of the U.S., the Province or jurisdiction in which an individual is born. max length 150 characters; optional Ed-Fi field source pass-through
BirthCountry
BirthCountryDescriptor
Reference
DescriptorProperty
Allowed values: governed BirthCountryDescriptor values; no matching handbook descriptor entry found.
optional The country in which an individual is born. It is strongly recommended that entries use only ISO 3166 2-letter country codes. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DateEnteredUS
DateEnteredUS
Date
DATE
optional For students born outside of the U.S., the date the student entered the U.S. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
MultipleBirthStatus
MultipleBirthStatus
Boolean
BOOLEAN
optional Indicator of whether the student was born with other siblings (i.e., twins, triplets, etc.) boolean true/false; optional Ed-Fi field source pass-through
BirthSex
BirthSexDescriptor
Reference
DescriptorProperty
Allowed values: governed BirthSexDescriptor values; no matching handbook descriptor entry found.
optional A person's sex at birth. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (2)
  • Candidate.BirthData (required)
  • Student.BirthData (required)

UDM primitive/simple type Date

BirthDate #

dictionary-only type

The month, day, and year on which an individual was born.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • BirthData.BirthDate (required)

UDM primitive/simple type Date

BirthDate #

dictionary-only type

The month, day, and year on which an individual was born.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ApplicantProfile.BirthDate (optional)

UDM primitive/simple type Date

BirthDate #

dictionary-only type

The month, day, and year on which an individual was born.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Staff.BirthDate (optional)

UDM primitive/simple type String

BirthInternationalProvince #

dictionary-only type

For students born outside of the U.S., the Province or jurisdiction in which an individual is born.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 150
Used By (1)
  • BirthData.BirthInternationalProvince (optional)

UDM primitive/simple type Boolean

BoardCertificationIndicator #

dictionary-only type

Indicator that the credential was granted under the authority of a national board certification.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Credential.BoardCertificationIndicator (optional)

UDM primitive/simple type String

BuildingSiteNumber #

dictionary-only type

The number of the building on the site, if more than one building shares the same address.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 20
Used By (1)
  • Address.BuildingSiteNumber (optional)

UDM primitive/simple type String

BusNumber #

dictionary-only type

The unique identifier assigned to the bus used for transporting the student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 36

Descriptor catalog Descriptor

BusRoute #

/ed-fi/descriptors/busRouteDescriptors

Identifies the specific route taken by a bus for student transportation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.BusRouteDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/BusRouteDescriptor.xml ยท status missing_404
Used By (1)
  • StudentBusDetails.BusRoute (required)

Canonical UDM resource Class

Calendar #

/ed-fi/calendars

A set of dates associated with an organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
School Calendar
Source
UDM Handbook entry
Physical SQL snippets
edfi.Calendar edfi.CalendarGradeLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CalendarCode
CalendarCode
String
VARCHAR(120)
required
identity
ODS/API identity
The identifier for the calendar. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CalendarType
CalendarTypeDescriptor
Reference
DescriptorProperty
Allowed values: CalendarTypeDescriptor (5 Ed-Fi seed values)
required Indicates the type of calendar. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradeLevel
GradeLevels
Reference
DescriptorProperty
Allowed values: governed GradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection Indicates the grade level associated with the calendar. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the school associated with the calendar. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The identifier for the school year associated with the calendar. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Used By (3)
  • StaffSchoolAssociation.Calendar (optional)
  • StudentSchoolAssociation.Calendar (optional)
  • CalendarDate.Calendar (required)

Canonical UDM resource Class

CalendarDate #

/ed-fi/calendarDates

The type of scheduled or unscheduled event for the day.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
School Calendar
Source
UDM Handbook entry
Physical SQL snippets
edfi.CalendarDate edfi.CalendarDateCalendarEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Date
Date
Date
DATE
required
identity
ODS/API identity
The month, day, and year of the calendar event. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CalendarEvent
CalendarEvents
Reference
DescriptorProperty
Allowed values: governed CalendarEventsDescriptor values; no matching handbook descriptor entry found.
required collection The type of scheduled or unscheduled event for the day. object reference; required collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Calendar
CalendarReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the calendar associated to the calendar event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Used By (1)
  • SectionAttendanceTakenEvent.CalendarDate (required)

Descriptor catalog Descriptor

CalendarEvent #

/ed-fi/descriptors/calendarEventDescriptors

This descriptor holds the types of scheduled or unscheduled event for the day (e.g., Instructional day, Teacher only day, Holiday, Make-up day, Weather day, Student late arrival/early dismissal day).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
School Calendar
Source
UDM Handbook entry
Physical SQL snippets
edfi.CalendarEventDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (10 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CalendarEventDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Emergency day Emergency day Instruction cancelled or reduced due to an emergency uri://ed-fi.org/CalendarEventDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Holiday Holiday Instruction cancelled or reduced due to a holiday uri://ed-fi.org/CalendarEventDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Instructional day Instructional day Student instructional day uri://ed-fi.org/CalendarEventDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Make-up day Make-up day Make-up instructional day uri://ed-fi.org/CalendarEventDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-instructional day Non-instructional day Non-instructional day uri://ed-fi.org/CalendarEventDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CalendarEventDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Strike Strike Instruction cancelled or reduced due to a strike uri://ed-fi.org/CalendarEventDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student late arrival/early dismissal Student late arrival/early dismissal Abbreviated instructional day due to student late arrival or early dismissal uri://ed-fi.org/CalendarEventDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher only day Teacher only day Non-instructional day for students designated for teachers (e.g., staff development, work day) uri://ed-fi.org/CalendarEventDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Weather day Weather day Instruction cancelled or reduced due to weather uri://ed-fi.org/CalendarEventDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CalendarDate.CalendarEvent (required collection)

Descriptor catalog Descriptor

CalendarType #

/ed-fi/descriptors/calendarTypeDescriptors

This descriptor defines the calendar types.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
School Calendar
Source
UDM Handbook entry
Physical SQL snippets
edfi.CalendarTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CalendarTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Grade Level Grade Level Grade Level uri://ed-fi.org/CalendarTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IEP IEP IEP uri://ed-fi.org/CalendarTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/CalendarTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Staff Staff Staff uri://ed-fi.org/CalendarTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Specific Student Specific Student Specific uri://ed-fi.org/CalendarTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Calendar.CalendarType (required)

Canonical UDM resource Class deprecated source element

Candidate #

/ed-fi/candidates

A candidate is both a person enrolled in a educator preparation program and a candidate to become an educator.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.Candidate edfi.CandidateAddress edfi.CandidateAddressCharacteristic edfi.CandidateAddressPeriod edfi.CandidateBackgroundCheck edfi.CandidateCharacteristic edfi.CandidateDisability edfi.CandidateDisabilityDesignation edfi.CandidateEPPProgramDegree edfi.CandidateElectronicMail edfi.CandidateIdentificationDocument edfi.CandidateIndicator edfi.CandidateInternationalAddress edfi.CandidateLanguage edfi.CandidateLanguageUse edfi.CandidateOtherName edfi.CandidatePersonalIdentificationDocument edfi.CandidateRace edfi.CandidateTelephone edfi.CandidateVisa
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (29)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CandidateIdentifier
CandidateIdentifier
String
VARCHAR(32)
required
identity
ODS/API identity
A unique alphanumeric code assigned to a candidate. max length 32 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Name
Name
Reference
InlineCommonProperty
required Full legal name of the person. object reference; required Ed-Fi field source pass-through
OtherName
OtherNames
Reference
CommonProperty
optional collection Other names associated with a person. object reference; optional collection Ed-Fi field source pass-through
Sex
SexDescriptor
Reference
DescriptorProperty
Allowed values: SexDescriptor (4 Ed-Fi seed values)
required The sex of the person. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GenderIdentity
GenderIdentity
String
VARCHAR(60)
optional The gender the candidate identifies themselves as. max length 60 characters; optional Ed-Fi field source pass-through
BirthData
BirthData
Reference
InlineCommonProperty
required The set of elements that capture relevant data regarding a person's birth, including birth date and place of birth. object reference; required Ed-Fi field source pass-through
Address
Addresses
Reference
CommonProperty
optional collection The set of elements that describes an address, including the street address, city, state, and ZIP code. object reference; optional collection Ed-Fi field source pass-through
InternationalAddress
InternationalAddresses
Reference
CommonProperty
optional collection The set of elements that describes an international address. object reference; optional collection Ed-Fi field source pass-through
Telephone
Telephones
Reference
CommonProperty
optional collection The 10-digit telephone number, including the area code, for the person. object reference; optional collection Ed-Fi field source pass-through
ElectronicMail
ElectronicMails
Reference
CommonProperty
optional collection The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the individual or organization belongs. object reference; optional collection Ed-Fi field source pass-through
ProfileThumbnail
ProfileThumbnail
String
VARCHAR(255)
optional Locator for the candidate's photo. max length 255 characters; optional Ed-Fi field source pass-through
HispanicLatinoEthnicity
HispanicLatinoEthnicity
Boolean
BOOLEAN
optional An indication that the individual traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central, and South America, and other Spanish cultures, regardless of race. The term, "Spanish origin," can be used in addition to "Hispanic or Latino." boolean true/false; optional; deprecated: see deprecation reason
Deprecated: This element is scheduled for removal by 2029. Users of this element are advised to use Race instead.
Ed-Fi field source pass-through
Race
Races
Reference
DescriptorProperty
Allowed values: governed RacesDescriptor values; no matching handbook descriptor entry found.
optional collection The general racial category which most clearly reflects the individual's recognition of his or her community or with which the individual most identifies. The data model allows for multiple entries so that each individual can specify all appropriate races. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Citizenship
Citizenship
Reference
InlineCommonProperty
optional Contains information relative to citizenship status and its associated probationary documentation. object reference; optional Ed-Fi field source pass-through
EconomicDisadvantage
EconomicDisadvantageDescriptor
Reference
DescriptorProperty
Allowed values: EconomicDisadvantageDescriptor (5 Ed-Fi seed values)
optional An indication of inadequate financial condition of an individual's family, as determined by family income, number of family members/dependents, participation in public assistance programs, and/or other characteristics considered relevant by federal, state, and local policy. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CandidateCharacteristic
Characteristics
Reference
CommonProperty
optional collection Reflects important characteristics of the candidate. object reference; optional collection Ed-Fi field source pass-through
LimitedEnglishProficiency
LimitedEnglishProficiencyDescriptor
Reference
DescriptorProperty
Allowed values: LimitedEnglishProficiencyDescriptor (4 Ed-Fi seed values)
optional Indicates whether the individual has been identified as limited English proficient (LEP) by the Language Proficiency Assessment Committee (LPAC), or is English proficient. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Language
Languages
Reference
CommonProperty
optional collection The language(s) the individual uses to communicate. object reference; optional collection Ed-Fi field source pass-through
Disability
Disabilities
Reference
CommonProperty
optional collection The disability condition(s) that best describes an individual's impairment. object reference; optional collection Ed-Fi field source pass-through
DisplacementStatus
DisplacementStatus
String
VARCHAR(30)
optional Indicates a state health or weather related event that displaces a group of students, and may require additional funding, educational, or social services. max length 30 characters; optional Ed-Fi field source pass-through
CandidateIndicator
Indicators
Reference
CommonProperty
optional collection Indicator(s) or metric(s) computed for the candidate. object reference; optional collection Ed-Fi field source pass-through
LoginId
LoginId
String
VARCHAR(120)
optional The login ID for the user; used for security access control interface. max length 120 characters; optional Ed-Fi field source pass-through
TuitionCost
TuitionCost
Number
DECIMAL(19, 4)
optional The tuition for a person's participation in a program, service. or course. numeric precision 19, scale 4; optional Ed-Fi field source pass-through
BackgroundCheck
BackgroundCheck
Reference
CommonProperty
optional Applicant background check history and disposition. object reference; optional Ed-Fi field source pass-through
EnglishLanguageExam
EnglishLanguageExamDescriptor
Reference
DescriptorProperty
Allowed values: EnglishLanguageExamDescriptor (4 Ed-Fi seed values)
optional Indicates that an individual passed, failed, or did not take an English Language assessment. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PreviousCareer
PreviousCareerDescriptor
Reference
DescriptorProperty
Allowed values: PreviousCareerDescriptor (7 Ed-Fi seed values)
optional The career previous for an individual. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
FirstGenerationStudent
FirstGenerationStudent
Boolean
BOOLEAN
optional Indicates whether an individual is a first-generation college student. boolean true/false; optional Ed-Fi field source pass-through
EPPProgramDegree
EPPProgramDegrees
Reference
CommonProperty
optional collection Details of the educator preparation program degree. object reference; optional collection Ed-Fi field source pass-through
Person
PersonReference
Reference
DomainEntityProperty
optional Relates the candidate to a generic person. object reference; optional Ed-Fi field source pass-through
Used By (3)
  • CandidateEducatorPreparationProgramAssociation.Candidate (required)
  • CandidateRelationshipToStaffAssociation.Candidate (required)
  • CandidateIdentificationCode.Candidate (required)

UDM common/composite Composite Part

CandidateCharacteristic #

dictionary-only type

Reflects important charactersitics of the candidate.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CandidateCharacteristic
CandidateCharacteristicDescriptor
Reference
DescriptorProperty
Allowed values: CandidateCharacteristicDescriptor (16 Ed-Fi seed values)
required
identity
ODS/API identity
The characteristic designated for the candidate. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
optional The date the characteristic was designated. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The date the characteristic was removed. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
DesignatedBy
DesignatedBy
String
VARCHAR(60)
optional The person, organization, or department that designated the characteristic. max length 60 characters; optional Ed-Fi field source pass-through
Used By (1)
  • Candidate.CandidateCharacteristic (optional collection)

Descriptor catalog Descriptor

CandidateCharacteristic #

/ed-fi/descriptors/candidateCharacteristicDescriptors

Reflects important charactersitics of a candidate.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.CandidateCharacteristicDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (16 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CandidateCharacteristicDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Asylee Asylee Asylee uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Displaced Homemaker Displaced Homemaker Displaced Homemaker uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First Generation College Student First Generation College Student First Generation College Student uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Foster Care Foster Care Foster Care uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Homeless Homeless Homeless uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Immigrant Immigrant Immigrant uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Migrant Migrant Migrant uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Neglected or Delinquent Neglected or Delinquent Neglected or Delinquent uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent in Military Parent in Military Parent in Military uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pregnant Pregnant Pregnant uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Refugee Refugee Refugee uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Runaway Runaway Runaway uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Section 504 Handicapped Section 504 Handicapped Section 504 Handicapped uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Single Parent Single Parent Single Parent uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unaccompanied Youth Unaccompanied Youth Unaccompanied Youth uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Veteran Veteran Veteran uri://ed-fi.org/CandidateCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CandidateCharacteristic.CandidateCharacteristic (required)

Canonical UDM association Association Class

CandidateEducatorPreparationProgramAssociation #

/ed-fi/candidateEducatorPreparationProgramAssociations

Information about the association between the educator candidate and the educator preparation program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.CandidateEducatorPreparationProgramAssociation edfi.CandidateEducatorPreparationProgramAssociationCandidateIndicator edfi.CandidateEducatorPreparationProgramAssociationCohortYear edfi.CandidateEducatorPreparationProgramAssociationDegreeSpecialization
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Candidate
CandidateReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The educator candidate for the association. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducatorPreparationProgram
EducatorPreparationProgramReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program associated to the educator candidate. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
The begin date for the association. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The end date for the association. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ReasonExited
ReasonExitedDescriptor
Reference
DescriptorProperty
Allowed values: ReasonExitedDescriptor (13 Ed-Fi seed values)
optional The reason exited for the association. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CandidateIndicator
CandidateIndicators
Reference
CommonProperty
optional collection Indicator(s) or metric(s) computed for the candidate in the educator preparation program. object reference; optional collection Ed-Fi field source pass-through
EPPProgramPathway
EPPProgramPathwayDescriptor
Reference
DescriptorProperty
Allowed values: EPPProgramPathwayDescriptor (5 Ed-Fi seed values)
optional The program pathway the candidate is following. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DegreeSpecialization
DegreeSpecializations
Reference
CommonProperty
optional collection Information around the area(s) of specialization for an individual. object reference; optional collection Ed-Fi field source pass-through
CohortYear
CohortYears
Reference
CommonProperty
optional collection The type and year of a cohort the student belongs to as determined by the year that student entered a specific grade. object reference; optional collection Ed-Fi field source pass-through
Application
ApplicationReference
Reference
DomainEntityProperty
optional The educator preparation program application submitted by the accepted candidate. object reference; optional Ed-Fi field source pass-through

Canonical UDM resource Class

CandidateIdentificationCode #

/ed-fi/candidateIdentificationCodes

This entity holds different identity codes for a candidate.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.CandidateIdentificationCode
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Candidate
CandidateReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the candidate. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CandidateIdentificationSystem
CandidateIdentificationSystemDescriptor
Reference
DescriptorProperty
Allowed values: CandidateIdentificationSystemDescriptor (15 Ed-Fi seed values)
required
identity
ODS/API identity
A coding scheme that is used for identification and record-keeping. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IdentificationCode
IdentificationCode
String
VARCHAR(120)
required A unique number or alphanumeric code assigned to an individual by a school, LEA, SEA, or other agency. max length 120 characters; required Ed-Fi field source pass-through
AssigningOrganizationIdentificationCode
AssigningOrganizationIdentificationCode
String
VARCHAR(60)
optional The organization code or name assigning the IdentificationCode. max length 60 characters; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

CandidateIdentificationSystem #

/ed-fi/descriptors/candidateIdentificationSystemDescriptors

This descriptor defines the originating record system and code that is used for record-keeping purposes of the student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.CandidateIdentificationSystemDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CandidateIdentificationSystemDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Canadian SIN Canadian SIN Canadian SIN uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
District District District uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Drivers License Drivers License Drivers License uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Federal Federal uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health Record Health Record Health Record uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medicaid Medicaid Medicaid uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Federal Other Federal Other Federal uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PIN PIN PIN uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Professional Certificate Professional Certificate Professional Certificate uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Selective Service Selective Service Selective Service uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SSN SSN SSN uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State State uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
US Visa US Visa US Visa uri://ed-fi.org/CandidateIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CandidateIdentificationCode.CandidateIdentificationSystem (required)

UDM primitive/simple type String

CandidateIdentifier #

dictionary-only type

A unique alphanumeric code assigned to a teacher candidate.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 32
Used By (1)
  • Candidate.CandidateIdentifier (required)

UDM common/composite Composite Part

CandidateIndicator #

dictionary-only type

An indicator or metric computed for the student to influence more effective education or direct specific interventions.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
IndicatorGroup
IndicatorGroup
String
VARCHAR(200)
optional The name for a group of indicators. max length 200 characters; optional Ed-Fi field source pass-through
IndicatorName
IndicatorName
String
VARCHAR(200)
required
identity
ODS/API identity
The name of the indicator or metric. max length 200 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IndicatorBeginDate
IndicatorBeginDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year when the indicator value is valid. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year when the indicator value is no longer valid. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Indicator
Indicator
String
VARCHAR(60)
required The value of the indicator or metric. max length 60 characters; required Ed-Fi field source pass-through
DesignatedBy
DesignatedBy
String
VARCHAR(60)
optional The person, organization, or department that designated the program association. max length 60 characters; optional Ed-Fi field source pass-through
Used By (2)
  • CandidateEducatorPreparationProgramAssociation.CandidateIndicator (optional collection)
  • Candidate.CandidateIndicator (optional collection)

Canonical UDM association Association Class

CandidateRelationshipToStaffAssociation #

/ed-fi/candidateRelationshipToStaffAssociations

Describes the relationship between a current candidate and a staff person, typically at a K12 partnering district in the role of a mentor teacher, coordinating teacher, supervising principal, etc. It could also describe the relationship between a current candidate and a university staff member. This is a relationship between two different people

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.CandidateRelationshipToStaffAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Candidate
CandidateReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Provides the unique identifier for the current candidate who has a relationship with a K12 and/or university staff person. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Provides the unique identifier for the staff person who is serving in a specific role with the current candidate. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StaffToCandidateRelationship
StaffToCandidateRelationshipDescriptor
Reference
DescriptorProperty
Allowed values: StaffToCandidateRelationshipDescriptor (3 Ed-Fi seed values)
optional Defines the staff relationship to the candidate. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required The month, day, and year on which the candidate is associated to the staff. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year on which the candidate stops association with the staff. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through

UDM primitive/simple type Number

Capacity #

dictionary-only type

The maximum number that can be contained or accommodated at any given time.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • License.AuthorizedFacilityCapacity (optional)

UDM primitive/simple type Boolean

CapacityToServe #

dictionary-only type

An indication of whether or not a prospect mentor teacher has capacity to serve.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • RecruitmentEventAttendeeQualifications.CapacityToServe (optional)

Descriptor catalog Descriptor

CareerPathway #

/ed-fi/descriptors/careerPathwayDescriptors

The career cluster or pathway representing the career path of the Vocational/Career Tech concentrator.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CareerPathwayDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (17 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CareerPathwayDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Agriculture, Food and Natural Resources Agriculture, Food and Natural Resources Agriculture, Food and Natural Resources uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Architecture and Construction Architecture and Construction Architecture and Construction uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Arts, A/V Technology and Communications Arts, A/V Technology and Communications Arts, A/V Technology and Communications uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Business, Management and Administration Business, Management and Administration Business, Management and Administration uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Education and Training Education and Training Education and Training uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Finance Finance Finance uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Government and Public Administration Government and Public Administration Government and Public Administration uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health Science Health Science Health Science uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hospitality and Tourism Hospitality and Tourism Hospitality and Tourism uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Human Services Human Services Human Services uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Information Technology Information Technology Information Technology uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Law, Public Safety, Corrections and Security Law, Public Safety, Corrections and Security Law, Public Safety, Corrections and Security uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Manufacturing Manufacturing Manufacturing uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Marketing, Sales and Service Marketing, Sales and Service Marketing, Sales and Service uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Science, Technology, Engineering and Mathematics Science, Technology, Engineering and Mathematics Science, Technology, Engineering and Mathematics uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transportation, Distribution and Logistics Transportation, Distribution and Logistics Transportation, Distribution and Logistics uri://ed-fi.org/CareerPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Course.CareerPathway (optional)

UDM primitive/simple type String

CaseNumber #

dictionary-only type

The case number assigned to the incident by law enforcement or other organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 20
Used By (1)
  • DisciplineIncident.CaseNumber (optional)

Canonical UDM resource Class

Certification #

/ed-fi/certifications

An offering by an official granting authority of a certification or license that qualifies persons to perform specific job functions, such as fulfill a teaching assignment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.Certification edfi.CertificationCertificationExam edfi.CertificationGradeLevel edfi.CertificationRoute
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (16)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CertificationIdentifier
CertificationIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
Identifier or serial number assigned to the certification. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required
identity
ODS/API identity
The namespace for the certification, typically associated with the issuing authority. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CertificationTitle
CertificationTitle
String
VARCHAR(64)
required The title of the certification. max length 64 characters; required Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
optional The education organization that authorizes the certification, often a state education agency. object reference; optional Ed-Fi field source pass-through
CertificationLevel
CertificationLevelDescriptor
Reference
DescriptorProperty
Allowed values: CertificationLevelDescriptor (8 Ed-Fi seed values)
optional The level or category of the certification. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CertificationField
CertificationFieldDescriptor
Reference
DescriptorProperty
Allowed values: CertificationFieldDescriptor (30 Ed-Fi seed values)
optional The field of certification. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradeLevel
GradeLevels
Reference
DescriptorProperty
Allowed values: governed GradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The grade level(s) certified for teaching. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CertificationRoute
Routes
Reference
DescriptorProperty
Allowed values: governed RoutesDescriptor values; no matching handbook descriptor entry found.
optional collection The process, program, or pathway used to obtain the certification. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CertificationStandard
CertificationStandardDescriptor
Reference
DescriptorProperty
Allowed values: CertificationStandardDescriptor (0 Ed-Fi seed values)
optional The standard, law, or policy defining the certification. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MinimumDegree
MinimumDegreeDescriptor
Reference
DescriptorProperty
Allowed values: governed MinimumDegreeDescriptor values; no matching handbook descriptor entry found.
optional The minimum level of degree, if any, required for the certification. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducatorRole
EducatorRoleDescriptor
Reference
DescriptorProperty
Allowed values: EducatorRoleDescriptor (19 Ed-Fi seed values)
optional The role authorized by the certification, typically associated with service and administrative certifications. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PopulationServed
PopulationServedDescriptor
Reference
DescriptorProperty
Allowed values: PopulationServedDescriptor (11 Ed-Fi seed values)
optional The type of students that the certification is offered and tailored to. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
InstructionalSetting
InstructionalSettingDescriptor
Reference
DescriptorProperty
Allowed values: InstructionalSettingDescriptor (5 Ed-Fi seed values)
optional The setting authorized by the certification in which a person receives education and related services. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CertificationExam
CertificationExams
Reference
DomainEntityProperty
optional collection The certification exams required for the certification. object reference; optional collection Ed-Fi field source pass-through
EffectiveDate
EffectiveDate
Date
DATE
optional The month, day, and year on which the certification is offered. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year on which the certification offering is expected to end. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (2)
  • RequiredCertification.Certification (optional)
  • Credential.Certification (optional)

Canonical UDM resource Class

CertificationExam #

/ed-fi/certificationExams

An examination required by one or more certifications.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.CertificationExam
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CertificationExamIdentifier
CertificationExamIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
Identifier or serial number assigned to the certification exam. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required
identity
ODS/API identity
The namespace for the certification exam. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CertificationExamTitle
CertificationExamTitle
String
VARCHAR(60)
required The title of the certification exam. max length 60 characters; required Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
optional The education organization associated with the certification exam. object reference; optional Ed-Fi field source pass-through
CertificationExamType
CertificationExamTypeDescriptor
Reference
DescriptorProperty
Allowed values: CertificationExamTypeDescriptor (3 Ed-Fi seed values)
optional The type or category of the certification exam. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EffectiveDate
EffectiveDate
Date
DATE
optional The month, day, and year on which the certification exam is offered. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year on which the certification exam offering is expected to end. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (2)
  • Certification.CertificationExam (optional collection)
  • CertificationExamResult.CertificationExam (required)

UDM primitive/simple type Date

CertificationExamDate #

dictionary-only type

The month, day, and year on which the certification exam is taken.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CertificationExamResult.CertificationExamDate (identity)

UDM primitive/simple type Boolean

CertificationExamPassIndicator #

dictionary-only type

Indicator that the person passed the certification exam.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CertificationExamResult.CertificationExamPassIndicator (optional)

Canonical UDM resource Class

CertificationExamResult #

/ed-fi/certificationExamResults

The person's result from taking a certification exam.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.CertificationExamResult
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CertificationExam
CertificationExamReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The certification exam taken by the person. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Person
PersonReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The person who took the certification exam. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CertificationExamDate
CertificationExamDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year on which the certification exam is taken. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AttemptNumber
AttemptNumber
Number
INT
optional The number of the person's attempt for the certification exam. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
CertificationExamScore
CertificationExamScore
Number
DECIMAL(6, 3)
optional The score result for the certification exam attempt. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
CertificationExamPassIndicator
CertificationExamPassIndicator
Boolean
BOOLEAN
optional Indicator that the person passed the certification exam. boolean true/false; optional Ed-Fi field source pass-through
CertificationExamStatus
CertificationExamStatusDescriptor
Reference
DescriptorProperty
Allowed values: CertificationExamStatusDescriptor (5 Ed-Fi seed values)
optional The status of the certification exam attempt. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CertificationExamStudentAssessment
CertificationExamStudentAssessmentReference
Reference
DomainEntityProperty
optional Reference to a detailed result for the assessment taken by a person. object reference; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

CertificationExamStatus #

/ed-fi/descriptors/certificationExamStatusDescriptors

The status of the certification exam.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.CertificationExamStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CertificationExamStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Failed The person has failed to pass the certification exam. The person has failed to pass the certification exam. uri://ed-fi.org/CertificationExamStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Passed The person has passed the certification exam. The person has passed the certification exam. uri://ed-fi.org/CertificationExamStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Planned The person has certification exam planned. The person has certification exam planned, but not registered yet. uri://ed-fi.org/CertificationExamStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Registered The person has registered the certification exam. The person has registered the certification exam, but not taken yet. uri://ed-fi.org/CertificationExamStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Taken The person has taken the certification exam. The person has taken the certification exam and is waiting for the exam result. uri://ed-fi.org/CertificationExamStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CertificationExamResult.CertificationExamStatus (optional)

UDM primitive/simple type String

CertificationExamTitle #

dictionary-only type

The title or name of the certification exam.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 60
Used By (1)
  • CertificationExam.CertificationExamTitle (required)

Descriptor catalog Descriptor

CertificationExamType #

/ed-fi/descriptors/certificationExamTypeDescriptors

Specifies the type of certification exam administered or taken.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.CertificationExamTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CertificationExamTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
National Exam is for a nationally recognized certification. The exam is for a nationally recognized certification. uri://ed-fi.org/CertificationExamTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Exam for other level of recognition. A certification exam for recognition other than state or national level. uri://ed-fi.org/CertificationExamTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State Exam is for a state-wide recognized certification. The exam is for a state-wide recognized certification. uri://ed-fi.org/CertificationExamTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CertificationExam.CertificationExamType (optional)

Descriptor catalog Descriptor

CertificationField #

/ed-fi/descriptors/certificationFieldDescriptors

The field of certification for the credential.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.CertificationFieldDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (30 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CertificationFieldDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Agricultural Science Certification exam is on Agricultural Science The certification exam is on Agricultural Science uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
American Sign Language Certification exam is on American Sign Language The certification exam is on American Sign Language uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Art Certification exam is on Art The certification exam is on Art uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bilingual Education Certification exam is on Bilingual Education The certification exam is on Bilingual Education uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chemistry Certification exam is on Chemistry The certification exam is on Chemistry uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Computer Science Certification exam is on Computer Science The certification exam is on Computer Science uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Childhood Certification exam is on Early Childhood The certification exam is on Early Childhood uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Elementary Education Certification exam is on Elementary Education The certification exam is on Elementary Education uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
English Language Arts Certification exam is on English Language Arts The certification exam is on English Language Arts uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Generalist Certification exam is on Generalist The certification exam is on Generalist uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health Science Certification exam is on Health Science The certification exam is on Health Science uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
History Certification exam is on History The certification exam is on History uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Journalism Certification exam is on Journalism The certification exam is on Journalism uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Language Other Than English Certification exam is on Language but not English The certification exam is on Language Other Than English uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Life Sciences Certification exam is on Life Sciences The certification exam is on Life Sciences uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Marketing Certification exam is on Marketing The certification exam is on Marketing uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mathematics Certification exam is on Mathematics The certification exam is on Mathematics uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Music Certification exam is on Music The certification exam is on Music uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical Education Certification exam is on Physical Education The certification exam is on Physical Education uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physics Certification exam is on Physics The certification exam is on Physics uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Psychology Certification exam is on Psychology The certification exam is on Psychology uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reading Specialist Certification exam is on Reading Specialist The certification exam is on Reading Specialist uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Counselor Certification exam is on School Counselor The certification exam is on School Counselor uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Librarian Certification exam is on School Librarian The certification exam is on School Librarian uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Science Certification exam is on Science The certification exam is on Science uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Social Studies Certification exam is on Social Studies The certification exam is on Social Studies uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Certification exam is on Special Education The certification exam is on Special Education uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Superintendent Certification exam is on Superintendent The certification exam is on Superintendent uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Technology Education Certification exam is on Technology Education The certification exam is on Technology Education uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Theater Certification exam is on Theatre The certification exam is on Theatre uri://ed-fi.org/CertificationFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Certification.CertificationField (optional)

Descriptor catalog Descriptor

CertificationLevel #

/ed-fi/descriptors/certificationLevelDescriptors

The level or category of the certification.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.CertificationLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CertificationLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Administrative Certifies for administrative responsibilities. Certification permits the educator for responsibilities at administrative level. uri://ed-fi.org/CertificationLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
All-Level For instructional responsibilities at all-level. Certification permits the educator for instructional responsibilities at all-level. uri://ed-fi.org/CertificationLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Elementary For elementary school instructional certification. Certification permits the educator for instructional responsibilities at elementary school level. uri://ed-fi.org/CertificationLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Middle School For middle school instructional responsibilities. Certification permits the educator for instructional responsibilities at middle school level. uri://ed-fi.org/CertificationLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Secondary For secondary school instructional certification. Certification permits the educator for instructional responsibilities at secondary school level. uri://ed-fi.org/CertificationLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Services For student service related responsibilities. Certification permits the educator for student service related responsibilities. uri://ed-fi.org/CertificationLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Supplemental For supplemental instructional responsibilities. Certification permits the educator for supplemental instructional responsibilities. uri://ed-fi.org/CertificationLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher Foundations For teacher foundational responsibilities. Certification permits the educator for teacher foundational responsibilities. uri://ed-fi.org/CertificationLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Certification.CertificationLevel (optional)

Descriptor catalog Descriptor

CertificationRoute #

/ed-fi/descriptors/certificationRouteDescriptors

The process, program, or pathway used to obtain a certification.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential, Enrollment, Graduation, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.CertificationRouteDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CertificationRouteDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Alternative Program Certified by an alternative program. The educator has attained an alternative program to be certified. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Center Professional Development Certified by a professional development. The educator has attained a professional development center to be certified. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Certification by Exam The educator has certified by taking an exam. The educator has certified by taking an exam. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Out of State The educator has certified out of state. The educator has certified out of state. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Paraprofessional Program Certified by a paraprofessional program. The educator has completed a paraprofessional program to be certified. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Permit Program Certified by a permit program. The educator has attained a permit program to be certified. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Post-Baccalaureate Certified by a post-baccalaureate degree. The educator has completed a post-baccalaureate degree to be certified. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Standard Program Certified by a standard program. The educator has attained a standard program to be certified. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Temporary Teaching Certificate The educator has a temporary teaching certificate. The educator has obtained a temporary teaching certificate. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown The route for certification is unknown. The route the educator followed for certification is unknown. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vocational Experience Certified by a vocational experience. The educator has obtained certification through a vocational experience. uri://ed-fi.org/CertificationRouteDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • RequiredCertification.CertificationRoute (optional)
  • Certification.CertificationRoute (optional collection)
  • Credential.CertificationRoute (optional)

Descriptor catalog Descriptor

CertificationStandard #

/ed-fi/descriptors/certificationStandardDescriptors

The standard, law, or policy defining the certification.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.CertificationStandardDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/CertificationStandardDescriptor.xml ยท status missing_404
Used By (1)
  • Certification.CertificationStandard (optional)

UDM primitive/simple type String

CertificationTitle #

dictionary-only type

The title of a certification.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 64
Used By (3)
  • RequiredCertification.CertificationTitle (required)
  • Certification.CertificationTitle (required)
  • Credential.CertificationTitle (optional)

Descriptor catalog Descriptor

CharterApprovalAgencyType #

/ed-fi/descriptors/charterApprovalAgencyTypeDescriptors

The type of agency that approved the establishment or continuation of a charter school.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CharterApprovalAgencyTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CharterApprovalAgencyTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Community college Community college Community college uri://ed-fi.org/CharterApprovalAgencyTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Local education agency Local education agency Local education agency uri://ed-fi.org/CharterApprovalAgencyTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non educational government entities Non educational government entities Non educational government entities uri://ed-fi.org/CharterApprovalAgencyTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not for profit organization Not for profit organization Not for profit organization uri://ed-fi.org/CharterApprovalAgencyTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CharterApprovalAgencyTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Public charter school board Public charter school board Public charter school board uri://ed-fi.org/CharterApprovalAgencyTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State board of education State board of education State board of education uri://ed-fi.org/CharterApprovalAgencyTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State department of education State department of education State department of education uri://ed-fi.org/CharterApprovalAgencyTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
University University University uri://ed-fi.org/CharterApprovalAgencyTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • School.CharterApprovalAgencyType (optional)

Descriptor catalog Descriptor

CharterStatus #

/ed-fi/descriptors/charterStatusDescriptors

The category of charter school. For example: School Charter, Open Enrollment Charter.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CharterStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CharterStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
College/University Charter College/University Charter College/University Charter uri://ed-fi.org/CharterStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not a Charter School Not a Charter School Not a Charter School uri://ed-fi.org/CharterStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Open Enrollment Open Enrollment Open Enrollment uri://ed-fi.org/CharterStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Charter School Charter School Charter uri://ed-fi.org/CharterStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • LocalEducationAgency.CharterStatus (optional)
  • School.CharterStatus (optional)

Canonical UDM resource Class

ChartOfAccount #

/ed-fi/chartOfAccounts

A valid combination of account dimensions under which financials are reported. This financial entity represents a funding source combined with its purpose and type of transaction. It provides a formal record of the debits and credits relating to the specific account.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.ChartOfAccount edfi.ChartOfAccountReportingTag
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (14)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AccountIdentifier
AccountIdentifier
String
VARCHAR(50)
required
identity
ODS/API identity
SEA populated code value for the valid combination of account dimensions under which financials are reported. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for the account integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization managing the chart of accounts. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AccountType
AccountTypeDescriptor
Reference
DescriptorProperty
Allowed values: AccountTypeDescriptor (3 Ed-Fi seed values)
required The type of account used in accounting such as revenue, expenditure, or balance sheet. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AccountName
AccountName
String
VARCHAR(100)
optional A descriptive name for the account. max length 100 characters; optional Ed-Fi field source pass-through
BalanceSheetBalanceSheetDimension
BalanceSheetDimensionReference
Reference
DomainEntityProperty
optional References the balance sheet dimension with which the chart of account is associated. object reference; optional Ed-Fi field source pass-through
FunctionFunctionDimension
FunctionDimensionReference
Reference
DomainEntityProperty
optional References the function dimension with which the chart of account is associated. object reference; optional Ed-Fi field source pass-through
FundFundDimension
FundDimensionReference
Reference
DomainEntityProperty
optional References the fund dimension with which the chart of account is associated. object reference; optional Ed-Fi field source pass-through
ObjectObjectDimension
ObjectDimensionReference
Reference
DomainEntityProperty
optional References the object dimension with which the chart of account is associated. object reference; optional Ed-Fi field source pass-through
OperationalUnitOperationalUnitDimension
OperationalUnitDimensionReference
Reference
DomainEntityProperty
optional References the operational unit dimension with which the chart of account is associated. object reference; optional Ed-Fi field source pass-through
ProgramProgramDimension
ProgramDimensionReference
Reference
DomainEntityProperty
optional References the program dimension with which the chart of account is associated. object reference; optional Ed-Fi field source pass-through
ProjectProjectDimension
ProjectDimensionReference
Reference
DomainEntityProperty
optional References the project dimension with which the chart of account is associated. object reference; optional Ed-Fi field source pass-through
SourceSourceDimension
SourceDimensionReference
Reference
DomainEntityProperty
optional References the source dimension with which the chart of account is associated. object reference; optional Ed-Fi field source pass-through
ReportingTag
ReportingTags
Reference
CommonProperty
optional collection Optional tag for accountability reporting. object reference; optional collection Ed-Fi field source pass-through
Used By (1)
  • LocalAccount.ChartOfAccount (required)

UDM primitive/simple type String

CIPCode #

dictionary-only type

Number and description of the CIP Code associated with the student's CTE program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 120
Used By (1)
  • CTEProgramService.CIPCode (optional)

UDM common/composite Composite Part

Citizenship #

dictionary-only type

Contains information relative to U.S. citizenship status and its associated probationary documentation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CitizenshipStatus
CitizenshipStatusDescriptor
Reference
DescriptorProperty
Allowed values: CitizenshipStatusDescriptor (5 Ed-Fi seed values)
required An indicator of whether or not the person is a U.S. citizen. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Visa
Visas
Reference
DescriptorProperty
Allowed values: governed VisasDescriptor values; no matching handbook descriptor entry found.
optional collection An indicator of a non-US citizen's Visa type. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
IdentificationDocument
IdentificationDocuments
Reference
CommonProperty
optional collection Describe the documentation of citizenship. object reference; optional collection Ed-Fi field source pass-through
Used By (4)
  • ApplicantProfile.Citizenship (optional)
  • Candidate.Citizenship (optional)
  • StaffDemographic.Citizenship (optional)
  • StudentDemographic.Citizenship (optional)

Descriptor catalog Descriptor

CitizenshipStatus #

/ed-fi/descriptors/citizenshipStatusDescriptors

An indicator of whether or not the person is a U.S. citizen.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Educator Preparation Program, Enrollment, Recruiting and Staffing, Staff, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.CitizenshipStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CitizenshipStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Non-resident alien Non-resident alien Non-resident alien uri://ed-fi.org/CitizenshipStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Permanent resident Permanent resident Permanent resident uri://ed-fi.org/CitizenshipStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Refugee Refugee Refugee uri://ed-fi.org/CitizenshipStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Resident alien Resident alien Resident alien uri://ed-fi.org/CitizenshipStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
US Citizen US Citizen US Citizen uri://ed-fi.org/CitizenshipStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Citizenship.CitizenshipStatus (required)

UDM primitive/simple type String

City #

dictionary-only type

The name of the city in which an address is located.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 2
  • max length: 30
Used By (2)
  • Address.City (required)
  • BirthData.BirthCity (optional)

Canonical UDM resource Class

ClassPeriod #

/ed-fi/classPeriods

This entity represents the designation of a regularly scheduled series of class meetings at designated times and days of the week.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Bell Schedule, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ClassPeriod edfi.ClassPeriodMeetingTime
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the class period to the school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ClassPeriodName
ClassPeriodName
String
VARCHAR(60)
required
identity
ODS/API identity
An indication of the portion of a typical daily session in which students receive instruction in a specified subject (e.g., morning, sixth period, block period, or AB schedules). max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MeetingTime
MeetingTimes
Reference
CommonProperty
optional collection The meeting time(s) for a class period. object reference; optional collection Ed-Fi field source pass-through
OfficialAttendancePeriod
OfficialAttendancePeriod
Boolean
BOOLEAN
optional Indicator of whether this class period is used for official daily attendance. Alternatively, official daily attendance may be tied to a section. boolean true/false; optional Ed-Fi field source pass-through
Used By (3)
  • BellSchedule.ClassPeriod (required collection)
  • Section.ClassPeriod (optional collection)
  • StudentSectionAttendanceEvent.ClassPeriod (optional collection)

UDM primitive/simple type String

ClassPeriodName #

dictionary-only type

An indication of the portion of a typical daily session in which students receive instruction in a specified subject (e.g., morning, sixth period, block period or AB schedules).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • ClassPeriod.ClassPeriodName (required)

UDM primitive/simple type Number

ClassRank #

dictionary-only type

The academic rank of a student in relation to his or her graduating class (e.g., 1st, 2nd, 3rd).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM common/composite Composite Part

ClassRanking #

dictionary-only type

The academic rank information of a student in relation to his or her graduating class.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ClassRank
ClassRank
Number
INT
required The academic rank of a student in relation to his or her graduating class (e.g., 1st, 2nd, 3rd). integer range -2,147,483,648 to 2,147,483,647; required Ed-Fi field source pass-through
TotalNumberInClass
TotalNumberInClass
Number
INT
required The total number of students in the student's graduating class. integer range -2,147,483,648 to 2,147,483,647; required Ed-Fi field source pass-through
PercentageRanking
PercentageRanking
Number
INT
optional The academic percentage rank of a student in relation to his or her graduating class (e.g., 95%, 80%, 50%). integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
ClassRankingDate
ClassRankingDate
Date
DATE
optional Date class ranking was determined. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentAcademicRecord.ClassRanking (optional)

UDM primitive/simple type Date

ClassRankingDate #

dictionary-only type

Date class ranking was determined.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ClassRanking.ClassRankingDate (optional)

UDM primitive/simple type String

ClassroomIdentificationCode #

dictionary-only type

A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • Location.ClassroomIdentificationCode (required)

Descriptor catalog Descriptor

ClassroomPosition #

/ed-fi/descriptors/classroomPositionDescriptors

This descriptor defines the type of position the staff member holds in a specific class/section.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education, Student Cohort, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ClassroomPositionDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ClassroomPositionDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Assistant Teacher Assistant Teacher Assistant Teacher uri://ed-fi.org/ClassroomPositionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Substitute Teacher Substitute Teacher Substitute Teacher uri://ed-fi.org/ClassroomPositionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Support Teacher Support Teacher Support Teacher uri://ed-fi.org/ClassroomPositionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher of Record Teacher of Record Teacher of Record uri://ed-fi.org/ClassroomPositionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StaffSectionAssociation.ClassroomPosition (required)

UDM primitive/simple type String

Code #

dictionary-only type

The code representation of a chart of account dimension.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 16
Used By (9)
  • Provider.ProviderCode (optional)
  • BalanceSheetDimension.Code (required)
  • FunctionDimension.Code (required)
  • FundDimension.Code (required)
  • ObjectDimension.Code (required)
  • OperationalUnitDimension.Code (required)
  • ProgramDimension.Code (required)
  • ProjectDimension.Code (required)
  • SourceDimension.Code (required)

UDM primitive/simple type String

CodeName #

dictionary-only type

Descriptive name for a chart of account dimension.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 100
Used By (8)
  • BalanceSheetDimension.CodeName (optional)
  • FunctionDimension.CodeName (optional)
  • FundDimension.CodeName (optional)
  • ObjectDimension.CodeName (optional)
  • OperationalUnitDimension.CodeName (optional)
  • ProgramDimension.CodeName (optional)
  • ProjectDimension.CodeName (optional)
  • SourceDimension.CodeName (optional)

Canonical UDM resource Class

Cohort #

/ed-fi/cohorts

This entity represents any type of list of designated students for tracking, analysis, or intervention.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention, Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.Cohort edfi.CohortProgram
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CohortIdentifier
CohortIdentifier
String
VARCHAR(36)
required
identity
ODS/API identity
The name or ID for the cohort. max length 36 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CohortDescription
CohortDescription
String
VARCHAR(1024)
optional The description of the cohort and its purpose. max length 1024 characters; optional Ed-Fi field source pass-through
CohortType
CohortTypeDescriptor
Reference
DescriptorProperty
Allowed values: CohortTypeDescriptor (11 Ed-Fi seed values)
required The type of cohort (e.g., academic intervention, classroom breakout). object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CohortScope
CohortScopeDescriptor
Reference
DescriptorProperty
Allowed values: CohortScopeDescriptor (9 Ed-Fi seed values)
optional The scope of cohort (e.g., school, district, classroom). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AcademicSubject
AcademicSubjectDescriptor
Reference
DescriptorProperty
Allowed values: AcademicSubjectDescriptor (21 Ed-Fi seed values)
optional The academic subject associated with an academic intervention. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization associated with and owner of the cohort. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Program
Programs
Reference
DomainEntityProperty
optional collection The (optional) program associated with this cohort (e.g., special education). object reference; optional collection Ed-Fi field source pass-through
Used By (3)
  • StaffCohortAssociation.Cohort (required)
  • StudentCohortAssociation.Cohort (required)
  • StudentInterventionAssociation.Cohort (optional)

UDM primitive/simple type String

CohortDescription #

dictionary-only type

Description of the student cohort.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 1024
Used By (1)
  • Cohort.CohortDescription (optional)

UDM primitive/simple type String

CohortIdentifier #

dictionary-only type

A locally assigned unique identifier (within the school or school district) to identify each specific incident or occurrence. The same identifier should be used to document the entire incident even if it included multiple offenses and multiple offenders.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 36
Used By (1)
  • Cohort.CohortIdentifier (required)

Descriptor catalog Descriptor

CohortScope #

/ed-fi/descriptors/cohortScopeDescriptors

The scope of cohort (e.g., school, district, classroom).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention, Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.CohortScopeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CohortScopeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Classroom Classroom Classroom uri://ed-fi.org/CohortScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Counselor Counselor Counselor uri://ed-fi.org/CohortScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
District District District uri://ed-fi.org/CohortScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Network Network Network uri://ed-fi.org/CohortScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CohortScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Principal Principal Principal uri://ed-fi.org/CohortScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/CohortScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Statewide Statewide Statewide uri://ed-fi.org/CohortScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher Teacher Teacher uri://ed-fi.org/CohortScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Cohort.CohortScope (optional)

Descriptor catalog Descriptor

CohortType #

/ed-fi/descriptors/cohortTypeDescriptors

The type of the cohort (e.g., academic intervention, classroom breakout).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention, Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.CohortTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CohortTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Academic Intervention Academic Intervention Academic Intervention uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Attendance Intervention Attendance Intervention Attendance Intervention uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Classroom Pullout Classroom Pullout Classroom Pullout uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Counselor List Counselor List Counselor List uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Discipline Intervention Discipline Intervention Discipline Intervention uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Extracurricular Activity Extracurricular Activity Extracurricular Activity uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Field Trip Field Trip Field Trip uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
In-school Suspension In-school Suspension In-school Suspension uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Principal Watch List Principal Watch List Principal Watch List uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Study Hall Study Hall Study Hall uri://ed-fi.org/CohortTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Cohort.CohortType (required)

UDM common/composite Composite Part

CohortYear #

dictionary-only type

The type and year of a cohort (e.g., 9th grade) the student belongs to.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The school year associated with the cohort; for example, the intended school year of graduation. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CohortYearType
CohortYearTypeDescriptor
Reference
DescriptorProperty
Allowed values: CohortYearTypeDescriptor (12 Ed-Fi seed values)
required
identity
ODS/API identity
The type of cohort year (9th grade, graduation). object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Term
TermDescriptor
Reference
DescriptorProperty
Allowed values: TermDescriptor (16 Ed-Fi seed values)
optional The term associated with the cohort year; for example, the intended term of graduation. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (2)
  • CandidateEducatorPreparationProgramAssociation.CohortYear (optional collection)
  • StudentEducationOrganizationAssociation.CohortYear (optional collection)

Descriptor catalog Descriptor

CohortYearType #

/ed-fi/descriptors/cohortYearTypeDescriptors

The enumeration items for the set of cohort years.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program, Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.CohortYearTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (12 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CohortYearTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Eighth grade Eighth grade Eighth grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eleventh grade Eleventh grade Eleventh grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fifth grade Fifth grade Fifth grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First grade First grade First grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fourth grade Fourth grade Fourth grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ninth grade Ninth grade Ninth grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second grade Second grade Second grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Seventh grade Seventh grade Seventh grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sixth grade Sixth grade Sixth grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tenth grade Tenth grade Tenth grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Third grade Third grade Third grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Twelfth grade Twelfth grade Twelfth grade uri://ed-fi.org/CohortYearTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CohortYear.CohortYearType (required)

UDM primitive/simple type String

Comment #

dictionary-only type

Additional information provided by the responder about the question in the survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 1024
Used By (2)
  • StudentProgramEvaluation.SummaryEvaluationComment (optional)
  • SurveyQuestionResponse.Comment (optional)

UDM primitive/simple type String

Comments #

dictionary-only type

Any comments to be captured.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 1024
Used By (7)
  • EvaluationElementRating.AreaOfRefinement (optional)
  • EvaluationElementRating.AreaOfReinforcement (optional)
  • EvaluationElementRating.Comments (optional)
  • EvaluationObjectiveRating.Comments (optional)
  • EvaluationRating.Comments (optional)
  • Goal.Comments (optional)
  • PerformanceEvaluationRating.Comments (optional)

Canonical UDM specialization Subclass

CommunityOrganization #

/ed-fi/communityOrganizations

This entity represents an administrative unit at the state level which exists primarily to operate local community providers.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.CommunityOrganization
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (1)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CommunityOrganizationId
CommunityOrganizationId
Number
INT
required
identity
ODS/API identity
The identifier assigned to a community organization. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Used By (1)
  • CommunityProvider.CommunityOrganization (optional)

UDM primitive/simple type Number

CommunityOrganizationId #

dictionary-only type

The identifier assigned to a community organization. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Canonical UDM specialization Subclass

CommunityProvider #

/ed-fi/communityProviders

This entity represents an educational organization that includes staff and students who participate in classes and educational activity groups.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.CommunityProvider
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CommunityProviderId
CommunityProviderId
Number
INT
required
identity
ODS/API identity
The identifier assigned to a community provider. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CommunityOrganization
CommunityOrganizationReference
Reference
DomainEntityProperty
optional CommunityOrganization of which the community provider is an organizational component. object reference; optional Ed-Fi field source pass-through
ProviderProfitability
ProviderProfitabilityDescriptor
Reference
DescriptorProperty
Allowed values: ProviderProfitabilityDescriptor (3 Ed-Fi seed values)
optional Indicates the profitability status of the provider. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ProviderStatus
ProviderStatusDescriptor
Reference
DescriptorProperty
Allowed values: ProviderStatusDescriptor (3 Ed-Fi seed values)
required Indicates the status of the provider. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ProviderCategory
ProviderCategoryDescriptor
Reference
DescriptorProperty
Allowed values: ProviderCategoryDescriptor (21 Ed-Fi seed values)
required Indicates the category of the provider. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SchoolIndicator
SchoolIndicator
Boolean
BOOLEAN
optional An indication of whether the community provider is a school. boolean true/false; optional Ed-Fi field source pass-through
LicenseExemptIndicator
LicenseExemptIndicator
Boolean
BOOLEAN
optional An indication of whether the provider is exempt from having a license. boolean true/false; optional Ed-Fi field source pass-through
Used By (1)
  • CommunityProviderLicense.CommunityProvider (required)

UDM primitive/simple type Number

CommunityProviderId #

dictionary-only type

The identifier assigned to a community provider. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Canonical UDM resource Class

CommunityProviderLicense #

/ed-fi/communityProviderLicenses

The legal document held by the community provider that authorizes the holder to perform certain functions and or services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.CommunityProviderLicense
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CommunityProvider
CommunityProviderReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the license to the community provider. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
License
License
Reference
InlineCommonProperty
required The legal document showing proof of permission or authorization. object reference; required Ed-Fi field source pass-through

UDM primitive/simple type Number

CompensationPackageAmount #

dictionary-only type

A compensation package amount associated with a staff position.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 9
  • decimal places: 2
Used By (3)
  • OpenStaffPosition.MaxSalary (optional)
  • OpenStaffPosition.MinSalary (optional)
  • OpenStaffPosition.TotalBudgeted (optional)

Descriptor catalog Descriptor

CompetencyLevel #

/ed-fi/descriptors/competencyLevelDescriptors

This descriptor defines various levels for assessed competencies.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CompetencyLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CompetencyLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Advanced Advanced Advanced uri://ed-fi.org/CompetencyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Basic Basic Basic uri://ed-fi.org/CompetencyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Below Basic Below Basic Below Basic uri://ed-fi.org/CompetencyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fail Fail Fail uri://ed-fi.org/CompetencyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pass Pass Pass uri://ed-fi.org/CompetencyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Proficient Proficient Proficient uri://ed-fi.org/CompetencyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Well Below Basic Well Below Basic Well Below Basic uri://ed-fi.org/CompetencyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • Course.CompetencyLevel (optional collection)
  • StudentCompetencyObjective.CompetencyLevel (required)
  • StudentGradebookEntry.CompetencyLevel (optional)

Canonical UDM resource Class

CompetencyObjective #

/ed-fi/competencyObjectives

This entity holds additional competencies for student achievement that are not associated with specific learning objectives (e.g., paying attention in class).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.CompetencyObjective
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CompetencyObjectiveId
CompetencyObjectiveId
String
VARCHAR(120)
optional The Identifier for the competency objective. max length 120 characters; optional Ed-Fi field source pass-through
Objective
Objective
String
VARCHAR(60)
required
identity
ODS/API identity
The designated title of the competency objective. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Description
Description
String
VARCHAR(1024)
optional The description of the student competency objective. max length 1024 characters; optional Ed-Fi field source pass-through
ObjectiveGradeLevel
ObjectiveGradeLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed ObjectiveGradeLevelDescriptor values; no matching handbook descriptor entry found.
required
identity
ODS/API identity
The grade level for which the competency objective is targeted. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization that defines the curriculum and courses offered - often the LEA or school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SuccessCriteria
SuccessCriteria
String
VARCHAR(150)
optional One or more statements that describes the criteria used by teachers and students to check for attainment of a competency objective. This criteria gives clear indications as to the degree to which learning is moving through the Zone or Proximal Development toward independent achievement of the competency objective. max length 150 characters; optional Ed-Fi field source pass-through
Used By (1)
  • StudentCompetencyObjective.CompetencyObjective (required)

UDM primitive/simple type Date

CompletedDate #

dictionary-only type

The month, day, and year on which the goal was completed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Goal.CompletedDate (optional)

UDM primitive/simple type Boolean

CompletedIndicator #

dictionary-only type

Indicator that the goal was completed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Goal.CompletedIndicator (optional)

UDM primitive/simple type Boolean

Completer #

dictionary-only type

Indicator of whether the staff completed the educator preparation program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffEducatorPreparationProgramAssociation.Completer (optional)

UDM primitive/simple type Boolean

CompletionIndicator #

dictionary-only type

Indicator on whether the student has completed the path milestone.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentPathMilestoneStatus.CompletionIndicator (optional)

UDM primitive/simple type Boolean

CompletionIndicator #

dictionary-only type

Indicator on whether the student has completed the phase associated with the path of study.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentPathPhaseStatus.CompletionIndicator (optional)

UDM primitive/simple type String

CongressionalDistrict #

dictionary-only type

The congressional district in which an address is located.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 30
Used By (1)
  • Address.CongressionalDistrict (optional)

UDM primitive/simple type Date

ConsentToEvaluationDate #

dictionary-only type

The date on which the student's parent gave a consent (Parent Consent Date).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.ConsentToEvaluationDate (optional)

UDM primitive/simple type Date

ConsentToEvaluationReceivedDate #

dictionary-only type

Indicates the date on which the local education agency received written consent for the evaluation from the student's parent or guardian. This is the first day of the evaluation timeframe.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.ConsentToEvaluationReceivedDate (identity)

Canonical UDM resource Class deprecated source element

Contact #

/ed-fi/contacts

This entity represents a contact of a student, such as a parent, guardian or caretaker.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Identification And Demographics, Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.Contact edfi.ContactAddress edfi.ContactAddressCharacteristic edfi.ContactAddressPeriod edfi.ContactElectronicMail edfi.ContactInternationalAddress edfi.ContactLanguage edfi.ContactLanguageUse edfi.ContactOtherName edfi.ContactPersonalIdentificationDocument edfi.ContactTelephone
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (13)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ContactUniqueId
ContactUniqueId
String
VARCHAR(32)
required
identity
ODS/API identity
A unique alphanumeric code assigned to a contact. max length 32 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Name
Name
Reference
InlineCommonProperty
required Full legal name of the person. object reference; required Ed-Fi field source pass-through
OtherName
OtherNames
Reference
CommonProperty
optional collection Other names (e.g., alias, nickname, previous legal name) associated with a person. object reference; optional collection Ed-Fi field source pass-through
Sex
SexDescriptor
Reference
DescriptorProperty
Allowed values: SexDescriptor (4 Ed-Fi seed values)
optional A person's birth sex. object reference; optional; deprecated: see deprecation reason; value must resolve through governed descriptor registry
Deprecated: The descriptor will be removed from the Ed-Fi core with Data Standard v7.0
Ed-Fi field source pass-through
GenderIdentity
GenderIdentity
String
VARCHAR(60)
optional The gender the contact identifies themselves as. max length 60 characters; optional Ed-Fi field source pass-through
Address
Addresses
Reference
CommonProperty
optional collection Contact's address, if different from the student address. object reference; optional collection Ed-Fi field source pass-through
InternationalAddress
InternationalAddresses
Reference
CommonProperty
optional collection The set of elements that describes an international address. object reference; optional collection Ed-Fi field source pass-through
Telephone
Telephones
Reference
CommonProperty
optional collection The 10-digit telephone number, including the area code, for the person. object reference; optional collection Ed-Fi field source pass-through
ElectronicMail
ElectronicMails
Reference
CommonProperty
optional collection The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the individual or organization belongs. object reference; optional collection Ed-Fi field source pass-through
LoginId
LoginId
String
VARCHAR(120)
optional The login ID for the user; used for security access control interface. max length 120 characters; optional Ed-Fi field source pass-through
Language
Languages
Reference
CommonProperty
optional collection The language(s) the individual uses to communicate. It is strongly recommended that entries use only ISO 639-2 language codes. object reference; optional collection Ed-Fi field source pass-through
Person
PersonReference
Reference
DomainEntityProperty
optional Relates the contact to a generic person. object reference; optional Ed-Fi field source pass-through
HighestCompletedLevelOfEducation
HighestCompletedLevelOfEducationDescriptor
Reference
DescriptorProperty
Allowed values: governed HighestCompletedLevelOfEducationDescriptor values; no matching handbook descriptor entry found.
optional The extent of formal instruction an individual has received (e.g., the highest grade in school completed or its equivalent or the highest degree received). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (3)
  • StudentContactAssociation.Contact (required)
  • SurveyResponderChoice.Contact (required)
  • ContactIdentificationCode.Contact (required)

Canonical UDM resource Class

ContactIdentificationCode #

/ed-fi/contactIdentificationCodes

This entity holds different identity codes for a contact.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.ContactIdentificationCode
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Contact
ContactReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the contact. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ContactIdentificationSystem
ContactIdentificationSystemDescriptor
Reference
DescriptorProperty
Allowed values: ContactIdentificationSystemDescriptor (15 Ed-Fi seed values)
required
identity
ODS/API identity
A coding scheme that is used for identification and record-keeping. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization representing the context of the contact information. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IdentificationCode
IdentificationCode
String
VARCHAR(120)
required A unique number or alphanumeric code assigned to an individual by a school, LEA, SEA, or other agency. max length 120 characters; required Ed-Fi field source pass-through
AssigningOrganizationIdentificationCode
AssigningOrganizationIdentificationCode
String
VARCHAR(60)
optional the organization code or name assigning the IdentificationCode. max length 60 characters; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

ContactIdentificationSystem #

/ed-fi/descriptors/contactIdentificationSystemDescriptors

This descriptor defines the originating record system and code that is used for record-keeping purposes of the contact.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.ContactIdentificationSystemDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ContactIdentificationSystemDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Canadian SIN Canadian SIN Canadian SIN uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
District District District uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Drivers License Drivers License Drivers License uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Federal Federal uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health Record Health Record Health Record uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medicaid Medicaid Medicaid uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Federal Other Federal Other Federal uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PIN PIN PIN uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Professional Certificate Professional Certificate Professional Certificate uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Selective Service Selective Service Selective Service uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SSN SSN SSN uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State State uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
US Visa US Visa US Visa uri://ed-fi.org/ContactIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • ContactIdentificationCode.ContactIdentificationSystem (required)

UDM primitive/simple type Number

ContactPriority #

dictionary-only type

The numeric order of the preferred sequence or priority of contact.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type String

ContactRestrictions #

dictionary-only type

Restrictions for student and/or teacher contact with the individual (e.g., the student may not be picked up by the individual).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 250
Used By (1)
  • StudentContactAssociation.ContactRestrictions (optional)

Descriptor catalog Descriptor

ContentClass #

/ed-fi/descriptors/contentClassDescriptors

The predominate type or kind characterizing the learning resource.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
edfi.ContentClassDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ContentClassDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Education Research Education Research Education Research uri://ed-fi.org/ContentClassDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Presentation Presentation Presentation uri://ed-fi.org/ContentClassDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vendor Intervention Offering Vendor Intervention Offering Vendor Intervention Offering uri://ed-fi.org/ContentClassDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Video Video Video uri://ed-fi.org/ContentClassDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Written Activity Written Activity Written Activity uri://ed-fi.org/ContentClassDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • LearningResource.ContentClass (required)

UDM primitive/simple type String

ContentIdentifier #

dictionary-only type

The identifier of the content standard.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 225
Used By (1)
  • EducationContent.ContentIdentifier (required)

UDM common/composite Composite Part

ContentStandard #

dictionary-only type

An indication as to whether an assessment conforms to a standard (e.g., local standard, statewide standard, regional standard, association standard). ...

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Title
Title
String
VARCHAR(100)
required The name of the content standard, for example Common Core. max length 100 characters; required Ed-Fi field source pass-through
Author
Authors
String
VARCHAR(255)
optional collection The person or organization chiefly responsible for the intellectual content of the standard. max length 255 characters; optional collection Ed-Fi field source pass-through
Version
Version
String
VARCHAR(50)
optional The version identifier for the content. max length 50 characters; optional Ed-Fi field source pass-through
URI
URI
String
VARCHAR(255)
optional An unambiguous reference to the standards using a network-resolvable URI. max length 255 characters; optional Ed-Fi field source pass-through
PublicationDateChoice
PublicationDateChoice
Reference
ChoiceProperty
optional The date or year that this content was first published. object reference; optional Ed-Fi field source pass-through
PublicationStatus
PublicationStatusDescriptor
Reference
DescriptorProperty
Allowed values: PublicationStatusDescriptor (5 Ed-Fi seed values)
optional The publication status of the document (i.e., Adopted, Draft, Published, Deprecated, Unknown). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MandatingEducationOrganization
MandatingEducationOrganizationReference
Reference
DomainEntityProperty
optional Optionally relates the entity mandating the use of the content standard. object reference; optional Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
optional The beginning of the period during which this learning standard document is intended for use. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The end of the period during which this learning standard document is intended for use. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (2)
  • Assessment.ContentStandard (optional)
  • LearningStandard.ContentStandard (required)

UDM primitive/simple type String

ContentStandardName #

dictionary-only type

The name of the content standard, for example Common Core.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 65
Used By (1)
  • LearningStandardIdentificationCode.ContentStandardName (required)

UDM primitive/simple type String

ContentStandardTitle #

dictionary-only type

The name of the content standard, for example Common Core.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 100
Used By (1)
  • ContentStandard.Title (required)

UDM primitive/simple type String

ContentStandardVersion #

dictionary-only type

The version of the content standard (i.e. "Fall 2014", "v1.3", "Monroe County", etc).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 50
Used By (1)
  • ContentStandard.Version (optional)

UDM primitive/simple type String

ContentVersion #

dictionary-only type

The version identifier for the content.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 10
Used By (1)
  • LearningResource.Version (optional)

Descriptor catalog Descriptor

ContinuationOfServicesReason #

/ed-fi/descriptors/continuationOfServicesReasonDescriptors

In the Migrant Education program, a provision allows continuation of services after a child is no longer considered migratory for certain reasons. This descriptor holds the reasons prescribed in the statute.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.ContinuationOfServicesReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ContinuationOfServicesReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Ceased to be migratory during previous term Ceased to be migratory in previous term - comparable services not available Ceased to be migratory during previous school term and no comparable services are available uri://ed-fi.org/ContinuationofServicesReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ceased to be migratory during school term Ceased to be migratory during school term Ceased to be migratory during school term uri://ed-fi.org/ContinuationofServicesReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Previously migratory secondary student Previously migratory secondary student continuing credit accrual Previously migratory secondary student continuing secondary school credit accrual uri://ed-fi.org/ContinuationofServicesReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentMigrantEducationProgramAssociation.ContinuationOfServicesReason (optional)

UDM primitive/simple type String

Coordinate #

dictionary-only type

The data type to specify latitude or longitude.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 20
Used By (4)
  • Address.Latitude (optional)
  • Address.Longitude (optional)
  • InternationalAddress.Latitude (optional)
  • InternationalAddress.Longitude (optional)

UDM primitive/simple type Boolean

CorrectResponse #

dictionary-only type

Indicates the response is correct.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PossibleResponse.CorrectResponse (optional)

Descriptor catalog Descriptor

CostRate #

/ed-fi/descriptors/costRateDescriptors

The rate by which a cost applies (e.g. $1 per student).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention
Source
UDM Handbook entry
Physical SQL snippets
edfi.CostRateDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CostRateDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Flat Fee Flat Fee Flat Fee uri://ed-fi.org/CostRateDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Per Student Per Student Per Student uri://ed-fi.org/CostRateDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EducationContent.CostRate (optional)

UDM common/composite Composite Part

Coteaching #

dictionary-only type

The act of two teachers (teacher candidate and cooperating teacher) working together with groups of students; sharing the planning, organization, delivery, and assessment of instruction, as well as the physical space.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CoteachingBeginDate
CoteachingBeginDate
Date
DATE
required The month, day, and year on which the teacher candidate first starts co-teaching. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
CoteachingEndDate
CoteachingEndDate
Date
DATE
optional The month, day, and year on which the teacher candidate stopped co-teaching. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • FieldworkExperience.Coteaching (optional)

UDM primitive/simple type Date

CoteachingBeginDate #

dictionary-only type

The month, day, and year on which the teacher candidate first starts co-teaching. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Coteaching.CoteachingBeginDate (required)

UDM primitive/simple type Date

CoteachingEndDate #

dictionary-only type

The month, day, and year on which the teacher candidate stopped co-teaching. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Coteaching.CoteachingEndDate (optional)

Descriptor catalog Descriptor

CoteachingStyleObserved #

/ed-fi/descriptors/coteachingStyleObservedDescriptors

A type of co-teaching observed as part of the performance evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.CoteachingStyleObservedDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/CoteachingStyleObservedDescriptor.xml ยท status missing_404
Used By (1)
  • PerformanceEvaluationRating.CoteachingStyleObserved (optional)

Descriptor catalog Descriptor

Country #

/ed-fi/descriptors/countryDescriptors

This descriptor defines the name and code of the country. It is strongly recommended that entries use only ISO 3166 2-letter country codes.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Assessment Registration, Bell Schedule, Discipline, Education Organization, Educator Preparation Program, Enrollment, Finance, Graduation, Intervention, Recruiting and Staffing, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Student Health, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CountryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (249 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CountryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
AD Andorra Andorra uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AE United Arab Emirates United Arab Emirates uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AF Afghanistan Afghanistan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AG Antigua and Barbuda Antigua and Barbuda uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AI Anguilla Anguilla uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AL Albania Albania uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AM Armenia Armenia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AO Angola Angola uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AQ Antarctica Antarctica uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AR Argentina Argentina uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AS American Samoa American Samoa uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AT Austria Austria uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AU Australia Australia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AW Aruba Aruba uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AX ร…land Islands ร…land Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AZ Azerbaijan Azerbaijan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BA Bosnia and Herzegovina Bosnia and Herzegovina uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BB Barbados Barbados uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BD Bangladesh Bangladesh uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BE Belgium Belgium uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BF Burkina Faso Burkina Faso uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BG Bulgaria Bulgaria uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BH Bahrain Bahrain uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BI Burundi Burundi uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BJ Benin Benin uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BL Saint Barthรฉlemy Saint Barthรฉlemy uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BM Bermuda Bermuda uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BN Brunei Darussalam Brunei Darussalam uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BO Bolivia, Plurinational State of Bolivia, Plurinational State of uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BQ Bonaire, Sint Eustatius and Saba Bonaire, Sint Eustatius and Saba uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BR Brazil Brazil uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BS Bahamas Bahamas uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BT Bhutan Bhutan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BV Bouvet Island Bouvet Island uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BW Botswana Botswana uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BY Belarus Belarus uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BZ Belize Belize uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CA Canada Canada uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CC Cocos (Keeling) Islands Cocos (Keeling) Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CD Congo, the Democratic Republic of the Congo, the Democratic Republic of the uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CF Central African Republic Central African Republic uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CG Congo Congo uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CH Switzerland Switzerland uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CI Cรดte d'Ivoire Cรดte d'Ivoire uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CK Cook Islands Cook Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CL Chile Chile uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CM Cameroon Cameroon uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CN China China uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CO Colombia Colombia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CR Costa Rica Costa Rica uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CU Cuba Cuba uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CV Cabo Verde Cabo Verde uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CW Curaรงao Curaรงao uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CX Christmas Island Christmas Island uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CY Cyprus Cyprus uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CZ Czech Republic Czech Republic uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DE Germany Germany uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DJ Djibouti Djibouti uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DK Denmark Denmark uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DM Dominica Dominica uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DO Dominican Republic Dominican Republic uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DZ Algeria Algeria uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
EC Ecuador Ecuador uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
EE Estonia Estonia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
EG Egypt Egypt uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
EH Western Sahara Western Sahara uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ER Eritrea Eritrea uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ES Spain Spain uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ET Ethiopia Ethiopia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FI Finland Finland uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FJ Fiji Fiji uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FK Falkland Islands (Malvinas) Falkland Islands (Malvinas) uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FM Micronesia, Federated States of Micronesia, Federated States of uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FO Faroe Islands Faroe Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FR France France uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GA Gabon Gabon uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GB United Kingdom of Great Britain and Northern Ireland United Kingdom of Great Britain and Northern Ireland uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GD Grenada Grenada uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GE Georgia Georgia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GF French Guiana French Guiana uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GG Guernsey Guernsey uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GH Ghana Ghana uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GI Gibraltar Gibraltar uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GL Greenland Greenland uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GM Gambia Gambia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GN Guinea Guinea uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GP Guadeloupe Guadeloupe uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GQ Equatorial Guinea Equatorial Guinea uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GR Greece Greece uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GS South Georgia and the South Sandwich Islands South Georgia and the South Sandwich Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GT Guatemala Guatemala uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GU Guam Guam uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GW Guinea-Bissau Guinea-Bissau uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GY Guyana Guyana uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
HK Hong Kong Hong Kong uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
HM Heard Island and McDonald Islands Heard Island and McDonald Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
HN Honduras Honduras uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
HR Croatia Croatia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
HT Haiti Haiti uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
HU Hungary Hungary uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ID Indonesia Indonesia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IE Ireland Ireland uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IL Israel Israel uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IM Isle of Man Isle of Man uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IN India India uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IO British Indian Ocean Territory British Indian Ocean Territory uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IQ Iraq Iraq uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IR Iran, Islamic Republic of Iran, Islamic Republic of uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IS Iceland Iceland uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IT Italy Italy uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
JE Jersey Jersey uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
JM Jamaica Jamaica uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
JO Jordan Jordan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
JP Japan Japan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KE Kenya Kenya uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KG Kyrgyzstan Kyrgyzstan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KH Cambodia Cambodia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KI Kiribati Kiribati uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KM Comoros Comoros uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KN Saint Kitts and Nevis Saint Kitts and Nevis uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KP Korea, Democratic People's Republic of Korea, Democratic People's Republic of uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KR Korea, Republic of Korea, Republic of uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KW Kuwait Kuwait uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KY Cayman Islands Cayman Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KZ Kazakhstan Kazakhstan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LA Lao People's Democratic Republic Lao People's Democratic Republic uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LB Lebanon Lebanon uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LC Saint Lucia Saint Lucia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LI Liechtenstein Liechtenstein uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LK Sri Lanka Sri Lanka uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LR Liberia Liberia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LS Lesotho Lesotho uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LT Lithuania Lithuania uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LU Luxembourg Luxembourg uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LV Latvia Latvia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LY Libya Libya uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MA Morocco Morocco uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MC Monaco Monaco uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MD Moldova, Republic of Moldova, Republic of uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ME Montenegro Montenegro uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MF Saint Martin (French part) Saint Martin (French part) uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MG Madagascar Madagascar uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MH Marshall Islands Marshall Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MK Macedonia, the former Yugoslav Republic of Macedonia, the former Yugoslav Republic of uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ML Mali Mali uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MM Myanmar Myanmar uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MN Mongolia Mongolia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MO Macao Macao uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MP Northern Mariana Islands Northern Mariana Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MQ Martinique Martinique uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MR Mauritania Mauritania uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MS Montserrat Montserrat uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MT Malta Malta uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MU Mauritius Mauritius uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MV Maldives Maldives uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MW Malawi Malawi uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MX Mexico Mexico uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MY Malaysia Malaysia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MZ Mozambique Mozambique uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NA Namibia Namibia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NC New Caledonia New Caledonia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NE Niger Niger uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NF Norfolk Island Norfolk Island uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NG Nigeria Nigeria uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NI Nicaragua Nicaragua uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NL Netherlands Netherlands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NO Norway Norway uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NP Nepal Nepal uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NR Nauru Nauru uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NU Niue Niue uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NZ New Zealand New Zealand uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
OM Oman Oman uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PA Panama Panama uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PE Peru Peru uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PF French Polynesia French Polynesia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PG Papua New Guinea Papua New Guinea uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PH Philippines Philippines uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PK Pakistan Pakistan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PL Poland Poland uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PM Saint Pierre and Miquelon Saint Pierre and Miquelon uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PN Pitcairn Pitcairn uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PR Puerto Rico Puerto Rico uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PS Palestine, State of Palestine, State of uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PT Portugal Portugal uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PW Palau Palau uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PY Paraguay Paraguay uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
QA Qatar Qatar uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
RE Rรฉunion Rรฉunion uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
RO Romania Romania uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
RS Serbia Serbia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
RU Russian Federation Russian Federation uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
RW Rwanda Rwanda uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SA Saudi Arabia Saudi Arabia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SB Solomon Islands Solomon Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SC Seychelles Seychelles uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SD Sudan Sudan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SE Sweden Sweden uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SG Singapore Singapore uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SH Saint Helena, Ascension and Tristan da Cunha Saint Helena, Ascension and Tristan da Cunha uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SI Slovenia Slovenia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SJ Svalbard and Jan Mayen Svalbard and Jan Mayen uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SK Slovakia Slovakia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SL Sierra Leone Sierra Leone uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SM San Marino San Marino uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SN Senegal Senegal uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SO Somalia Somalia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SR Suriname Suriname uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SS South Sudan South Sudan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ST Sao Tome and Principe Sao Tome and Principe uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SV El Salvador El Salvador uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SX Sint Maarten (Dutch part) Sint Maarten (Dutch part) uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SY Syrian Arab Republic Syrian Arab Republic uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SZ Swaziland Swaziland uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TC Turks and Caicos Islands Turks and Caicos Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TD Chad Chad uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TF French Southern Territories French Southern Territories uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TG Togo Togo uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TH Thailand Thailand uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TJ Tajikistan Tajikistan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TK Tokelau Tokelau uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TL Timor-Leste Timor-Leste uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TM Turkmenistan Turkmenistan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TN Tunisia Tunisia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TO Tonga Tonga uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TR Turkey Turkey uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TT Trinidad and Tobago Trinidad and Tobago uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TV Tuvalu Tuvalu uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TW Taiwan, Province of China Taiwan, Province of China uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TZ Tanzania, United Republic of Tanzania, United Republic of uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
UA Ukraine Ukraine uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
UG Uganda Uganda uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
UM United States Minor Outlying Islands United States Minor Outlying Islands uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
US United States of America United States of America uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
UY Uruguay Uruguay uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
UZ Uzbekistan Uzbekistan uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VA Holy See Holy See uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VC Saint Vincent and the Grenadines Saint Vincent and the Grenadines uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VE Venezuela, Bolivarian Republic of Venezuela, Bolivarian Republic of uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VG Virgin Islands, British Virgin Islands, British uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VI Virgin Islands, U.S. Virgin Islands, U.S. uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VN Viet Nam Viet Nam uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VU Vanuatu Vanuatu uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
WF Wallis and Futuna Wallis and Futuna uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
WS Samoa Samoa uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
YE Yemen Yemen uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
YT Mayotte Mayotte uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ZA South Africa South Africa uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ZM Zambia Zambia uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ZW Zimbabwe Zimbabwe uri://ed-fi.org/CountryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • IdentificationDocument.IssuerCountry (optional)
  • InternationalAddress.Country (required)
  • BirthData.BirthCountry (optional)

UDM primitive/simple type String

CountyFIPSCode #

dictionary-only type

Definition The Federal Information Processing Standards (FIPS) numeric code for the county issued by the National Institute of Standards and Technology (NIST). Counties are considered to be the "first-order subdivisions" of each State and statistically equivalent entity, regardless of their local designations (county, parish, borough, etc.) Counties in different States will have the same code. A unique county number is created when combined with the 2-digit FIPS State Code.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 3
  • max length: 5
Used By (1)
  • Address.CountyFIPSCode (optional)

Canonical UDM resource Class

Course #

/ed-fi/courses

This educational entity represents the organization of subject matter and related learning experiences provided for the instruction of students on a regular or systematic basis.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.Course edfi.CourseAcademicSubject edfi.CourseCompetencyLevel edfi.CourseIdentificationCode edfi.CourseLearningStandard edfi.CourseLevelCharacteristic edfi.CourseOfferedGradeLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (20)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CourseCode
CourseCode
String
VARCHAR(120)
required
identity
ODS/API identity
A unique alphanumeric code assigned to a course. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CourseTitle
CourseTitle
String
VARCHAR(120)
required The descriptive name given to a course of study offered in a school or other institution or organization. In departmentalized classes at the elementary, secondary, and postsecondary levels (and for staff development activities), this refers to the name by which a course is identified (e.g., American History, English III). For elementary and other non-departmentalized classes, it refers to any portion of the instruction for which a grade or report is assigned (e.g., reading, composition, spelling, and language arts). max length 120 characters; required Ed-Fi field source pass-through
NumberOfParts
NumberOfParts
Number
INT
required The number of parts identified for a course. integer range -2,147,483,648 to 2,147,483,647; required Ed-Fi field source pass-through
CourseIdentificationCode
IdentificationCodes
Reference
CommonProperty
required collection The code that identifies the organization of subject matter and related learning experiences provided for the instruction of students. object reference; required collection Ed-Fi field source pass-through
CourseLevelCharacteristic
LevelCharacteristics
Reference
DescriptorProperty
Allowed values: governed LevelCharacteristicsDescriptor values; no matching handbook descriptor entry found.
optional collection The type of specific program or designation with which the course is associated (e.g., AP, IB, Dual Credit, CTE). object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
OfferedGradeLevel
OfferedGradeLevels
Reference
DescriptorProperty
Allowed values: governed OfferedGradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The grade levels in which the course is offered. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AcademicSubject
AcademicSubjects
Reference
DescriptorProperty
Allowed values: governed AcademicSubjectsDescriptor values; no matching handbook descriptor entry found.
optional collection The intended major subject/s area of the course. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CourseDescription
CourseDescription
String
VARCHAR(1024)
optional A description of the content standards and goals covered in the course. Reference may be made to state or national content standards. max length 1024 characters; optional Ed-Fi field source pass-through
TimeRequiredForCompletion
TimeRequiredForCompletion
Number
INT
optional The actual or estimated number of clock minutes required for class completion. This number is especially important for career and technical education classes and may represent (in minutes) the clock hour requirement of the class. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
DateCourseAdopted
DateCourseAdopted
Date
DATE
optional Date the course was adopted by the education agency. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
HighSchoolCourseRequirement
HighSchoolCourseRequirement
Boolean
BOOLEAN
optional An indication that this course may satisfy high school graduation requirements in the course's subject area. boolean true/false; optional Ed-Fi field source pass-through
CourseGPAApplicability
CourseGPAApplicabilityDescriptor
Reference
DescriptorProperty
Allowed values: CourseGPAApplicabilityDescriptor (3 Ed-Fi seed values)
optional An indicator of whether or not the course being described is included in the computation of the student's grade point average, and if so, if it is weighted differently from regular courses. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CourseDefinedBy
CourseDefinedByDescriptor
Reference
DescriptorProperty
Allowed values: CourseDefinedByDescriptor (4 Ed-Fi seed values)
optional Specifies whether the course was defined by the SEA, LEA, School, or national organization. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MinimumAvailableCredits
MinimumAvailableCredits
Reference
InlineCommonProperty
optional The minimum amount of credit available to a student who successfully completes the course. object reference; optional Ed-Fi field source pass-through
MaximumAvailableCredits
MaximumAvailableCredits
Reference
InlineCommonProperty
optional The maximum amount of credit available to a student who successfully completes the course. object reference; optional Ed-Fi field source pass-through
CareerPathway
CareerPathwayDescriptor
Reference
DescriptorProperty
Allowed values: CareerPathwayDescriptor (17 Ed-Fi seed values)
optional Indicates the career cluster or pathway the course is associated with as part of a CTE curriculum. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CompetencyLevel
CompetencyLevels
Reference
DescriptorProperty
Allowed values: governed CompetencyLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The competency levels defined to rate the student for the course. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization that defines the curriculum and courses offered - often the LEA or school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LearningStandard
LearningStandards
Reference
DomainEntityProperty
optional collection Learning standard(s) to be taught by the course. object reference; optional collection Ed-Fi field source pass-through
MaxCompletionsForCredit
MaxCompletionsForCredit
Number
INT
optional Designates how many times the course may be taken with credit received by the student. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (4)
  • SurveyCourseAssociation.Course (required)
  • CreditsByCourse.Course (required collection)
  • CourseOffering.Course (required)
  • CourseTranscript.Course (required)

Descriptor catalog Descriptor

CourseAttemptResult #

/ed-fi/descriptors/courseAttemptResultDescriptors

The result from the student's attempt to take the course.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CourseAttemptResultDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CourseAttemptResultDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Fail Fail Fail uri://ed-fi.org/CourseAttemptResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Incomplete Incomplete Incomplete uri://ed-fi.org/CourseAttemptResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pass Pass Pass uri://ed-fi.org/CourseAttemptResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Withdrawn Withdrawn Withdrawn uri://ed-fi.org/CourseAttemptResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CourseTranscript.CourseAttemptResult (required)

UDM primitive/simple type String

CourseCatalogURL #

dictionary-only type

The URL for the course catalog that defines the course identification code.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 5
  • max length: 255
Used By (2)
  • CourseIdentificationCode.CourseCatalogURL (optional)
  • CourseTranscript.CourseCatalogURL (optional)

Descriptor catalog Descriptor

CourseDefinedBy #

/ed-fi/descriptors/courseDefinedByDescriptors

Specifies whether the course was defined by the state education agency, local education agency, school, or national organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CourseDefinedByDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CourseDefinedByDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
LEA LEA LEA uri://ed-fi.org/CourseDefinedByDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
National Organization National Organization National Organization uri://ed-fi.org/CourseDefinedByDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/CourseDefinedByDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SEA SEA SEA uri://ed-fi.org/CourseDefinedByDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Course.CourseDefinedBy (optional)

Descriptor catalog Descriptor

CourseGPAApplicability #

/ed-fi/descriptors/courseGPAApplicabilityDescriptors

An indicator of whether or not this course being described is included in the computation of the student's Grade Point Average, and if so, if it is weighted differently than regular courses.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CourseGPAApplicabilityDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CourseGPAApplicabilityDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Applicable Applicable Applicable uri://ed-fi.org/CourseGPAApplicabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Applicable Not Applicable Not Applicable uri://ed-fi.org/CourseGPAApplicabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Weighted Weighted Weighted uri://ed-fi.org/CourseGPAApplicabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Course.CourseGPAApplicability (optional)

UDM common/composite Composite Part

CourseIdentificationCode #

dictionary-only type

A standard code that identifies the organization of subject matter and related learning experiences provided for the instruction of students.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
IdentificationCode
IdentificationCode
String
VARCHAR(120)
required A unique number or alphanumeric code assigned to a course by a school, school system, state, or other agency or entity. For multi-part course codes, concatenate the parts separated by a "/". For example, consider the following SCED code- subject = 20 Math course = 272 Geometry level = G General credits = 1.00 course sequence 1 of 1- would be entered as 20/272/G/1.00/1 of 1. max length 120 characters; required Ed-Fi field source pass-through
CourseIdentificationSystem
CourseIdentificationSystemDescriptor
Reference
DescriptorProperty
Allowed values: CourseIdentificationSystemDescriptor (9 Ed-Fi seed values)
required
identity
ODS/API identity
A system that is used to identify the organization of subject matter and related learning experiences provided for the instruction of students. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssigningOrganizationIdentificationCode
AssigningOrganizationIdentificationCode
String
VARCHAR(120)
optional The organization code or name assigning the Identification Code. max length 120 characters; optional Ed-Fi field source pass-through
CourseCatalogURL
CourseCatalogURL
String
VARCHAR(255)
optional The URL for the course catalog that defines the course identification code. max length 255 characters; optional Ed-Fi field source pass-through
Used By (2)
  • Course.CourseIdentificationCode (required collection)
  • CourseTranscript.AlternativeCourseIdentificationCode (optional collection)

Descriptor catalog Descriptor

CourseIdentificationSystem #

/ed-fi/descriptors/courseIdentificationSystemDescriptors

This descriptor defines a standard code that identifies the organization of subject matter and related learning experiences provided for the instruction of students.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CourseIdentificationSystemDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CourseIdentificationSystemDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
CSSC course code CSSC course code CSSC course code uri://ed-fi.org/CourseIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Intermediate agency course code Intermediate agency course code Intermediate agency course code uri://ed-fi.org/CourseIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LEA course code LEA course code LEA course code uri://ed-fi.org/CourseIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NCES Pilot SNCCS course code NCES Pilot SNCCS course code NCES Pilot SNCCS course code uri://ed-fi.org/CourseIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CourseIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SCED course code SCED course code SCED course code uri://ed-fi.org/CourseIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School course code School course code School course code uri://ed-fi.org/CourseIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State course code State course code State course code uri://ed-fi.org/CourseIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
University course code University course code University course code uri://ed-fi.org/CourseIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CourseIdentificationCode.CourseIdentificationSystem (required)

Descriptor catalog Descriptor

CourseLevelCharacteristic #

/ed-fi/descriptors/courseLevelCharacteristicDescriptors

The item for indication of the nature and difficulty of instruction: Remedial, Basic, Honors, Ap, IB, Dual Credit, CTE. etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Bell Schedule, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CourseLevelCharacteristicDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (23 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CourseLevelCharacteristicDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accepted as high school equivalent Accepted as high school equivalent Accepted as high school equivalent uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Advanced Advanced Advanced uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Advanced Placement Advanced Placement Advanced Placement uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Basic Basic Basic uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career and Technical Education Career and Technical Education Career and Technical Education uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College-level College-level College-level uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Core Subject Core Subject Core Subject uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Correspondence Correspondence Correspondence uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Distance Learning Distance Learning Distance Learning uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dual Credit Dual Credit Dual Credit uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
English Language Learner English Language Learner English Language Learner uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
General General General uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Gifted and Talented Gifted and Talented Gifted and Talented uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graduation Credit Graduation Credit Graduation Credit uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Honors Honors Honors uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
International Baccalaureate International Baccalaureate International Baccalaureate uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Magnet Magnet Magnet uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pre-AP Pre-AP Pre-AP uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pre-IB Pre-IB Pre-IB uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Remedial Remedial Remedial uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Students with disabilities Students with disabilities Students with disabilities uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Untracked Untracked Untracked uri://ed-fi.org/CourseLevelCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • Course.CourseLevelCharacteristic (optional collection)
  • CourseOffering.CourseLevelCharacteristic (optional collection)
  • Section.CourseLevelCharacteristic (optional collection)

Canonical UDM resource Class

CourseOffering #

/ed-fi/courseOfferings

This entity represents an entry in the course catalog of available courses offered by the school during a session.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CourseOffering edfi.CourseOfferingCourseLevelCharacteristic edfi.CourseOfferingCurriculumUsed edfi.CourseOfferingOfferedGradeLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LocalCourseCode
LocalCourseCode
String
VARCHAR(60)
required
identity
ODS/API identity
The local code assigned by the School that identifies the course offering provided for the instruction of students. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LocalCourseTitle
LocalCourseTitle
String
VARCHAR(120)
optional The descriptive name given to a course of study offered in the school, if different from the course title. max length 120 characters; optional Ed-Fi field source pass-through
InstructionalTimePlanned
InstructionalTimePlanned
Number
INT
optional The planned total number of clock minutes of instruction for this course offering. Generally, this should be at least as many minutes as is required for completion by the related state- or district-defined course. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
CurriculumUsed
CurriculumUseds
Reference
DescriptorProperty
Allowed values: governed CurriculumUsedsDescriptor values; no matching handbook descriptor entry found.
optional collection The type of curriculum used in an early learning classroom or group. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The school that offers the course. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Session
SessionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The session in which the course is offered at the school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Course
CourseReference
Reference
DomainEntityProperty
required The course being offered by the school. object reference; required Ed-Fi field source pass-through
CourseLevelCharacteristic
CourseLevelCharacteristics
Reference
DescriptorProperty
Allowed values: governed CourseLevelCharacteristicsDescriptor values; no matching handbook descriptor entry found.
optional collection The type of specific program or designation with which the course offering is associated (e.g., AP, IB, Dual Credit, CTE). This collection should only be populated if it differs from the course level characteristics identified at the course level. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
OfferedGradeLevel
OfferedGradeLevels
Reference
DescriptorProperty
Allowed values: governed OfferedGradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The grade levels in which the course is offered. This collection should only be populated if it differs from the offered grade levels identified at the course level. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • Section.CourseOffering (required)

Descriptor catalog Descriptor

CourseRepeatCode #

/ed-fi/descriptors/courseRepeatCodeDescriptors

Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student's academic grade average.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CourseRepeatCodeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CourseRepeatCodeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Not Counted Other Not Counted Other Not Counted Other uri://ed-fi.org/CourseRepeatCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Repeat Counted Repeat Counted Repeat Counted uri://ed-fi.org/CourseRepeatCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Repeat NotCounted Repeat NotCounted Repeat NotCounted uri://ed-fi.org/CourseRepeatCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Repeat Other Institution Repeat Other Institution Repeat Other Institution uri://ed-fi.org/CourseRepeatCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Replaced NotCounted Replaced NotCounted Replaced NotCounted uri://ed-fi.org/CourseRepeatCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Replacement Counted Replacement Counted Replacement Counted uri://ed-fi.org/CourseRepeatCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CourseTranscript.CourseRepeatCode (optional)

UDM primitive/simple type String

CourseSetName #

dictionary-only type

Identifying name given to a collection of courses.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 120
Used By (1)
  • CreditsByCourse.CourseSetName (required)

UDM primitive/simple type String

CourseTitle #

dictionary-only type

The descriptive name given to a course of study offered in a school or other institution or organization. In departmentalized classes at the elementary, secondary, and postsecondary levels (and for staff development activities), this refers to the name by which a course is identified (e.g., American History, English III). For elementary and other non-departmentalized classes, it refers to any portion of the instruction for which a grade or report is assigned (e.g., reading, composition, spelling, and language arts).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 120
Used By (5)
  • Course.CourseTitle (required)
  • CourseOffering.LocalCourseTitle (optional)
  • CourseTranscript.CourseTitle (optional)
  • CourseTranscript.AlternativeCourseTitle (optional)
  • LearningStandard.CourseTitle (optional)

Canonical UDM resource Class

CourseTranscript #

/ed-fi/courseTranscripts

This entity is the final record of a student's performance in their courses at the end of a semester or school year.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CourseTranscript edfi.CourseTranscriptAcademicSubject edfi.CourseTranscriptAlternativeCourseIdentificationCode edfi.CourseTranscriptCourseProgram edfi.CourseTranscriptCreditCategory edfi.CourseTranscriptEarnedAdditionalCredits edfi.CourseTranscriptPartialCourseTranscriptAwards edfi.CourseTranscriptSection
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (24)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CourseAttemptResult
CourseAttemptResultDescriptor
Reference
DescriptorProperty
Allowed values: CourseAttemptResultDescriptor (4 Ed-Fi seed values)
required
identity
ODS/API identity
The result from the student's attempt to take the course. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AttemptedCredits
AttemptedCredits
Reference
InlineCommonProperty
optional The number of credits a student attempted and could earn for successfully completing a given course. object reference; optional Ed-Fi field source pass-through
EarnedCredits
EarnedCredits
Reference
InlineCommonProperty
optional The number of credits a student earned for completing a given course. object reference; optional Ed-Fi field source pass-through
EarnedAdditionalCredits
EarnedAdditionalCredits
Reference
CommonProperty
optional collection The number of additional credits a student attempted and could earn for successfully completing a given course. object reference; optional collection Ed-Fi field source pass-through
WhenTakenGradeLevel
WhenTakenGradeLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed WhenTakenGradeLevelDescriptor values; no matching handbook descriptor entry found.
optional Student's grade level at time of course. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MethodCreditEarned
MethodCreditEarnedDescriptor
Reference
DescriptorProperty
Allowed values: MethodCreditEarnedDescriptor (8 Ed-Fi seed values)
optional The method the credits were earned. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
FinalLetterGradeEarned
FinalLetterGradeEarned
String
VARCHAR(20)
optional The final indicator of student performance in a class as submitted by the instructor. max length 20 characters; optional Ed-Fi field source pass-through
FinalNumericGradeEarned
FinalNumericGradeEarned
Number
DECIMAL(9, 2)
optional The final indicator of student performance in a class as submitted by the instructor. numeric precision 9, scale 2; optional Ed-Fi field source pass-through
CourseRepeatCode
CourseRepeatCodeDescriptor
Reference
DescriptorProperty
Allowed values: CourseRepeatCodeDescriptor (6 Ed-Fi seed values)
optional Indicates that an academic course has been repeated by a student and how that repeat is to be computed in the student's academic grade average. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Course
CourseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The course recorded in the course transcript entry. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StudentAcademicRecord
StudentAcademicRecordReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Link to the student's academic record for a semester/school year. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Section
Sections
Reference
DomainEntityProperty
optional collection The section(s) associated with the course transcript. object reference; optional collection Ed-Fi field source pass-through
ResponsibleTeacherStaff
ResponsibleTeacherStaffReference
Reference
DomainEntityProperty
optional The staff member that is the responsible teacher for instructing or monitoring instruction for student attempting the course. object reference; optional Ed-Fi field source pass-through
CourseProgram
CoursePrograms
Reference
DomainEntityProperty
optional collection The program(s) that the student participated in the context of the course. object reference; optional collection Ed-Fi field source pass-through
CourseTitle
CourseTitle
String
VARCHAR(120)
optional The descriptive name given to a course of study offered in a school or other institution or organization. In departmentalized classes at the elementary, secondary, and postsecondary levels (and for staff development activities), this refers to the name by which a course is identified (e.g., American History, English III). For elementary and other non-departmentalized classes, it refers to any portion of the instruction for which a grade or report is assigned (e.g., reading, composition, spelling, language arts). max length 120 characters; optional Ed-Fi field source pass-through
AlternativeCourseTitle
AlternativeCourseTitle
String
VARCHAR(120)
optional The descriptive name given to a course of study offered in the school, if different from the CourseTitle. max length 120 characters; optional Ed-Fi field source pass-through
ExternalEducationOrganization
ExternalEducationOrganizationReference
Reference
DomainEntityProperty
optional The external institution where the student completed the course (e.g., the original education organization for a transferred course transcript, or the provider for an online course). object reference; optional Ed-Fi field source pass-through
ExternalEducationOrganizationNameOfInstitution
ExternalEducationOrganizationNameOfInstitution
String
VARCHAR(75)
optional Name of the external institution where the student completed the course; to be used only when the reference external education organization is not available. max length 75 characters; optional Ed-Fi field source pass-through
AlternativeCourseIdentificationCode
AlternativeCourseIdentificationCodes
Reference
CommonProperty
optional collection The code that identifies the course, course offering, the code from an external educational organization, or other alternate course code. object reference; optional collection Ed-Fi field source pass-through
AssigningOrganizationIdentificationCode
AssigningOrganizationIdentificationCode
String
VARCHAR(120)
optional The organization code or name assigning the course identification code. max length 120 characters; optional Ed-Fi field source pass-through
CourseCatalogURL
CourseCatalogURL
String
VARCHAR(255)
optional The URL for the course catalog that defines the course identification code. max length 255 characters; optional Ed-Fi field source pass-through
CreditCategory
CreditCategories
Reference
DescriptorProperty
Allowed values: governed CreditCategoriesDescriptor values; no matching handbook descriptor entry found.
optional collection A categorization for the course transcript credits awarded in the course transcript. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AcademicSubject
AcademicSubjects
Reference
DescriptorProperty
Allowed values: governed AcademicSubjectsDescriptor values; no matching handbook descriptor entry found.
optional collection The subject area for the course transcript credits awarded in the course transcript. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PartialCourseTranscriptAwards
PartialCourseTranscriptAwards
Reference
CommonProperty
optional collection A collection of partial credits and/or grades a student earned against the course over the session, used when awards of credit are incremental. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM resource Class

Credential #

/ed-fi/credentials

The legal document giving authorization to perform teaching assignment services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.Credential edfi.CredentialAcademicSubject edfi.CredentialEndorsement edfi.CredentialGradeLevel edfi.CredentialStudentAcademicRecord
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (22)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CredentialIdentifier
CredentialIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
Identifier or serial number assigned to the credential. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StateOfIssueStateAbbreviation
StateOfIssueStateAbbreviationDescriptor
Reference
DescriptorProperty
Allowed values: governed StateOfIssueStateAbbreviationDescriptor values; no matching handbook descriptor entry found.
required
identity
ODS/API identity
The abbreviation for the name of the state (within the United States) or extra-state jurisdiction in which a license/credential was issued. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required The namespace for the credential. max length 255 characters; required Ed-Fi field source pass-through
CredentialType
CredentialTypeDescriptor
Reference
DescriptorProperty
Allowed values: CredentialTypeDescriptor (7 Ed-Fi seed values)
required An indication of the category of the credential a person holds. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
IssuanceDate
IssuanceDate
Date
DATE
required The month, day, and year on which an active credential was issued to a person. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
CredentialField
CredentialFieldDescriptor
Reference
DescriptorProperty
Allowed values: CredentialFieldDescriptor (15 Ed-Fi seed values)
optional The field of certification for the credential. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EffectiveDate
EffectiveDate
Date
DATE
optional The month, day, and year on which an active credential held by a person was issued. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ExpirationDate
ExpirationDate
Date
DATE
optional The month, day, and year on which an active credential held by a person will expire. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
TeachingCredential
TeachingCredentialDescriptor
Reference
DescriptorProperty
Allowed values: TeachingCredentialDescriptor (15 Ed-Fi seed values)
optional An indication of the category of a legal document giving authorization to perform teaching assignment services. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TeachingCredentialBasis
TeachingCredentialBasisDescriptor
Reference
DescriptorProperty
Allowed values: TeachingCredentialBasisDescriptor (8 Ed-Fi seed values)
optional An indication of the pre-determined criteria for granting the teaching credential that a person holds. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradeLevel
GradeLevels
Reference
DescriptorProperty
Allowed values: governed GradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The grade level(s) certified for teaching. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AcademicSubject
AcademicSubjects
Reference
DescriptorProperty
Allowed values: governed AcademicSubjectsDescriptor values; no matching handbook descriptor entry found.
optional collection The academic subjects to which the credential pertains. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CredentialEndorsement
Endorsements
String
VARCHAR(255)
optional collection The endorsements that are attached to teaching certificates and indicate areas of specialization. max length 255 characters; optional collection Ed-Fi field source pass-through
CertificationTitle
CertificationTitle
String
VARCHAR(64)
optional The title of the certification obtained by the person. max length 64 characters; optional Ed-Fi field source pass-through
Certification
CertificationReference
Reference
DomainEntityProperty
optional Reference to the certification associated with the person's credential. object reference; optional Ed-Fi field source pass-through
CertificationRoute
CertificationRouteDescriptor
Reference
DescriptorProperty
Allowed values: CertificationRouteDescriptor (11 Ed-Fi seed values)
optional The process, program, or pathway used to obtain certification. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BoardCertificationIndicator
BoardCertificationIndicator
Boolean
BOOLEAN
optional Indicator that the credential was granted under the authority of a national board certification. boolean true/false; optional Ed-Fi field source pass-through
CredentialStatus
CredentialStatusDescriptor
Reference
DescriptorProperty
Allowed values: CredentialStatusDescriptor (8 Ed-Fi seed values)
optional The current status of the credential. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CredentialStatusDate
CredentialStatusDate
Date
DATE
optional The month, day, and year on which the credential status was effective. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Person
PersonReference
Reference
DomainEntityProperty
optional The person who obtained and is holding the credential. object reference; optional Ed-Fi field source pass-through
StudentAcademicRecord
StudentAcademicRecords
Reference
DomainEntityProperty
optional collection Reference to the person's student academic records for the school(s) with which the credential is associated. object reference; optional collection Ed-Fi field source pass-through
EducatorRole
EducatorRoleDescriptor
Reference
DescriptorProperty
Allowed values: EducatorRoleDescriptor (19 Ed-Fi seed values)
optional The specific roles or positions within an organization that the credential is intended to authorize, typically associated with service and administrative certifications. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (4)
  • StaffEducationOrganizationAssignmentAssociation.Credential (optional)
  • StaffEducationOrganizationEmploymentAssociation.Credential (optional)
  • CredentialEvent.Credential (required)
  • Staff.Credential (optional collection)

UDM primitive/simple type String

CredentialEndorsement #

dictionary-only type

Endorsements are attachments to teaching certificates and indicate areas of specialization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • Credential.CredentialEndorsement (optional collection)

Canonical UDM resource Class

CredentialEvent #

/ed-fi/credentialEvents

An event associated with a person's credential.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.CredentialEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CredentialEventType
CredentialEventTypeDescriptor
Reference
DescriptorProperty
Allowed values: CredentialEventTypeDescriptor (10 Ed-Fi seed values)
required
identity
ODS/API identity
The type of event associated with a person's credential. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CredentialEventDate
CredentialEventDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year of the credential event. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Credential
CredentialReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The credential associated with the credential event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CredentialEventReason
CredentialEventReason
String
VARCHAR(1024)
optional The reason for the credential event, or any other descriptive text. max length 1024 characters; optional Ed-Fi field source pass-through

UDM primitive/simple type Date

CredentialEventDate #

dictionary-only type

The month, day, and year of the credential event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CredentialEvent.CredentialEventDate (identity)

Descriptor catalog Descriptor

CredentialEventType #

/ed-fi/descriptors/credentialEventTypeDescriptors

The type of event associated with a person's credential.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.CredentialEventTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (10 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CredentialEventTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Deprecated The certification of the person is deprecated. The certification of the person is deprecated. uri://ed-fi.org/CredentialEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expired The certification of the person is expired. The certification of the person is expired. uri://ed-fi.org/CredentialEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
In-process The certification of the person is in process. The certification of the person is in process. uri://ed-fi.org/CredentialEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Issued The certification of the person is issued. The certification of the person is issued. uri://ed-fi.org/CredentialEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Planned The certification of the person is planned. The certification of the person is planned. uri://ed-fi.org/CredentialEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Renewed The certification of the person is renewed. The certification of the person is renewed. uri://ed-fi.org/CredentialEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Retired The certification of the person is retired. The certification of the person is retired. uri://ed-fi.org/CredentialEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Revoked The certification of the person is revoked. The certification of the person is revoked. uri://ed-fi.org/CredentialEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suspended The certification of the person is suspended. The certification of the person is suspended. uri://ed-fi.org/CredentialEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Voluntary Surrender Certification is surrendered voluntarily. The person surrendered the certification voluntarily. uri://ed-fi.org/CredentialEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CredentialEvent.CredentialEventType (required)

Descriptor catalog Descriptor

CredentialField #

/ed-fi/descriptors/credentialFieldDescriptors

This descriptor defines the fields of certification that the state education agency offers to teachers.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.CredentialFieldDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CredentialFieldDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Agricultural Science and Technology Agricultural Science and Technology Agricultural Science and Technology uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Art Art Art uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bilingual Bilingual Bilingual uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bilingual Generalist-Spanish Bilingual Generalist-Spanish Bilingual Generalist-Spanish uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Computer Science Computer Science Computer Science uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Elementary Education Elementary Education Elementary Education uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Generalist Generalist Generalist uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health Health Health uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Life and Physical Sciences Life and Physical Sciences Life and Physical Sciences uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master Teacher Master Teacher Master Teacher uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mathematics Mathematics Mathematics uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Music Music Music uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical Education Physical Education Physical Education uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Psychology Psychology Psychology uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Social Studies Social Studies Social Studies uri://ed-fi.org/CredentialFieldDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • Seniority.CredentialField (required)
  • Credential.CredentialField (optional)

Descriptor catalog Descriptor

CredentialStatus #

/ed-fi/descriptors/credentialStatusDescriptors

The current status of the credential.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.CredentialStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CredentialStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Active The credential status is Active. The credential of the person is currently Active uri://ed-fi.org/CredentialStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Deprecated The credential status is Deprecated. The credential of the person is currently Deprecated uri://ed-fi.org/CredentialStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expired The credential status is Expired. The credential of the person is currently Expired uri://ed-fi.org/CredentialStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Renewed The credential status is Renewed. The credential of the person is currently Renewed uri://ed-fi.org/CredentialStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Retired The credential status is Retired. The credential of the person is currently Retired uri://ed-fi.org/CredentialStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Revoked The credential status is Revoked. The credential of the person is currently Revoked uri://ed-fi.org/CredentialStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suspended The credential status is Suspended. The credential of the person is currently Suspended uri://ed-fi.org/CredentialStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Voluntary Surrender The credential status is Voluntary Surrendered. The credential of the person is currently Voluntary Surrendered uri://ed-fi.org/CredentialStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Credential.CredentialStatus (optional)

UDM primitive/simple type Date

CredentialStatusDate #

dictionary-only type

The month, day, and year on which the credential status was effective. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Credential.CredentialStatusDate (optional)

Descriptor catalog Descriptor

CredentialType #

/ed-fi/descriptors/credentialTypeDescriptors

An indication of the category of credential an individual holds.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.CredentialTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CredentialTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Certification Certification Certification uri://ed-fi.org/CredentialTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Endorsement Endorsement Endorsement uri://ed-fi.org/CredentialTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High School Diploma High School Diploma High School Diploma uri://ed-fi.org/CredentialTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High School Diploma Distinction High School Diploma Distinction High School Diploma Distinction uri://ed-fi.org/CredentialTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Licensure Licensure Licensure uri://ed-fi.org/CredentialTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CredentialTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Registration Registration Registration uri://ed-fi.org/CredentialTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Credential.CredentialType (required)

Descriptor catalog Descriptor

CreditCategory #

/ed-fi/descriptors/creditCategoryDescriptors

A categorization for the course transcript credits.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation, Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CreditCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CreditCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Advanced Placement Advanced Placement Advanced Placement uri://ed-fi.org/CreditCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career and Technical Education DEPRECATED: Career and Technical Education DEPRECATED: Career and Technical Education uri://ed-fi.org/CreditCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College Preparatory College Preparatory College Preparatory uri://ed-fi.org/CreditCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dual Credit Dual Credit Dual Credit uri://ed-fi.org/CreditCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
General General General uri://ed-fi.org/CreditCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Honors Honors Honors uri://ed-fi.org/CreditCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
International Baccalaureate International Baccalaureate International Baccalaureate uri://ed-fi.org/CreditCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Remedial Remedial Remedial uri://ed-fi.org/CreditCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • CreditsByCreditCategory.CreditCategory (required)
  • CourseTranscript.CreditCategory (optional collection)

UDM primitive/simple type Number

CreditConversion #

dictionary-only type

Conversion factor that when multiplied by the number of credits is equivalent to Carnegie units.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 9
  • decimal places: 2
Used By (1)
  • Credits.CreditConversion (optional)

UDM common/composite Composite Part

Credits #

dictionary-only type

Credits or units of value awarded for the completion of a course.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Credits
Credits
Number
DECIMAL(9, 3)
required The value of credits or units of value awarded for the completion of a course. numeric precision 9, scale 3; required Ed-Fi field source pass-through
CreditType
CreditTypeDescriptor
Reference
DescriptorProperty
Allowed values: CreditTypeDescriptor (17 Ed-Fi seed values)
optional The type of credits or units of value awarded for the completion of a course. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CreditConversion
CreditConversion
Number
DECIMAL(9, 2)
optional Conversion factor that when multiplied by the number of credits is equivalent to Carnegie units. numeric precision 9, scale 2; optional Ed-Fi field source pass-through
Used By (13)
  • CreditsByCourse.Credits (required)
  • CreditsByCreditCategory.Credits (required)
  • CreditsBySubject.Credits (required)
  • Course.MinimumAvailableCredits (optional)
  • Course.MaximumAvailableCredits (optional)
  • CourseTranscript.AttemptedCredits (optional)
  • CourseTranscript.EarnedCredits (optional)
  • GraduationPlan.TotalRequiredCredits (required)
  • Section.AvailableCredits (optional)
  • StudentAcademicRecord.CumulativeAttemptedCredits (optional)
  • StudentAcademicRecord.CumulativeEarnedCredits (optional)
  • StudentAcademicRecord.SessionAttemptedCredits (optional)
  • StudentAcademicRecord.SessionEarnedCredits (optional)

UDM common/composite Composite Part

CreditsByCourse #

dictionary-only type

The total credits required to graduation by taking a specific course, or by taking one or more from a set of courses.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CourseSetName
CourseSetName
String
VARCHAR(120)
required
identity
ODS/API identity
Identifying name given to a collection of courses. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Course
Courses
Reference
DomainEntityProperty
required collection The course reference that identifies the organization of subject matter and related learning experiences provided for the instruction of students. object reference; required collection Ed-Fi field source pass-through
Credits
Credits
Reference
InlineCommonProperty
required The value of credits or units of value awarded for the completion of a course. object reference; required Ed-Fi field source pass-through
WhenTakenGradeLevel
WhenTakenGradeLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed WhenTakenGradeLevelDescriptor values; no matching handbook descriptor entry found.
optional The grade level when the student is planned to take the course. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • GraduationPlan.CreditsByCourse (optional collection)

UDM common/composite Composite Part

CreditsByCreditCategory #

dictionary-only type

The total credits required for graduation based on the credit category.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CreditCategory
CreditCategoryDescriptor
Reference
DescriptorProperty
Allowed values: CreditCategoryDescriptor (8 Ed-Fi seed values)
required
identity
ODS/API identity
A categorization for the course transcript credits awarded in the course transcript. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Credits
Credits
Reference
InlineCommonProperty
required The value of credits or units of value awarded for the completion of a course. object reference; required Ed-Fi field source pass-through
Used By (1)
  • GraduationPlan.CreditsByCreditCategory (optional collection)

UDM common/composite Composite Part

CreditsBySubject #

dictionary-only type

The total credits required in subject to graduate. Only those courses identified as a high school course requirement are eligible to meet subject credit requirements.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AcademicSubject
AcademicSubjectDescriptor
Reference
DescriptorProperty
Allowed values: AcademicSubjectDescriptor (21 Ed-Fi seed values)
required
identity
ODS/API identity
The intended major subject area of the graduation requirement. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Credits
Credits
Reference
InlineCommonProperty
required The value of credits or units of value awarded for the completion of a course. object reference; required Ed-Fi field source pass-through
Used By (1)
  • GraduationPlan.CreditsBySubject (optional collection)

UDM primitive/simple type Number

CreditsValue #

dictionary-only type

The value of credits or units of value awarded for the completion of a course.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 9
  • decimal places: 3
  • min value: 0
Used By (3)
  • AdditionalCredits.Credits (required)
  • PartialCourseTranscriptAwards.EarnedCredits (required)
  • Credits.Credits (required)

Descriptor catalog Descriptor

CreditType #

/ed-fi/descriptors/creditTypeDescriptors

The type of credits or units of value awarded for the completion of a course.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Bell Schedule, Enrollment, Graduation, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CreditTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (17 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CreditTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adult education credit Adult education credit Adult education credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career and Technical Education credit Career and Technical Education credit Career and Technical Education credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Carnegie unit Carnegie unit Carnegie unit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Converted occupational experience credit Converted occupational experience credit Converted occupational experience credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Correspondence credit Correspondence credit Correspondence credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Credit by examination Credit by examination Credit by examination uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Intersession hour credit Intersession hour credit Intersession hour credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Long session hour credit Long session hour credit Long session hour credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mini-term hour credit Mini-term hour credit Mini-term hour credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nine month year hour credit Nine month year hour credit Nine month year hour credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quarter hour credit Quarter hour credit Quarter hour credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quinmester hour credit Quinmester hour credit Quinmester hour credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Semester hour credit Semester hour credit Semester hour credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Summer term hour credit Summer term hour credit Summer term hour credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Trimester hour credit Trimester hour credit Trimester hour credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Twelve month year hour credit Twelve month year hour credit Twelve month year hour credit uri://ed-fi.org/CreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Credits.CreditType (optional)

UDM primitive/simple type Date

CrisisEndDate #

dictionary-only type

The date on which the crisis ceased to affect the student. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CrisisEvent.CrisisEndDate (optional)

Canonical UDM resource Class

CrisisEvent #

/ed-fi/crisisEvents

A natural or man-made event that causes the disruption of school-level activities and the temporary or permanent displacement of students.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.CrisisEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CrisisEventName
CrisisEventName
String
VARCHAR(100)
required
identity
ODS/API identity
The name of the crisis event that occurred. If there is no generally accepted name for this crisis event, the suggested format: Location + Crisis type + Year. max length 100 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CrisisType
CrisisTypeDescriptor
Reference
DescriptorProperty
Allowed values: CrisisTypeDescriptor (19 Ed-Fi seed values)
required The type or category of crisis. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CrisisDescription
CrisisDescription
String
VARCHAR(1024)
optional Provides a textual description of the crisis event affecting the student. It may include details such as the nature of the crisis (e.g., natural disaster, conflict, medical emergency), its severity, location, and any other relevant information describing the crisis situation. max length 1024 characters; optional Ed-Fi field source pass-through
CrisisStartDate
CrisisStartDate
Date
DATE
optional The year, month and day on which the crisis affected the student. This date may not be the same as the date the crisis occurred if evacuation orders are implemented in anticipation of a crisis. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
CrisisEndDate
CrisisEndDate
Date
DATE
optional The date on which the crisis ceased to affect the student. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • DisplacedStudent.CrisisEvent (required)

UDM primitive/simple type String

CrisisEventName #

dictionary-only type

The name of the crisis event that occurred. If there is no generally accepted name for this crisis event, the suggested format: Location + Crisis type + Year.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 100

UDM primitive/simple type Boolean

CrisisHomelessnessIndicator #

dictionary-only type

Any student considered homeless (defined by the McKinney-Vento Homeless Education Assistance Act as lacking a fixed, regular, and adequate nighttime residence) as a result of the crisis event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DisplacedStudent.CrisisHomelessnessIndicator (optional)

UDM primitive/simple type Date

CrisisStartDate #

dictionary-only type

The year, month and day on which the crisis affected the student. This date may not be the same as the date the crisis occurred if evacuation orders are implemented in anticipation of a crisis. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CrisisEvent.CrisisStartDate (optional)

Descriptor catalog Descriptor

CrisisType #

/ed-fi/descriptors/crisisTypeDescriptors

The type or category of crisis.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.CrisisTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (19 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CrisisTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Active Shooter Active Shooter Active Shooter uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Avalanche Avalanche Avalanche uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cyberattack Cyberattack Cyberattack uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Earthquake Earthquake Earthquake uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Extreme Heat Extreme Heat Extreme Heat uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Financial Emergency Financial Emergency Financial Emergency uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Flood Flood Flood uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hurricane Hurricane Hurricane uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Landslide Landslide Landslide uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Novel Pandemic Novel Pandemic Novel Pandemic uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nuclear Explosion Nuclear Explosion Nuclear Explosion uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Power Outage Power Outage Power Outage uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Thunderstorm, Lightning, or Hail Thunderstorm, Lightning, or Hail Thunderstorm, Lightning, or Hail uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tornado Tornado Tornado uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tsunami Tsunami Tsunami uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Volcano Volcano Volcano uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wildfires Wildfires Wildfires uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Winter Storm Winter Storm Winter Storm uri://ed-fi.org/CrisisTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CrisisEvent.CrisisType (required)

UDM primitive/simple type String

Criteria #

dictionary-only type

The criteria for competency-based completion of the achievement/award.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 150
Used By (3)
  • CompetencyObjective.SuccessCriteria (optional)
  • LearningStandard.SuccessCriteria (optional)
  • Achievement.Criteria (optional)

UDM primitive/simple type Boolean

CTECompleter #

dictionary-only type

Indicated a student who reached a state-defined threshold of vocational education and who attained a high school diploma or its recognized state equivalent or GED.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Diploma.CTECompleter (optional)

UDM primitive/simple type Boolean

CTEGraduationRateInclusion #

dictionary-only type

An indication of whether CTE concentrators are included in the state's computation of its graduation rate.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StateEducationAgencyAccountability.CTEGraduationRateInclusion (optional)

UDM common/composite Composite Part

CTEProgramService #

dictionary-only type

The student's CTE program service information.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CTEProgramService
CTEProgramServiceDescriptor
Reference
DescriptorProperty
Allowed values: CTEProgramServiceDescriptor (17 Ed-Fi seed values)
required
identity
ODS/API identity
Indicates the service being provided to the student by the CTE program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryIndicator
PrimaryIndicator
Boolean
BOOLEAN
optional True if service is a primary service. boolean true/false; optional Ed-Fi field source pass-through
ServiceBeginDate
ServiceBeginDate
Date
DATE
optional First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ServiceEndDate
ServiceEndDate
Date
DATE
optional Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
CIPCode
CIPCode
String
VARCHAR(120)
optional Number and description of the CIP code associated with the student's CTE program. max length 120 characters; optional Ed-Fi field source pass-through
Used By (1)
  • StudentCTEProgramAssociation.CTEProgramService (optional collection)

Descriptor catalog Descriptor

CTEProgramService #

/ed-fi/descriptors/cTEProgramServiceDescriptors

This descriptor defines the services provided by an education organization to populations of students associated with a CTE program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.CTEProgramServiceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (17 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CTEProgramServiceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Agriculture, Food and Natural Resources Agriculture, Food and Natural Resources Agriculture, Food and Natural Resources uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Architecture and Construction Architecture and Construction Architecture and Construction uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Arts, A/V Technology and Communications Arts, A/V Technology and Communications Arts, A/V Technology and Communications uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Business, Management and Administration Business, Management and Administration Business, Management and Administration uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Education and Training Education and Training Education and Training uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Finance Finance Finance uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Government and Public Administration Government and Public Administration Government and Public Administration uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health Science Health Science Health Science uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hospitality and Tourism Hospitality and Tourism Hospitality and Tourism uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Human Services Human Services Human Services uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Information Technology Information Technology Information Technology uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Law, Public Safety, Corrections and Security Law, Public Safety, Corrections and Security Law, Public Safety, Corrections and Security uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Manufacturing Manufacturing Manufacturing uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Marketing, Sales and Service Marketing, Sales and Service Marketing, Sales and Service uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Science, Technology, Engineering and Mathematics Science, Technology, Engineering and Mathematics Science, Technology, Engineering and Mathematics uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transportation, Distribution and Logistics Transportation, Distribution and Logistics Transportation, Distribution and Logistics uri://ed-fi.org/CTEProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CTEProgramService.CTEProgramService (required)

UDM primitive/simple type Currency

Currency #

dictionary-only type

U.S. currency in dollars and cents.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (16)
  • StaffEducationOrganizationEmploymentAssociation.HourlyWage (optional)
  • StaffEducationOrganizationEmploymentAssociation.AnnualWage (optional)
  • LocalEducationAgencyFederalFunds.InnovativeDollarsSpent (optional)
  • LocalEducationAgencyFederalFunds.InnovativeDollarsSpentStrategicPriorities (optional)
  • LocalEducationAgencyFederalFunds.InnovativeProgramsFundsReceived (optional)
  • LocalEducationAgencyFederalFunds.SchoolImprovementAllocation (optional)
  • LocalEducationAgencyFederalFunds.SupplementalEducationalServicesFundsSpent (optional)
  • LocalEducationAgencyFederalFunds.SupplementalEducationalServicesPerPupilExpenditure (optional)
  • StateEducationAgencyFederalFunds.FederalProgramsFundingAllocation (optional)
  • DisciplineIncident.IncidentCost (optional)
  • EducationContent.Cost (optional)
  • LocalActual.Amount (required)
  • LocalBudget.Amount (required)
  • LocalContractedStaff.Amount (required)
  • LocalEncumbrance.Amount (required)
  • LocalPayroll.Amount (required)

UDM primitive/simple type Boolean

CurrentEmployee #

dictionary-only type

Indicator as to whether the applicant is a current employee of the school district.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Application.CurrentEmployee (optional)

UDM primitive/simple type Date

CurrentGradeAsOfDate #

dictionary-only type

As-Of date for a grade posted as the current grade.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Grade.CurrentGradeAsOfDate (optional)

UDM primitive/simple type Boolean

CurrentGradeIndicator #

dictionary-only type

An indicator that the posted grade is an interim grade for the grading period and not the final grade.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Grade.CurrentGradeIndicator (optional)

UDM common/composite Composite Part

CurrentPosition #

dictionary-only type

The current position of the prospect.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
NameOfInstitution
NameOfInstitution
String
VARCHAR(75)
required The formal name of the education organization. max length 75 characters; required Ed-Fi field source pass-through
Location
Location
String
VARCHAR(75)
required The location, typically city and state, for the institution. max length 75 characters; required Ed-Fi field source pass-through
PositionTitle
PositionTitle
String
VARCHAR(100)
required The descriptive name of an individual's position. max length 100 characters; required Ed-Fi field source pass-through
AcademicSubject
AcademicSubjectDescriptor
Reference
DescriptorProperty
Allowed values: AcademicSubjectDescriptor (21 Ed-Fi seed values)
optional The academic subject of the staff person's assignment to a school. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradeLevel
GradeLevels
Reference
DescriptorProperty
Allowed values: governed GradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The set of grade levels for which the individual's assignment is responsible. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • RecruitmentEventAttendance.CurrentPosition (optional)

Descriptor catalog Descriptor

CurriculumUsed #

/ed-fi/descriptors/curriculumUsedDescriptors

The type of curriculum used in an early learning classroom or group.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.CurriculumUsedDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for CurriculumUsedDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Creative curriculum family child care Creative curriculum family child care Creative curriculum family child care uri://ed-fi.org/CurriculumUsedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Creative curriculum infants/toddlers Creative curriculum infants/toddlers Creative curriculum infants/toddlers uri://ed-fi.org/CurriculumUsedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Creative curriculum preschool Creative curriculum preschool Creative curriculum preschool uri://ed-fi.org/CurriculumUsedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Highscope infants/toddlers Highscope infants/toddlers Highscope infants/toddlers uri://ed-fi.org/CurriculumUsedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Highscope preschoolers Highscope preschoolers Highscope preschoolers uri://ed-fi.org/CurriculumUsedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Locally designed curriculum Locally designed curriculum Locally designed curriculum uri://ed-fi.org/CurriculumUsedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Montessori curriculum Montessori curriculum Montessori curriculum uri://ed-fi.org/CurriculumUsedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
None None None uri://ed-fi.org/CurriculumUsedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other curriculum Other curriculum Other curriculum uri://ed-fi.org/CurriculumUsedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CourseOffering.CurriculumUsed (optional collection)

UDM primitive/simple type String

CustomizationKey #

dictionary-only type

An agreed upon identifier for the custom information.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60

UDM primitive/simple type String

CustomizationValue #

dictionary-only type

Custom value for the indicated CustomizationKey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 1024

UDM primitive/simple type Date

Date #

dictionary-only type

The dates for which the bell schedule applies.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • BellSchedule.Date (optional collection)

UDM primitive/simple type Date

Date #

dictionary-only type

The month, day, and year of the calendar event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CalendarDate.Date (identity)

UDM primitive/simple type Date

DateAssigned #

dictionary-only type

The date the assignment, homework, or assessment was assigned or executed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • GradebookEntry.DateAssigned (required)

UDM primitive/simple type Date

DateCompleted #

dictionary-only type

The date that the assignment was completed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentGradebookEntry.DateCompleted (optional)

UDM primitive/simple type Date

DateCourseAdopted #

dictionary-only type

Date the course was adopted by the education agency.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Course.DateCourseAdopted (optional)

UDM primitive/simple type Date

DateEnteredUS #

dictionary-only type

For students born outside of the U.S., the date the student entered the U.S.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • BirthData.DateEnteredUS (optional)

UDM primitive/simple type Date

DateFulfilled #

dictionary-only type

The date an assignment was turned in or the date of an assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentGradebookEntry.DateFulfilled (optional)

UDM primitive/simple type Date

DatePosted #

dictionary-only type

Date the open staff position was posted. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • OpenStaffPosition.DatePosted (required)

UDM primitive/simple type Date

DatePostingRemoved #

dictionary-only type

The date the posting was removed or filled. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • OpenStaffPosition.DatePostingRemoved (optional)

Descriptor catalog Descriptor

Degree #

/ed-fi/descriptors/degreeDescriptors

The minimum level of degree, if any, required for a certification.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.DegreeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DegreeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Associate's degree Certification requires an Associate's degree. The certification requires at minimum an Associate's degree. uri://ed-fi.org/DegreeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bachelor's degree Certification requires a Bachelor's degree. The certification requires at minimum a Bachelor's degree. uri://ed-fi.org/DegreeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Doctorate degree Certification requires a Doctorate degree. The certification requires at minimum a Doctorate degree. uri://ed-fi.org/DegreeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High school diploma Certification requires a High school diploma. The certification requires at minimum a High school diploma. uri://ed-fi.org/DegreeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master's degree Certification requires a Master's degree. The certification requires at minimum a Master's degree. uri://ed-fi.org/DegreeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No degree required Certification doesn't have a degree requirement. The certification doesn't have a degree requirement. uri://ed-fi.org/DegreeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Certification.MinimumDegree (optional)

UDM common/composite Composite Part

DegreeSpecialization #

dictionary-only type

Information around the area(s) of specialization for an individual.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
MajorSpecialization
MajorSpecialization
String
VARCHAR(255)
required
identity
ODS/API identity
The major area for a degree or area of specialization for a certificate. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MinorSpecialization
MinorSpecialization
String
VARCHAR(255)
optional The minor area for a degree or area of specialization for a certificate. max length 255 characters; optional Ed-Fi field source pass-through
SpecializationBeginDate
SpecializationBeginDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year on which the teacher candidate first declared specialization. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year on which the teacher candidate exited the declared specialization. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • CandidateEducatorPreparationProgramAssociation.DegreeSpecialization (optional collection)

Descriptor catalog Descriptor

DeliveryMethod #

/ed-fi/descriptors/deliveryMethodDescriptors

The way in which an intervention was implemented: individual, small group, whole class, or whole school.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention, Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.DeliveryMethodDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DeliveryMethodDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Individual Individual Individual uri://ed-fi.org/DeliveryMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Small Group Small Group Small Group uri://ed-fi.org/DeliveryMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Whole Class Whole Class Whole Class uri://ed-fi.org/DeliveryMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Whole School Whole School Whole School uri://ed-fi.org/DeliveryMethodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • Intervention.DeliveryMethod (required)
  • InterventionPrescription.DeliveryMethod (required)
  • InterventionStudy.DeliveryMethod (required)

UDM primitive/simple type String

Department #

dictionary-only type

The department or suborganization the employee/contractor is associated with in the Education Organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • StaffEducationOrganizationEmploymentAssociation.Department (optional)

UDM primitive/simple type Time

DepartureTime #

dictionary-only type

The time of day the student departed for the attendance event in ISO 8601 format.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolAttendanceEvent.DepartureTime (optional)

UDM primitive/simple type Time

DepartureTime #

dictionary-only type

The time of day the student departed for the attendance event in ISO 8601 format.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSectionAttendanceEvent.DepartureTime (optional)

UDM primitive/simple type String

Description #

dictionary-only type

A detailed description of the entity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 1024
Used By (22)
  • FeederSchoolAssociation.FeederRelationshipDescription (optional)
  • StudentDisciplineIncidentBehaviorAssociation.BehaviorDetailedDescription (optional)
  • Behavior.BehaviorDetailedDescription (optional)
  • EducatorResearch.ResearchExperienceDescription (optional)
  • PathMilestoneStatusEvent.Description (optional)
  • StudentAssessmentItem.DescriptiveFeedback (optional)
  • CompetencyObjective.Description (optional)
  • Course.CourseDescription (optional)
  • CredentialEvent.CredentialEventReason (optional)
  • CrisisEvent.CrisisDescription (optional)
  • DisciplineIncident.IncidentDescription (optional)
  • EvaluationRubricDimension.EvaluationCriterionDescription (required)
  • FinancialAid.AidConditionDescription (optional)
  • Goal.GoalDescription (optional)
  • GradebookEntry.Description (optional)
  • LearningStandard.Description (required)
  • ObjectiveAssessment.Description (optional)
  • PathMilestone.PathMilestoneDescription (optional)
  • PathPhase.PhasePathDescription (optional)
  • RubricDimension.CriterionDescription (required)
  • StudentAssessment.EventDescription (optional)
  • LearningResource.Description (optional)

Canonical UDM resource Class

DescriptorMapping #

/ed-fi/descriptorMappings

A mapping of a descriptor value in one namespace to a descriptor value in another namespace. This can be used to exchange known contextual mappings of enumeration values.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.DescriptorMapping edfi.DescriptorMappingModelEntity
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Value
Value
String
VARCHAR(50)
required
identity
ODS/API identity
The descriptor value that is being mapped to another value. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required
identity
ODS/API identity
The namespace of the descriptor value that is being mapped to another value. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MappedValue
MappedValue
String
VARCHAR(50)
required
identity
ODS/API identity
The descriptor value to which the from descriptor value is being mapped to. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MappedNamespace
MappedNamespace
String
VARCHAR(255)
required
identity
ODS/API identity
The namespace of the descriptor value to which the from descriptor value is mapped to. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ModelEntity
ModelEntities
Reference
DescriptorProperty
Allowed values: governed ModelEntitiesDescriptor values; no matching handbook descriptor entry found.
optional collection The resources for which the descriptor mapping applies. If empty, the mapping is assumed to be applicable to all resources in which the descriptor appears. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through

UDM primitive/simple type String

DesignatedBy #

dictionary-only type

The person, organization, or department that made a student designation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (7)
  • ApplicantCharacteristic.DesignatedBy (optional)
  • CandidateCharacteristic.DesignatedBy (optional)
  • CandidateIndicator.DesignatedBy (optional)
  • EducationOrganizationIndicator.DesignatedBy (optional)
  • ProgramParticipationStatus.DesignatedBy (optional)
  • StudentCharacteristic.DesignatedBy (optional)
  • StudentIndicator.DesignatedBy (optional)

Descriptor catalog Descriptor

Diagnosis #

/ed-fi/descriptors/diagnosisDescriptors

This descriptor defines diagnoses that interventions are intended to target.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention, Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.DiagnosisDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DiagnosisDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Dropout Risk DEPRECATED: Dropout Risk DEPRECATED: Dropout Risk uri://ed-fi.org/DiagnosisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Low Attendance DEPRECATED: Low Attendance DEPRECATED: Low Attendance uri://ed-fi.org/DiagnosisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • InterventionEffectiveness.Diagnosis (required)
  • Intervention.Diagnosis (optional collection)
  • InterventionPrescription.Diagnosis (optional collection)

UDM primitive/simple type String

DiagnosticStatement #

dictionary-only type

A statement provided by the teacher that provides information in addition to the grade or assessment score.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 1024
Used By (5)
  • StudentInterventionAssociation.DiagnosticStatement (optional)
  • LearningStandardGrade.DiagnosticStatement (optional)
  • Grade.DiagnosticStatement (optional)
  • StudentCompetencyObjective.DiagnosticStatement (optional)
  • StudentGradebookEntry.DiagnosticStatement (optional)

UDM primitive/simple type Number

DimensionOrder #

dictionary-only type

The order for the rubric dimension.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM common/composite Composite Part

Diploma #

dictionary-only type

This educational entity represents the conferring or certification by an educational organization that the student has successfully completed a particular course of study. It represents the electronic version of its physical document counterpart.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Achievement
Achievement
Reference
InlineCommonProperty
required An entity that includes information about achievement earned by a student upon fulfilling a specified criteria. object reference; required Ed-Fi field source pass-through
DiplomaAwardDate
DiplomaAwardDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year on which the student met graduation requirements and was awarded a diploma. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DiplomaLevel
DiplomaLevelDescriptor
Reference
DescriptorProperty
Allowed values: DiplomaLevelDescriptor (7 Ed-Fi seed values)
optional The level of diploma/credential that is awarded to a student in recognition of completion of the curricular requirements. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DiplomaType
DiplomaTypeDescriptor
Reference
DescriptorProperty
Allowed values: DiplomaTypeDescriptor (18 Ed-Fi seed values)
required
identity
ODS/API identity
The type of diploma/credential that is awarded to a student in recognition of his/her completion of the curricular requirements. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CTECompleter
CTECompleter
Boolean
BOOLEAN
optional Indicated a student who reached a state-defined threshold of vocational education and who attained a high school diploma or its recognized state equivalent or GED. boolean true/false; optional Ed-Fi field source pass-through
DiplomaDescription
DiplomaDescription
String
VARCHAR(80)
optional The description of the diploma given to the student for accomplishments. max length 80 characters; optional Ed-Fi field source pass-through
DiplomaAwardExpiresDate
DiplomaAwardExpiresDate
Date
DATE
optional Date on which the diploma expires. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentAcademicRecord.Diploma (optional collection)

UDM primitive/simple type Date

DiplomaAwardDate #

dictionary-only type

The month, day, and year on which the student met graduation requirements and was awarded a diploma. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Diploma.DiplomaAwardDate (identity)

UDM primitive/simple type Date

DiplomaAwardExpiresDate #

dictionary-only type

Date on which the diploma expires. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Diploma.DiplomaAwardExpiresDate (optional)

UDM primitive/simple type String

DiplomaDescription #

dictionary-only type

The description of diploma given to the student for accomplishments.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 80
Used By (1)
  • Diploma.DiplomaDescription (optional)

Descriptor catalog Descriptor

DiplomaLevel #

/ed-fi/descriptors/diplomaLevelDescriptors

The level of diploma/credential that is awarded to a student in recognition of his/her completion of the curricular requirements.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Graduation, Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.DiplomaLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DiplomaLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Cum laude Cum laude Cum laude uri://ed-fi.org/DiplomaLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Distinguished Distinguished Distinguished uri://ed-fi.org/DiplomaLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Magna cum laude Magna cum laude Magna cum laude uri://ed-fi.org/DiplomaLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minimum Minimum Minimum uri://ed-fi.org/DiplomaLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Open Enrollment Open Enrollment Open Enrollment uri://ed-fi.org/DiplomaLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Recommended Recommended Recommended uri://ed-fi.org/DiplomaLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Summa cum laude Summa cum laude Summa cum laude uri://ed-fi.org/DiplomaLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Diploma.DiplomaLevel (optional)

Descriptor catalog Descriptor

DiplomaType #

/ed-fi/descriptors/diplomaTypeDescriptors

The type of diploma/credential that is awarded to a student in recognition of his/her completion of the curricular requirements.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Graduation, Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.DiplomaTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (18 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DiplomaTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Alternative credential Alternative credential Alternative credential uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Apprenticeship Certificate Apprenticeship Certificate Apprenticeship Certificate uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career and Technical Education certificate Career and Technical Education certificate Career and Technical Education certificate uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Certificate of attendance Certificate of attendance Certificate of attendance uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Certificate of completion Certificate of completion Certificate of completion uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Endorsed/advanced diploma Endorsed/advanced diploma Endorsed/advanced diploma uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
General Educational Development (GED) credential General Educational Development (GED) credential General Educational Development (GED) credential uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High school equivalency credential, other than GED High school equivalency credential, other than GED High school equivalency credential, other than GED uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Industry-recognized Certification Industry-recognized Certification Industry-recognized Certification uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
International Baccalaureate International Baccalaureate International Baccalaureate uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Modified diploma Modified diploma Modified diploma uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Occupational License Occupational License Occupational License uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other diploma Other diploma Other diploma uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Post graduate certificate (grade 13) Post graduate certificate (grade 13) Post graduate certificate (grade 13) uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regents diploma Regents diploma Regents diploma uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regular diploma Regular diploma Regular diploma uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State Defined Alternate Diploma State Defined Alternate Diploma State Defined Alternate Diploma uri://ed-fi.org/DiplomaTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Diploma.DiplomaType (required)

UDM primitive/simple type Boolean

DirectCertification #

dictionary-only type

Indicates that the student's National School Lunch Program (NSLP) eligibility has been determined through direct certification.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolFoodServiceProgramAssociation.DirectCertification (optional)

UDM common/composite Composite Part

Disability #

dictionary-only type

This type represents an impairment of body structure or function, a limitation in activities, or a restriction in participation, as ordered by severity of impairment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Disability
DisabilityDescriptor
Reference
DescriptorProperty
Allowed values: DisabilityDescriptor (20 Ed-Fi seed values)
required
identity
ODS/API identity
A disability category that describes a individual's impairment. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DisabilityDiagnosis
DisabilityDiagnosis
String
VARCHAR(80)
optional A description of the disability diagnosis. max length 80 characters; optional Ed-Fi field source pass-through
OrderOfDisability
OrderOfDisability
Number
INT
optional The order by severity of individual's disabilities: 1- Primary, 2 - Secondary, 3 - Tertiary, etc. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
DisabilityDeterminationSourceType
DisabilityDeterminationSourceTypeDescriptor
Reference
DescriptorProperty
Allowed values: DisabilityDeterminationSourceTypeDescriptor (9 Ed-Fi seed values)
optional The source that provided the disability determination. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DisabilityDesignation
Designations
Reference
DescriptorProperty
Allowed values: governed DesignationsDescriptor values; no matching handbook descriptor entry found.
optional collection Whether the disability is IDEA, Section 504, or other disability designation. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (6)
  • StudentSpecialEducationProgramAssociation.Disability (optional collection)
  • ApplicantProfile.Disability (optional collection)
  • Candidate.Disability (optional collection)
  • RecruitmentEventAttendance.Disability (optional collection)
  • StudentDemographic.Disability (optional collection)
  • StudentIEP.Disability (optional collection)

Descriptor catalog Descriptor

Disability #

/ed-fi/descriptors/disabilityDescriptors

This descriptor defines a student's impairment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment Registration, Educator Preparation Program, Enrollment, Recruiting and Staffing, Special Education, Special Education Data Model, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.DisabilityDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (20 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DisabilityDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Autism Spectrum Disorders Autism Spectrum Disorders Autism Spectrum Disorders uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Deaf-Blindness Deaf-Blindness Deaf-Blindness uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hearing Impairment, including Deafness Hearing Impairment, including Deafness Hearing Impairment, including Deafness uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Infant/Toddler with a Disability Infant/Toddler with a Disability Infant/Toddler with a Disability uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Intellectual Disability Intellectual Disability Intellectual Disability uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medical condition Medical condition Medical condition uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mental impairment Mental impairment Mental impairment uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Motor impairment Motor impairment Motor impairment uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Multiple Disabilities Multiple Disabilities Multiple disabilities uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Orthopedic Impairment Orthopedic Impairment Orthopedic Impairment uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Health Impairment Other Health Impairment Other Health Impairment uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical Disability Physical Disability Physical Disability uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Preschooler with a Disability Preschooler with a Disability Preschooler with a Disability uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sensory impairment Sensory impairment Sensory impairment uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Serious Emotional Disability Serious Emotional Disability Serious Emotional Disability uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Specific Learning Disability Specific Learning Disability Specific Learning Disability uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech or Language Impairment Speech or Language Impairment Speech or Language Impairment uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Traumatic Brain Injury Traumatic Brain Injury Traumatic Brain Injury uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Visual Impairment, including Blindness Visual Impairment, including Blindness Visual Impairment, including Blindness uri://ed-fi.org/DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Disability.Disability (required)

Descriptor catalog Descriptor

DisabilityDesignation #

/ed-fi/descriptors/disabilityDesignationDescriptors

The type of disability designation (e.g., IDEA, Section 504).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment Registration, Educator Preparation Program, Enrollment, Recruiting and Staffing, Special Education, Special Education Data Model, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.DisabilityDesignationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DisabilityDesignationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Individuals with Disabilities Education Act Individuals with Disabilities Education Act Individuals with Disabilities Education Act uri://ed-fi.org/DisabilityDesignationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/DisabilityDesignationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Section 504 Section 504 Section 504 uri://ed-fi.org/DisabilityDesignationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Disability.DisabilityDesignation (optional collection)

Descriptor catalog Descriptor

DisabilityDeterminationSourceType #

/ed-fi/descriptors/disabilityDeterminationSourceTypeDescriptors

The source that provided the disability determination.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment Registration, Educator Preparation Program, Enrollment, Recruiting and Staffing, Special Education, Special Education Data Model, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.DisabilityDeterminationSourceTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DisabilityDeterminationSourceTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
By health care provider By health care provider By health care provider uri://ed-fi.org/DisabilityDeterminationSourceTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
By licensed physical therapist By licensed physical therapist By licensed physical therapist uri://ed-fi.org/DisabilityDeterminationSourceTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
By physician By physician By physician uri://ed-fi.org/DisabilityDeterminationSourceTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
By school psychologist or other psychologist By school psychologist or other psychologist By school psychologist or other psychologist uri://ed-fi.org/DisabilityDeterminationSourceTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
By social service or other type of agency By social service or other type of agency By social service or other type of agency uri://ed-fi.org/DisabilityDeterminationSourceTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not applicable to the student Not applicable to the student Not applicable to the student uri://ed-fi.org/DisabilityDeterminationSourceTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/DisabilityDeterminationSourceTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Self-reported Self-reported Self-reported uri://ed-fi.org/DisabilityDeterminationSourceTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown or Unreported Unknown or Unreported Unknown or Unreported uri://ed-fi.org/DisabilityDeterminationSourceTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Disability.DisabilityDeterminationSourceType (optional)

UDM primitive/simple type String

DisabilityDiagnosis #

dictionary-only type

A description of the disability diagnosis.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 80
Used By (1)
  • Disability.DisabilityDiagnosis (optional)

Descriptor catalog Descriptor

Discipline #

/ed-fi/descriptors/disciplineDescriptors

This descriptor defines the type of action or removal from the classroom used to discipline the student involved as a perpetrator in a discipline incident.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.DisciplineDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (10 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DisciplineDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Community Service Community Service Community Service uri://ed-fi.org/DisciplineDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expulsion Expulsion Expulsion uri://ed-fi.org/DisciplineDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expulsion under Guns Free School Act Expulsion under Guns Free School Act Expulsion under Guns Free School Act uri://ed-fi.org/DisciplineDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expulsion under Guns Free School Act with Services Expulsion under Guns Free School Act with Services Expulsion under Guns Free School Act with Services uri://ed-fi.org/DisciplineDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expulsion with Services Expulsion with Services Expulsion with Services uri://ed-fi.org/DisciplineDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
In School Suspension In School Suspension In School Suspension uri://ed-fi.org/DisciplineDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No action for incident No action for incident No action for incident uri://ed-fi.org/DisciplineDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/DisciplineDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Out of School Suspension Out of School Suspension Out of School Suspension uri://ed-fi.org/DisciplineDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Removal from Classroom Removal from Classroom Removal from Classroom uri://ed-fi.org/DisciplineDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • DisciplineAction.Discipline (required collection)

Canonical UDM resource Class

DisciplineAction #

/ed-fi/disciplineActions

This event entity represents actions taken by an education organization after a disruptive event that is recorded as a discipline incident.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.DisciplineAction edfi.DisciplineActionDiscipline edfi.DisciplineActionStaff edfi.DisciplineActionStudentDisciplineIncidentBehaviorAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (13)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
DisciplineActionIdentifier
DisciplineActionIdentifier
String
VARCHAR(36)
required
identity
ODS/API identity
Identifier assigned by the education organization to the discipline action. max length 36 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Discipline
Disciplines
Reference
DescriptorProperty
Allowed values: governed DisciplinesDescriptor values; no matching handbook descriptor entry found.
required collection Type of action, such as removal from the classroom, used to discipline the student involved as a perpetrator in a discipline incident. object reference; required collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DisciplineDate
DisciplineDate
Date
DATE
required
identity
ODS/API identity
The date of the discipline action. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DisciplineActionLength
DisciplineActionLength
Number
DECIMAL(5, 2)
optional The length of time in school days for the discipline action (e.g. removal, detention), if applicable. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
ActualDisciplineActionLength
ActualDisciplineActionLength
Number
DECIMAL(5, 2)
optional Indicates the actual length in school days of a student's disciplinary assignment. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
DisciplineActionLengthDifferenceReason
DisciplineActionLengthDifferenceReasonDescriptor
Reference
DescriptorProperty
Allowed values: DisciplineActionLengthDifferenceReasonDescriptor (12 Ed-Fi seed values)
optional Indicates the reason for the difference, if any, between the official and actual lengths of a student's disciplinary assignment. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
RelatedToZeroTolerancePolicy
RelatedToZeroTolerancePolicy
Boolean
BOOLEAN
optional An indication of whether or not this disciplinary action taken against a student was imposed as a consequence of state or local zero tolerance policies. boolean true/false; optional Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student disciplined by the discipline action. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Staff
Staffs
Reference
DomainEntityProperty
optional collection The staff responsible for enforcing the discipline action. object reference; optional collection Ed-Fi field source pass-through
ResponsibilitySchool
ResponsibilitySchoolReference
Reference
DomainEntityProperty
required School responsible for student's discipline. object reference; required Ed-Fi field source pass-through
AssignmentSchool
AssignmentSchoolReference
Reference
DomainEntityProperty
optional School where student is transferred for discipline. object reference; optional Ed-Fi field source pass-through
IEPPlacementMeetingIndicator
IEPPlacementMeetingIndicator
Boolean
BOOLEAN
optional An indication as to whether an offense and/or disciplinary action resulted in a meeting of a student's Individualized Education Program (IEP) team to determine appropriate placement. boolean true/false; optional Ed-Fi field source pass-through
StudentDisciplineIncidentBehaviorAssociation
StudentDisciplineIncidentBehaviorAssociations
Reference
AssociationProperty
required collection A reference to the behavior(s) by the student that led or contributed to this specific action. object reference; required collection Ed-Fi field source pass-through

UDM primitive/simple type String

DisciplineActionIdentifier #

dictionary-only type

Identifier assigned by the education organization to the discipline action.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 36
Used By (1)
  • DisciplineAction.DisciplineActionIdentifier (required)

UDM primitive/simple type Number

DisciplineActionLength #

dictionary-only type

The length, in school days, of the disciplinary action.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 5
  • decimal places: 2
  • min value: 0
Used By (2)
  • DisciplineAction.DisciplineActionLength (optional)
  • DisciplineAction.ActualDisciplineActionLength (optional)

Descriptor catalog Descriptor

DisciplineActionLengthDifferenceReason #

/ed-fi/descriptors/disciplineActionLengthDifferenceReasonDescriptors

Indicates the reason for the difference, if any, between the official and actual lengths of a student's disciplinary assignment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.DisciplineActionLengthDifferenceReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (12 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DisciplineActionLengthDifferenceReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Completed Term Requirements Sooner Than Expected Student Completed Term Requirements Sooner Than Expected Student Completed Term Requirements Sooner Than Expected uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Continuation Of Prior Year's Disciplinary Action Continuation Of Previous Year's Disciplinary Action Assignment Continuation Of Previous Year's Disciplinary Action Assignment uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No Difference No Difference No Difference uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Year Ended School Year Ended School Year Ended uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Incarcerated Student Incarcerated Student Incarcerated uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Withdrew From School Student Withdrew From School Student Withdrew From School uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Term Decreased Due To Health-Related Circumstances Term Decreased Due To Extenuating Health-Related Circumstances Term Decreased Due To Extenuating Health-Related Circumstances uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Term Modified By Court Order Term Modified By Court Order Term Modified By Court Order uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Term Modified By District Term Modified By District Term Modified By District uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Term Modified By Mutual Agreement Term Modified By Mutual Agreement Term Modified By Mutual Agreement uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Term Modified By Placement Program Due To Behavior Term Modified By Placement Program Due To Student Behavior Term Modified By Placement Program Due To Student Behavior While In The Placement uri://ed-fi.org/DisciplineActionLengthDifferenceReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • DisciplineAction.DisciplineActionLengthDifferenceReason (optional)

UDM primitive/simple type Date

DisciplineDate #

dictionary-only type

The date of the discipline action.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DisciplineAction.DisciplineDate (identity)

Canonical UDM resource Class

DisciplineIncident #

/ed-fi/disciplineIncidents

This event entity represents an occurrence of an infraction ranging from a minor behavioral problem that disrupts the orderly functioning of a school or classroom (such as tardiness) to a criminal act that results in the involvement of a law enforcement official (such as robbery). A single event (e.g., a fight) is one incident regardless of how many perpetrators or victims are involved. Discipline incidents are events classified as warranting discipline action.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.DisciplineIncident edfi.DisciplineIncidentBehavior edfi.DisciplineIncidentExternalParticipant edfi.DisciplineIncidentWeapon
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (14)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
IncidentIdentifier
IncidentIdentifier
String
VARCHAR(36)
required
identity
ODS/API identity
A locally assigned unique identifier (within the school or school district) to identify each specific DisciplineIncident or occurrence. The same identifier should be used to document the entire discipline incident even if it included multiple offenses and multiple offenders. max length 36 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IncidentDate
IncidentDate
Date
DATE
required The month, day, and year on which the discipline incident occurred. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
IncidentTime
IncidentTime
Time
TIME
optional An indication of the time of day the incident took place. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
IncidentLocation
IncidentLocationDescriptor
Reference
DescriptorProperty
Allowed values: IncidentLocationDescriptor (25 Ed-Fi seed values)
optional Identifies where the discipline incident occurred and whether or not it occurred on school. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
IncidentDescription
IncidentDescription
String
VARCHAR(1024)
optional The description for an incident. max length 1024 characters; optional Ed-Fi field source pass-through
ReporterDescription
ReporterDescriptionDescriptor
Reference
DescriptorProperty
Allowed values: ReporterDescriptionDescriptor (6 Ed-Fi seed values)
optional Information on the type of individual who reported the discipline incident. When known and/or if useful, use a more specific option code (e.g., "Counselor" rather than "Professional Staff"). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ReporterName
ReporterName
String
VARCHAR(75)
optional Identifies the reporter of the discipline incident by name. max length 75 characters; optional Ed-Fi field source pass-through
Behavior
Behaviors
Reference
CommonProperty
optional collection Describes behavior by category and provides a detailed description. object reference; optional collection Ed-Fi field source pass-through
Weapon
Weapons
Reference
DescriptorProperty
Allowed values: governed WeaponsDescriptor values; no matching handbook descriptor entry found.
optional collection Identifies the type of weapon used during an incident. The Federal Gun-Free Schools Act requires states to report the number of students expelled for bringing firearms to school by type of firearm. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ReportedToLawEnforcement
ReportedToLawEnforcement
Boolean
BOOLEAN
optional Indicator of whether the incident was reported to law enforcement. boolean true/false; optional Ed-Fi field source pass-through
CaseNumber
CaseNumber
String
VARCHAR(20)
optional The case number assigned to the DisciplineIncident by law enforcement or other organization. max length 20 characters; optional Ed-Fi field source pass-through
IncidentCost
IncidentCost
Number
MONEY
optional The value of any quantifiable monetary loss directly resulting from the discipline incident. Examples include the value of repairs necessitated by vandalism of a school facility, or the value of personnel resources used for repairs or consumed by the incident. optional Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the discipline incident to the school where the incident occurred. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DisciplineIncidentExternalParticipant
ExternalParticipants
Reference
CommonProperty
optional collection Information on an individual involved in the discipline incident. object reference; optional collection Ed-Fi field source pass-through
Used By (4)
  • StaffDisciplineIncidentAssociation.DisciplineIncident (required)
  • StudentDisciplineIncidentBehaviorAssociation.DisciplineIncident (required)
  • StudentDisciplineIncidentNonOffenderAssociation.DisciplineIncident (required)
  • RestraintEvent.DisciplineIncident (optional)

UDM common/composite Composite Part

DisciplineIncidentExternalParticipant #

dictionary-only type

Information on an individual involved in the discipline incident.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
FirstName
FirstName
String
VARCHAR(75)
required
identity
ODS/API identity
A name given to an individual at birth, baptism, or during another naming ceremony, or through legal change. max length 75 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LastSurname
LastSurname
String
VARCHAR(75)
required
identity
ODS/API identity
The name borne in common by members of a family. max length 75 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DisciplineIncidentParticipationCode
DisciplineIncidentParticipationCodeDescriptor
Reference
DescriptorProperty
Allowed values: DisciplineIncidentParticipationCodeDescriptor (4 Ed-Fi seed values)
required
identity
ODS/API identity
The role or type of participation of an individual in the discipline incident. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • DisciplineIncident.DisciplineIncidentExternalParticipant (optional collection)

Descriptor catalog Descriptor

DisciplineIncidentParticipationCode #

/ed-fi/descriptors/disciplineIncidentParticipationCodeDescriptors

The role or type of participation of a person in a discipline incident; for example: Victim, Perpetrator, Witness, Reporter.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.DisciplineIncidentParticipationCodeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DisciplineIncidentParticipationCodeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Perpetrator Perpetrator Perpetrator uri://ed-fi.org/DisciplineIncidentParticipationCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reporter Reporter Reporter uri://ed-fi.org/DisciplineIncidentParticipationCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Victim Victim Victim uri://ed-fi.org/DisciplineIncidentParticipationCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Witness Witness Witness uri://ed-fi.org/DisciplineIncidentParticipationCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (4)
  • StaffDisciplineIncidentAssociation.DisciplineIncidentParticipationCode (required collection)
  • StudentDisciplineIncidentBehaviorAssociation.DisciplineIncidentParticipationCode (optional collection)
  • StudentDisciplineIncidentNonOffenderAssociation.DisciplineIncidentParticipationCode (optional collection)
  • DisciplineIncidentExternalParticipant.DisciplineIncidentParticipationCode (required)

UDM common/composite Composite Part

DisplacedStudent #

dictionary-only type

Information about student who was enrolled, or eligible for enrollment, but has temporarily or permanently enrolled in another school or district because of a crisis-related disruption in educational services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CrisisEvent
CrisisEventReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the crisis event related to the displaced student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DisplacedStudentStatus
DisplacedStudentStatusDescriptor
Reference
DescriptorProperty
Allowed values: DisplacedStudentStatusDescriptor (4 Ed-Fi seed values)
required Indicates whether a student has been displaced as a result of a crisis event. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DisplacedStudentStartDate
DisplacedStudentStartDate
Date
DATE
optional The date on which a student is officially identified as displaced due to a crisis event. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
DisplacedStudentEndDate
DisplacedStudentEndDate
Date
DATE
optional The date marking the end of the period during which a student is considered displaced due to a crisis event. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
CrisisHomelessnessIndicator
CrisisHomelessnessIndicator
Boolean
BOOLEAN
optional Any student considered homeless (defined by the McKinney-Vento Homeless Education Assistance Act as lacking a fixed, regular, and adequate nighttime residence) as a result of the crisis event. boolean true/false; optional Ed-Fi field source pass-through
Used By (1)
  • StudentEducationOrganizationAssociation.DisplacedStudent (optional collection)

UDM primitive/simple type Date

DisplacedStudentEndDate #

dictionary-only type

The date marking the end of the period during which a student is considered displaced due to a crisis event. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DisplacedStudent.DisplacedStudentEndDate (optional)

UDM primitive/simple type Date

DisplacedStudentStartDate #

dictionary-only type

The date on which a student is officially identified as displaced due to a crisis event. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DisplacedStudent.DisplacedStudentStartDate (optional)

Descriptor catalog Descriptor

DisplacedStudentStatus #

/ed-fi/descriptors/displacedStudentStatusDescriptors

Indicates whether a student has been displaced as a result of a crisis event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.DisplacedStudentStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DisplacedStudentStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Displaced Displaced Displaced uri://ed-fi.org/DisplacedStudentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Displaced Not Displaced Not Displaced uri://ed-fi.org/DisplacedStudentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pending Displacement Pending Displacement Pending Displacement uri://ed-fi.org/DisplacedStudentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown Unknown uri://ed-fi.org/DisplacedStudentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • DisplacedStudent.DisplacedStudentStatus (required)

UDM primitive/simple type String

DisplacementStatus #

dictionary-only type

Indicates a state health or weather related event that displaces a group of students, and may require additional funding, educational, or social services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 30
Used By (1)
  • Candidate.DisplacementStatus (optional)

UDM primitive/simple type Date

DocumentExpirationDate #

dictionary-only type

The day when the document expires, if null then never expires.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • IdentificationDocument.DocumentExpirationDate (optional)

UDM primitive/simple type String

DocumentTitle #

dictionary-only type

The title of the document given by the issuer.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • IdentificationDocument.DocumentTitle (optional)

UDM primitive/simple type Boolean

DoNotPublishIndicator #

dictionary-only type

An indication that the address should not be published.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Address.DoNotPublishIndicator (optional)

UDM primitive/simple type Boolean

DoNotPublishIndicator #

dictionary-only type

An indication that the electronic email address should not be published.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ElectronicMail.DoNotPublishIndicator (optional)

UDM primitive/simple type Boolean

DoNotPublishIndicator #

dictionary-only type

An indication that the telephone number should not be published.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Telephone.DoNotPublishIndicator (optional)

UDM primitive/simple type Number

Dosage #

dictionary-only type

The duration of time in minutes for an intervention or intervention prescription.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (6)
  • StudentInterventionAssociation.Dosage (optional)
  • StudentLanguageInstructionProgramAssociation.Dosage (optional)
  • Intervention.MinDosage (optional)
  • Intervention.MaxDosage (optional)
  • InterventionPrescription.MinDosage (optional)
  • InterventionPrescription.MaxDosage (optional)

UDM common/composite Composite Part

DualCredit #

dictionary-only type

This common stores details about the dual credit type and information about the organization that delivers the educational service and award.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
DualCreditIndicator
DualCreditIndicator
Boolean
BOOLEAN
optional Indicates whether the student assigned to the section is to receive dual credit upon successful completion. boolean true/false; optional Ed-Fi field source pass-through
DualCreditType
DualCreditTypeDescriptor
Reference
DescriptorProperty
Allowed values: DualCreditTypeDescriptor (3 Ed-Fi seed values)
optional For a student taking a dual credit course in a college or high school setting, indicates the type of dual credit program. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DualHighSchoolCreditIndicator
DualHighSchoolCreditIndicator
Boolean
BOOLEAN
optional Indicates whether successful completion of the course will result in credits toward high school graduation. boolean true/false; optional Ed-Fi field source pass-through
DualCreditEducationOrganization
DualCreditEducationOrganizationReference
Reference
DomainEntityProperty
optional The education organization reference that is awarding the postsecondary credit as part of the dual credit program. Use of this attribute requires that education organization, typically a postsecondary institution, is a defined education organization. object reference; optional Ed-Fi field source pass-through
DualCreditInstitution
DualCreditInstitutionDescriptor
Reference
DescriptorProperty
Allowed values: DualCreditInstitutionDescriptor (0 Ed-Fi seed values)
optional Descriptor for the postsecondary institution offering college credit. This descriptor may be used to select a postsecondary institution that is not defined as an education organization, and/or select a general type of postsecondary institution. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • StudentSectionAssociation.DualCredit (optional)

UDM primitive/simple type Boolean

DualCreditIndicator #

dictionary-only type

Indicates whether the student assigned to the section is to receive dual credit upon successful completion.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DualCredit.DualCreditIndicator (optional)

Descriptor catalog Descriptor

DualCreditInstitution #

/ed-fi/descriptors/dualCreditInstitutionDescriptors

Custom descriptor of college institutions or categories of institutions participating in the dual credit program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Student Academic Record, Student Attendance, Student Cohort, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.DualCreditInstitutionDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/DualCreditInstitutionDescriptor.xml ยท status missing_404
Used By (1)
  • DualCredit.DualCreditInstitution (optional)

Descriptor catalog Descriptor

DualCreditType #

/ed-fi/descriptors/dualCreditTypeDescriptors

Indicates the type of the dual credit program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Student Academic Record, Student Attendance, Student Cohort, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.DualCreditTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DualCreditTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Advanced Courses Eligible for College Credit Advanced course eligible for college credit High school courses such as Advanced Placement (AP), or International Baccalaureate (IB), where students earn high school academic credit that is accepted by some colleges and universities. uri://ed-fi.org/DualCreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Concurrent Enrollment Concurrent enrollment in college courses taught in high school College courses taught in high school by college-approved high school teachers. Students earn college academic credit and may earn simultaneous high school academic credit. uri://ed-fi.org/DualCreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dual Enrollment Dual enrollment in college courses College-taught courses taken while enrolled in high school. Students earn college academic credit and may earn simultaneous high school academic credit. uri://ed-fi.org/DualCreditTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • DualCredit.DualCreditType (optional)

UDM primitive/simple type Boolean

DualHighSchoolCreditIndicator #

dictionary-only type

Indicates whether successful completion of the course will result in credits toward high school graduation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DualCredit.DualHighSchoolCreditIndicator (optional)

UDM primitive/simple type Date

DueDate #

dictionary-only type

The month, day, and year on which the goal is due or expected to be completed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Goal.DueDate (optional)

UDM primitive/simple type Date

DueDate #

dictionary-only type

The date the assignment, homework, or assessment is due.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • GradebookEntry.DueDate (optional)

UDM primitive/simple type Time

DueTime #

dictionary-only type

The time the assignment, homework, or assessment is due.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • GradebookEntry.DueTime (optional)

UDM primitive/simple type Number

Duration #

dictionary-only type

The actual or estimated number of clock minutes for a given class.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 1
Used By (6)
  • Course.TimeRequiredForCompletion (optional)
  • CourseOffering.InstructionalTimePlanned (optional)
  • EvaluationRating.ActualDuration (optional)
  • PerformanceEvaluationRating.ActualDuration (optional)
  • StudentIEPServicePrescription.Duration (required)
  • StudentProgramEvaluation.EvaluationDuration (optional)

Descriptor catalog Descriptor

DurationInterval #

/ed-fi/descriptors/durationIntervalDescriptors

The frequency period for the prescribed service duration. Examples include: Per Session, Per Week, Per Month.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.DurationIntervalDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for DurationIntervalDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Month Month Month uri://ed-fi.org/DurationIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quarter Quarter Quarter uri://ed-fi.org/DurationIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Semester Semester Semester uri://ed-fi.org/DurationIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Week Week Week uri://ed-fi.org/DurationIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Year Year Year uri://ed-fi.org/DurationIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentIEPServicePrescription.DurationInterval (required)

Descriptor catalog Descriptor

EconomicDisadvantage #

/ed-fi/descriptors/economicDisadvantageDescriptors

This descriptor defines the type of economic disadvantage experienced by an individual.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Educator Preparation Program, Enrollment, Recruiting and Staffing, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.EconomicDisadvantageDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EconomicDisadvantageDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Eligible For Free Meals Eligible For Free Meals Under The National School Lunch And Child Nutrition Program uri://ed-fi.org/EconomicDisadvantageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible for Reduced-Price Meals Eligible for Reduced-Price Meals Eligible For Reduced-price Meals Under The National School Lunch And Child Nutrition Program uri://ed-fi.org/EconomicDisadvantageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Qualified As Economically Disadvantaged Did Not Qualified As Economically Disadvantaged Did Not Qualified As Economically Disadvantaged uri://ed-fi.org/EconomicDisadvantageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Economic Disadvantage Other Economic Disadvantage Other Economic Disadvantage, Including: a) from a family with an annual income at or below the official federal poverty line, b) eligible for Temporary Assistance to Needy Families (TANF) or other public assistance, c) received a comparable state program of need-based financial assistance, d) eligible for programs assisted under Title II of the Job Training Partnership Act (JTPA), or e) eligible for benefits under the Food Stamp Act of 1977 uri://ed-fi.org/EconomicDisadvantageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown The Economic Disadvantage status is unknown uri://ed-fi.org/EconomicDisadvantageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • ApplicantProfile.EconomicDisadvantage (optional)
  • Candidate.EconomicDisadvantage (optional)
  • StudentDemographic.EconomicDisadvantage (optional)

Descriptor catalog Descriptor

EducationalEnvironment #

/ed-fi/descriptors/educationalEnvironmentDescriptors

The setting in which a child receives education and related services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Bell Schedule, Intervention, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationalEnvironmentDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (13 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EducationalEnvironmentDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Classroom Classroom Classroom uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Homebound Homebound Homebound uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hospital class Hospital class Hospital class uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
In-school suspension In-school suspension In-school suspension uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Laboratory Laboratory Laboratory uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mainstream (Special Education) Mainstream (Special Education) Mainstream (Special Education) uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Off-school center Off-school center Off-school center uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pull-out class Pull-out class Pull-out class uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Resource room Resource room Resource room uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Self-contained (Special Education) Self-contained (Special Education) Self-contained (Special Education) uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Self-study Self-study Self-study uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shop Shop Shop uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Single sex classroom Single sex classroom Single sex classroom uri://ed-fi.org/EducationalEnvironmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • RestraintEvent.EducationalEnvironment (optional)
  • Section.EducationalEnvironment (optional)
  • AttendanceEvent.EducationalEnvironment (optional)

Canonical UDM resource Class

EducationContent #

/ed-fi/educationContents

This entity represents materials for students or teachers that can be used for teaching, learning, research, and more. Education content includes full courses, course materials, modules, intervention descriptions, textbooks, streaming videos, tests, software, and any other tools, materials, or techniques used to support access to knowledge.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationContent edfi.EducationContentAppropriateGradeLevel edfi.EducationContentAppropriateSex edfi.EducationContentAuthor edfi.EducationContentDerivativeSourceEducationContent edfi.EducationContentDerivativeSourceLearningResourceMetadataURI edfi.EducationContentDerivativeSourceURI edfi.EducationContentLanguage
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ContentIdentifier
ContentIdentifier
String
VARCHAR(225)
required
identity
ODS/API identity
A unique identifier for the education content. max length 225 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LearningResourceChoice
LearningResourceChoice
Reference
ChoiceProperty
required The details describing a learning resource or a URI pointing to the metadata entry in a LRMI metadata repository describing the content item. object reference; required Ed-Fi field source pass-through
Cost
Cost
Number
MONEY
optional An amount that has to be paid or spent to buy or obtain the education content. optional Ed-Fi field source pass-through
CostRate
CostRateDescriptor
Reference
DescriptorProperty
Allowed values: CostRateDescriptor (2 Ed-Fi seed values)
optional The rate by which the cost applies. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required Namespace for the education content. max length 255 characters; required Ed-Fi field source pass-through
Used By (1)
  • EducationContentSource.EducationContent (optional collection)

UDM common/composite Composite Part

EducationContentSource #

dictionary-only type

Published papers, reports, or other educational documents.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationContent
EducationContents
Reference
DomainEntityProperty
optional collection Relates the education content source to the education content. object reference; optional collection Ed-Fi field source pass-through
LearningResourceMetadataURI
LearningResourceMetadataURIs
String
VARCHAR(255)
optional collection The URI (typical a URL) pointing to the metadata entry in a LRMI metadata repository, which describes this content item. max length 255 characters; optional collection Ed-Fi field source pass-through
URI
URIs
String
VARCHAR(255)
optional collection The URI (typical a URL) pointing to an education content item. max length 255 characters; optional collection Ed-Fi field source pass-through
Used By (4)
  • Intervention.EducationContentSource (required)
  • InterventionPrescription.EducationContentSource (required)
  • InterventionStudy.EducationContentSource (optional)
  • LearningResource.DerivativeSourceEducationContentSource (optional)

Canonical UDM resource Class

EducationOrganization #

/ed-fi/educationOrganizations

This entity represents any public or private institution, organization, or agency that provides instructional or support services to students or staff at any level.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Education Organization, Enrollment, Finance, Graduation, Intervention, School Calendar, Special Education, Staff, Student Academic Record, Student Cohort, Student Health, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationOrganization edfi.EducationOrganizationAddress edfi.EducationOrganizationAddressCharacteristic edfi.EducationOrganizationAddressPeriod edfi.EducationOrganizationCategory edfi.EducationOrganizationIndicator edfi.EducationOrganizationIndicatorPeriod edfi.EducationOrganizationInstitutionTelephone edfi.EducationOrganizationInternationalAddress
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganizationId
EducationOrganizationId
Number
INT
required
identity
ODS/API identity
The identifier assigned to an education organization. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
NameOfInstitution
NameOfInstitution
String
VARCHAR(75)
required The full, legally accepted name of the institution. max length 75 characters; required Ed-Fi field source pass-through
ShortNameOfInstitution
ShortNameOfInstitution
String
VARCHAR(75)
optional A short name for the institution. max length 75 characters; optional Ed-Fi field source pass-through
EducationOrganizationCategory
Categories
Reference
DescriptorProperty
Allowed values: governed CategoriesDescriptor values; no matching handbook descriptor entry found.
required collection The classification of the education agency within the geographic boundaries of a state according to the level of administrative and operational control granted by the state. object reference; required collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Address
Addresses
Reference
CommonProperty
optional collection The set of elements that describes an address for the education entity, including the street address, city, state, ZIP code, and ZIP code + 4. object reference; optional collection Ed-Fi field source pass-through
InternationalAddress
InternationalAddresses
Reference
CommonProperty
optional collection The set of elements that describes the international physical location of the education entity. object reference; optional collection Ed-Fi field source pass-through
InstitutionTelephone
InstitutionTelephones
Reference
CommonProperty
optional collection The 10-digit telephone number, including the area code, for the education entity. object reference; optional collection Ed-Fi field source pass-through
WebSite
WebSite
String
VARCHAR(255)
optional The public web site address (URL) for the education organization. max length 255 characters; optional Ed-Fi field source pass-through
OperationalStatus
OperationalStatusDescriptor
Reference
DescriptorProperty
Allowed values: OperationalStatusDescriptor (8 Ed-Fi seed values)
optional The current operational status of the education organization (e.g., active, inactive). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganizationIndicator
Indicators
Reference
CommonProperty
optional collection An indicator or metric of an education organization. object reference; optional collection Ed-Fi field source pass-through
Used By (62, showing 30)
  • EducationOrganizationInterventionPrescriptionAssociation.EducationOrganization (required)
  • EducationOrganizationNetworkAssociation.MemberEducationOrganization (required)
  • EducationOrganizationPeerAssociation.EducationOrganization (required)
  • EducationOrganizationPeerAssociation.PeerEducationOrganization (required)
  • GeneralStudentProgramAssociation.EducationOrganization (required)
  • StaffEducationOrganizationAssignmentAssociation.EducationOrganization (required)
  • StaffEducationOrganizationEmploymentAssociation.EducationOrganization (required)
  • StudentAssessmentEducationOrganizationAssociation.EducationOrganization (required)
  • StudentEducationOrganizationAssociation.EducationOrganization (required)
  • StudentEducationOrganizationResponsibilityAssociation.EducationOrganization (required)
  • StudentEducationOrganizationResponsibilityAssociation.ResponsibleEducationOrganization (optional)
  • StudentSpecialEducationProgramEligibilityAssociation.EducationOrganization (required)
  • SurveyResponseEducationOrganizationTargetAssociation.EducationOrganization (required)
  • SurveySectionResponseEducationOrganizationTargetAssociation.EducationOrganization (required)
  • AdministrationPointOfContact.EducationOrganization (required)
  • ContentStandard.MandatingEducationOrganization (optional)
  • AccountabilityRating.EducationOrganization (required)
  • Application.EducationOrganization (required)
  • Assessment.EducationOrganization (optional)
  • AssessmentAdministration.AssigningEducationOrganization (required)
  • AssessmentAdministrationParticipation.ParticipatingEducationOrganization (required)
  • CandidateIdentificationCode.EducationOrganization (required)
  • Certification.EducationOrganization (optional)
  • CertificationExam.EducationOrganization (optional)
  • ChartOfAccount.EducationOrganization (required)
  • Cohort.EducationOrganization (required)
  • CompetencyObjective.EducationOrganization (required)
  • ContactIdentificationCode.EducationOrganization (required)
  • Course.EducationOrganization (required)
  • CourseTranscript.ExternalEducationOrganization (optional)

Descriptor catalog Descriptor

EducationOrganizationAssociationType #

/ed-fi/descriptors/educationOrganizationAssociationTypeDescriptors

The type of education organization association being represented.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationOrganizationAssociationTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EducationOrganizationAssociationTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Administration Administration Indicates the education organization (typically a school) that administered the assessment. uri://ed-fi.org/EducationOrganizationAssociationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Attribution Attribution Indicates the education organization (state, district, and/or school) to which the student's results are attributed to; often used for accountability reporting. uri://ed-fi.org/EducationOrganizationAssociationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Enrollment Enrollment Indicates the education organization (typically a school) where the student was enrolled at the time the assessment was taken by the student. If dual-enrolled, what the school of record. uri://ed-fi.org/EducationOrganizationAssociationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentAssessmentEducationOrganizationAssociation.EducationOrganizationAssociationType (required)

Descriptor catalog Descriptor

EducationOrganizationCategory #

/ed-fi/descriptors/educationOrganizationCategoryDescriptors

The classification of the education agency within the geographic boundaries of a state according to the level of administrative and operational control granted by the state.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Education Organization, Enrollment, Finance, Graduation, Intervention, School Calendar, Special Education, Staff, Student Academic Record, Student Cohort, Student Health, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationOrganizationCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EducationOrganizationCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Education Organization Network Education Organization Network Education Organization Network uri://ed-fi.org/EducationOrganizationCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Education Service Center Education Service Center Education Service Center uri://ed-fi.org/EducationOrganizationCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Educator Preparation Provider Educator Preparation Provider Educator Preparation Provider uri://ed-fi.org/EducationOrganizationCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Local Education Agency Local Education Agency Local Education Agency uri://ed-fi.org/EducationOrganizationCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Organization Department Organization Department An organizational unit of another education organization, often devoted to a particular academic discipline, area of study, or organization function. uri://ed-fi.org/EducationOrganizationCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/EducationOrganizationCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Post Secondary Institution Post Secondary Institution Post Secondary Institution uri://ed-fi.org/EducationOrganizationCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/EducationOrganizationCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State Education Agency State Education Agency State Education Agency uri://ed-fi.org/EducationOrganizationCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EducationOrganization.EducationOrganizationCategory (required collection)

UDM primitive/simple type Number

EducationOrganizationId #

dictionary-only type

The identifier assigned to an education organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Canonical UDM resource Class

EducationOrganizationIdentificationCode #

/ed-fi/educationOrganizationIdentificationCodes

This entity holds different identity codes for an education organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationOrganizationIdentificationCode
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganizationIdentificationSystem
EducationOrganizationIdentificationSystemDescriptor
Reference
DescriptorProperty
Allowed values: EducationOrganizationIdentificationSystemDescriptor (11 Ed-Fi seed values)
required
identity
ODS/API identity
A coding scheme that is used for identification and record-keeping. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
IdentificationCode
IdentificationCode
String
VARCHAR(120)
required A unique number or alphanumeric code assigned to an education organization by an SEA or other agency. max length 120 characters; required Ed-Fi field source pass-through
AssigningOrganizationIdentificationCode
AssigningOrganizationIdentificationCode
String
VARCHAR(60)
optional The organization code or name assigning the IdentificationCode. max length 60 characters; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

EducationOrganizationIdentificationSystem #

/ed-fi/descriptors/educationOrganizationIdentificationSystemDescriptors

This descriptor defines the originating record system and code that is used for record-keeping purposes by education organizations.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationOrganizationIdentificationSystemDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EducationOrganizationIdentificationSystemDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
ACT ACT ACT uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DUNS DUNS DUNS uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Federal Federal uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IPEDS IPEDS IPEDS uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LEA LEA LEA uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NCES NCES NCES uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Federal Other Federal Other Federal uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SEA SEA SEA uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
USDE - OPE USDE - OPE USDE - OPE uri://ed-fi.org/EducationOrganizationIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EducationOrganizationIdentificationCode.EducationOrganizationIdentificationSystem (required)

UDM common/composite Composite Part

EducationOrganizationIndicator #

dictionary-only type

An indicator or metric of an Education Organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Indicator
IndicatorDescriptor
Reference
DescriptorProperty
Allowed values: IndicatorDescriptor (0 Ed-Fi seed values)
required
identity
ODS/API identity
The name or code for the indicator or metric. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DesignatedBy
DesignatedBy
String
VARCHAR(60)
optional The person, organization, or department that defined the metric. max length 60 characters; optional Ed-Fi field source pass-through
IndicatorValue
IndicatorValue
String
VARCHAR(60)
optional The value of the indicator or metric. The semantics of an empty value is "not submitted." max length 60 characters; optional Ed-Fi field source pass-through
IndicatorLevel
IndicatorLevelDescriptor
Reference
DescriptorProperty
Allowed values: IndicatorLevelDescriptor (0 Ed-Fi seed values)
optional The value of the indicator or metric, as a value from a controlled vocabulary. The semantics of an empty value is "not submitted." object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
IndicatorGroup
IndicatorGroupDescriptor
Reference
DescriptorProperty
Allowed values: IndicatorGroupDescriptor (0 Ed-Fi seed values)
optional The name for a group of indicators. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Period
Periods
Reference
CommonProperty
optional collection The time period or as-of date for the indicator. object reference; optional collection Ed-Fi field source pass-through
Used By (1)
  • EducationOrganization.EducationOrganizationIndicator (optional collection)

Canonical UDM association Association Class

EducationOrganizationInterventionPrescriptionAssociation #

/ed-fi/educationOrganizationInterventionPrescriptionAssociations

This association indicates interventions made available by an education organization. Often, a district-level education organization purchases a set of intervention prescriptions and makes them available to its schools for use on demand.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationOrganizationInterventionPrescriptionAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization, often times a district, which is making the intervention prescription available to its hierarchy. In some cases, it may be an education organization network instead of a district. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
InterventionPrescription
InterventionPrescriptionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The intervention prescription being made available by the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
optional The begin date of the period during which the intervention prescription is available. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The end date of the period during which the intervention prescription is available. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through

Canonical UDM specialization Subclass

EducationOrganizationNetwork #

/ed-fi/educationOrganizationNetworks

This entity is a self-organized membership network of peer-level education organizations intended to provide shared services or collective procurement.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationOrganizationNetwork
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganizationNetworkId
EducationOrganizationNetworkId
Number
INT
required
identity
ODS/API identity
The identifier assigned to a network of education organizations. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
NetworkPurpose
NetworkPurposeDescriptor
Reference
DescriptorProperty
Allowed values: NetworkPurposeDescriptor (2 Ed-Fi seed values)
required The purpose(s) of the network (e.g., shared services, collective procurement). object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • EducationOrganizationNetworkAssociation.EducationOrganizationNetwork (required)

Canonical UDM association Association Class

EducationOrganizationNetworkAssociation #

/ed-fi/educationOrganizationNetworkAssociations

Properties of the association between the education organization and its network(s).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationOrganizationNetworkAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganizationNetwork
EducationOrganizationNetworkReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization network to which this education organization is a member. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MemberEducationOrganization
MemberEducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization member in the network. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
optional The date on which the education organization joined this network. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The date on which the education organization left this network. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through

UDM primitive/simple type Number

EducationOrganizationNetworkId #

dictionary-only type

The identifier assigned to a network of education organizations. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Canonical UDM association Association Class

EducationOrganizationPeerAssociation #

/ed-fi/educationOrganizationPeerAssociations

The association from an education organization to its peers.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationOrganizationPeerAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The associated peer organization(s) for the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PeerEducationOrganization
PeerEducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The associated peer organization(s) for the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Descriptor catalog Descriptor

EducationPlan #

/ed-fi/descriptors/educationPlanDescriptors

The type of education plan(s) the student is following, if appropriate.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation, School Calendar, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationPlanDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (12 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EducationPlanDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
504 Plan 504 Plan 504 Plan uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career Pathways Career Pathways Career Pathways uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career Suggestions Career Suggestions Career Suggestions uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Completion and Reach Age 22 Completion and Reach Age 22 Completion and Reach Age 22 uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Employability Skills Employability Skills Employability Skills uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Full Time Employment Full Time Employment Full Time Employment uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High School Education Plan High School Education Plan High School Education Plan uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEA IEP IDEA IEP IDEA IEP uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Outside Service Access Outside Service Access Outside Service Access uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Personal Graduation Plan Personal Graduation Plan Personal Graduation Plan uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Success Plan Student Success Plan Student Success Plan uri://ed-fi.org/EducationPlanDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSchoolAssociation.EducationPlan (optional collection)

Canonical UDM specialization Subclass

EducationServiceCenter #

/ed-fi/educationServiceCenters

This entity represents a regional, multi-services public agency authorized by state law to develop, manage and provide services, programs, or other support options (e.g., construction, food services, and technology services) to LEAs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducationServiceCenter
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationServiceCenterId
EducationServiceCenterId
Number
INT
required
identity
ODS/API identity
The identifier assigned to an education service center. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StateEducationAgency
StateEducationAgencyReference
Reference
DomainEntityProperty
optional The SEA of which the ESC is an organizational component. object reference; optional Ed-Fi field source pass-through
Used By (1)
  • LocalEducationAgency.EducationServiceCenter (optional)

UDM primitive/simple type Number

EducationServiceCenterId #

dictionary-only type

The identifier assigned to an education service center. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Canonical UDM resource Class

EducatorPreparationProgram #

/ed-fi/educatorPreparationPrograms

The educator preparation program designed to prepare students to become licensed educators.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducatorPreparationProgram edfi.EducatorPreparationProgramGradeLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the program to an education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramId
ProgramId
String
VARCHAR(20)
optional A unique number or alphanumeric code assigned to a program by a school, school system, a state, or other agency or entity. max length 20 characters; optional Ed-Fi field source pass-through
ProgramName
ProgramName
String
VARCHAR(255)
required
identity
ODS/API identity
The name of the educator preparation program. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramType
ProgramTypeDescriptor
Reference
DescriptorProperty
Allowed values: ProgramTypeDescriptor (61 Ed-Fi seed values)
required
identity
ODS/API identity
The type of program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradeLevel
GradeLevels
Reference
DescriptorProperty
Allowed values: governed GradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The grade levels served at the educator preparation program. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AccreditationStatus
AccreditationStatusDescriptor
Reference
DescriptorProperty
Allowed values: AccreditationStatusDescriptor (5 Ed-Fi seed values)
optional The current accreditation status of the educator preparation program. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (4)
  • CandidateEducatorPreparationProgramAssociation.EducatorPreparationProgram (required)
  • StaffEducatorPreparationProgramAssociation.EducatorPreparationProgram (required)
  • FieldworkExperience.EducatorPreparationProgram (optional)
  • Staff.EducatorPreparationProgram (optional collection)

UDM primitive/simple type String

EducatorPreparationProgramName #

dictionary-only type

The name of the educator preparation program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 255
Used By (2)
  • ApplicantProfile.EducatorPreparationProgramName (optional collection)
  • EducatorPreparationProgram.ProgramName (required)

UDM common/composite Composite Part

EducatorResearch #

dictionary-only type

The educator preparation provider faculty that instruct teacher candidates in content area or pedagogy.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ResearchExperienceDate
ResearchExperienceDate
Date
DATE
required The month, day, and year of the start or effective date of a staff member's teacher educator position for an education organization. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
ResearchExperienceTitle
ResearchExperienceTitle
String
VARCHAR(60)
optional The title of the research experience. max length 60 characters; optional Ed-Fi field source pass-through
ResearchExperienceDescription
ResearchExperienceDescription
String
VARCHAR(1024)
optional The description of the research experience. max length 1024 characters; optional Ed-Fi field source pass-through
Used By (1)
  • Staff.EducatorResearch (optional)

Descriptor catalog Descriptor

EducatorRole #

/ed-fi/descriptors/educatorRoleDescriptors

The role authorized by the credential or certification, typically associated with service and administrative certifications.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.EducatorRoleDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (19 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EducatorRoleDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Administrative The educator is an Administrative. The educator is an Administrative. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Assistant Principal The educator is an Assistant Principal. The educator is an Assistant Principal. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Associate School Psychologist The educator is an Associate School Psychologist. The educator is an Associate School Psychologist. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Counselor The educator is a Counselor. The educator is a Counselor. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Educational Aide The educator is an Educational Aide. The educator is an Educational Aide. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Educational Diagnostician The educator is an Educational Diagnostician. The educator is an Educational Diagnostician. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Educational Secretary The educator is an Educational Secretary. The educator is an Educational Secretary. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Generalist The educator is a Generalist. The educator is a Generalist. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Instructional Officer The educator is an Instructional Officer. The educator is an Instructional Officer. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Librarian The educator is a Librarian. The educator is a Librarian. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physician The educator is a Physician. The educator is a Physician. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Principal The educator is a Principal. The educator is a Principal. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Nurse The educator is a School Nurse. The educator is a School Nurse. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Psychologist The educator is a School Psychologist. The educator is a School Psychologist. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education The educator is a Special Education. The educator is a Special Education. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Superintendent The educator is a Superintendent. The educator is a Superintendent. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher The educator is a Teacher. The educator is a Teacher. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher Supervisor The educator is a Teacher Supervisor. The educator is a Teacher Supervisor. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Visiting Teacher The educator is a Visiting Teacher. The educator is a Visiting Teacher. uri://ed-fi.org/EducatorRoleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • Certification.EducatorRole (optional)
  • Credential.EducatorRole (optional)

UDM primitive/simple type Date

EffectiveDate #

dictionary-only type

The date that the association is considered to be applicable or effective.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • LearningStandardEquivalenceAssociation.EffectiveDate (optional)

UDM primitive/simple type Date

EffectiveDate #

dictionary-only type

The month, day, and year on which the certification is offered. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Certification.EffectiveDate (optional)

UDM primitive/simple type Date

EffectiveDate #

dictionary-only type

The month, day, and year on which the certification exam is offered. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CertificationExam.EffectiveDate (optional)

UDM primitive/simple type Date

EffectiveDate #

dictionary-only type

The month, day, and year on which an active credential held by a person was issued. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Credential.EffectiveDate (optional)

UDM common/composite Composite Part

ElectronicMail #

dictionary-only type

The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the individual or organization belongs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ElectronicMailAddress
ElectronicMailAddress
String
VARCHAR(128)
required
identity
ODS/API identity
The electronic mail (e-mail) address listed for an individual or organization. max length 128 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ElectronicMailType
ElectronicMailTypeDescriptor
Reference
DescriptorProperty
Allowed values: ElectronicMailTypeDescriptor (4 Ed-Fi seed values)
required
identity
ODS/API identity
The type of email listed for an individual or organization. For example: Home/Personal, Work, etc.) object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryEmailAddressIndicator
PrimaryEmailAddressIndicator
Boolean
BOOLEAN
optional An indication that the electronic mail address should be used as the principal electronic mail address for an individual or organization. boolean true/false; optional Ed-Fi field source pass-through
DoNotPublishIndicator
DoNotPublishIndicator
Boolean
BOOLEAN
optional An indication that the electronic email address should not be published. boolean true/false; optional Ed-Fi field source pass-through
Used By (5)
  • ApplicantProfile.ElectronicMail (optional collection)
  • Candidate.ElectronicMail (optional collection)
  • Contact.ElectronicMail (optional collection)
  • StaffDirectory.ElectronicMail (optional collection)
  • StudentDirectory.ElectronicMail (optional collection)

UDM primitive/simple type String

ElectronicMailAddress #

dictionary-only type

The electronic mail (e-mail) address listed for an individual or organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 7
  • max length: 128
Used By (4)
  • AdministrationPointOfContact.ElectronicMailAddress (required)
  • ElectronicMail.ElectronicMailAddress (required)
  • RecruitmentEventAttendance.ElectronicMailAddress (required)
  • SurveyResponse.ElectronicMailAddress (optional)

Descriptor catalog Descriptor

ElectronicMailType #

/ed-fi/descriptors/electronicMailTypeDescriptors

The type of email listed for an individual or organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program, Enrollment, Recruiting and Staffing, Staff, Student Identification And Demographics, Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.ElectronicMailTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ElectronicMailTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Home/Personal Home/Personal Home/Personal uri://ed-fi.org/ElectronicMailTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Organization Organization Organization uri://ed-fi.org/ElectronicMailTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ElectronicMailTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Work Work Work uri://ed-fi.org/ElectronicMailTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • ElectronicMail.ElectronicMailType (required)

UDM primitive/simple type Date

EligibilityConferenceDate #

dictionary-only type

The month, day, and year when the eligibility conference is held between the parent(s)/guardian(s) and the educational organization responsible staff member(s) to review and make decision on special education related services eligibility.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.EligibilityConferenceDate (optional)

Descriptor catalog Descriptor

EligibilityDelayReason #

/ed-fi/descriptors/eligibilityDelayReasonDescriptors

The reason why the eligibility determination was completed beyond the required timeframe.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.EligibilityDelayReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EligibilityDelayReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Detailed Records Maintained by LEA Detailed Records Maintained by LEA LEA agreement with parent or guardian to timeframe. Detailed records maintained by LEA. uri://ed-fi.org/EligibilityDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lack of Available Assessment Personnel Lack of Available Assessment Personnel LEA delay due to lack of available assessment personnel. uri://ed-fi.org/EligibilityDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Late Report from Contracted Personnel Late Report from Contracted Personnel LEA delay due to late report from contracted personnel. uri://ed-fi.org/EligibilityDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No Detailed Records by LEA No Detailed Records by LEA LEA agreement with parent to timeframe. No detailed records maintained by LEA. uri://ed-fi.org/EligibilityDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/EligibilityDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent/Guardian Delay - Detailed Records Parent Delay - Detailed Records Delay due to parent or guardian. Detailed records maintained by LEA regarding a parent or guardian of a child who repeatedly fails or refuses to produce the child for the evaluation or eligibility determination. uri://ed-fi.org/EligibilityDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent/Guardian Delay - No Detailed Records Parent Delay - No Detailed Records Delay due to parent or guardian. No detailed records maintained by LEA regarding a parent or guardian of a child who repeatedly fails or refuses to produce the child for the evaluation or eligibility determination. uri://ed-fi.org/EligibilityDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Part C (ECI) Part C (ECI) Part C (ECI) did not notify or refer the child to Part B at least 90 days prior to the child's third birthday. uri://ed-fi.org/EligibilityDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Scheduling LEA Delay Due to Scheduling LEA delay due to scheduling. uri://ed-fi.org/EligibilityDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.EligibilityDelayReason (optional)

UDM primitive/simple type Date

EligibilityDeterminationDate #

dictionary-only type

Indicates the month, day, and year the local education agency (LEA) held the admission, review, and dismissal committee meeting regarding the child's eligibility determination for special education and related services. An individualized education plan (IEP) would be developed and implemented for a child admitted into special education on this same date.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.EligibilityDeterminationDate (optional)

UDM primitive/simple type Date

EligibilityEvaluationDate #

dictionary-only type

Indicates the month, day, and year when the written individual evaluation report was completed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.EligibilityEvaluationDate (optional)

Descriptor catalog Descriptor

EligibilityEvaluationType #

/ed-fi/descriptors/eligibilityEvaluationTypeDescriptors

Indicates if this is an initial evaluation or a reevaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.EligibilityEvaluationTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EligibilityEvaluationTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Initial Evaluation Initial Evaluation Initial Evaluation uri://ed-fi.org/EligibilityEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reevaluation Reevaluation Reevaluation uri://ed-fi.org/EligibilityEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.EligibilityEvaluationType (optional)

UDM primitive/simple type Date

EligibilityExpirationDate #

dictionary-only type

The eligibility expiration date is used to determine end of eligibility and to account for a child's eligibility expiring earlier than 36 months from the child's QAD. A child's eligibility would end earlier than 36 months from the child's QAD, if the child is no longer entitled to a free public education (e.g., graduated with a high school diploma, obtained a high school equivalency diploma (HSED), or for other reasons as determined by states' requirements), or if the child passes away.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentMigrantEducationProgramAssociation.EligibilityExpirationDate (optional)

UDM primitive/simple type Boolean

Eligible #

dictionary-only type

An indication of whether the prospect is eligible for the position.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • RecruitmentEventAttendeeQualifications.Eligible (required)

UDM primitive/simple type Boolean

EmergencyContactStatus #

dictionary-only type

Indicator of whether the person is a designated emergency contact for the student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentContactAssociation.EmergencyContactStatus (optional)

UDM primitive/simple type Boolean

EmployedWhileEnrolled #

dictionary-only type

An individual who is a paid employee or works in his or her own business, profession, or farm and at the same time is enrolled in secondary, postsecondary, or adult education.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolAssociation.EmployedWhileEnrolled (optional)

UDM common/composite Composite Part

EmploymentPeriod #

dictionary-only type

The set of elements defining and characterizing an individual's period of employment including start and end dates and the type and reason for separation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
HireDate
HireDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year on which an individual was hired for a position. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year on which a contract between an individual and a governing authority ends or is terminated under the provisions of the contract (or the date on which the agreement is made invalid). Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Separation
SeparationDescriptor
Reference
DescriptorProperty
Allowed values: SeparationDescriptor (4 Ed-Fi seed values)
optional Type of employment separation. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SeparationReason
SeparationReasonDescriptor
Reference
DescriptorProperty
Allowed values: SeparationReasonDescriptor (11 Ed-Fi seed values)
optional Reason for terminating the employment. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • StaffEducationOrganizationEmploymentAssociation.EmploymentPeriod (required)

Descriptor catalog Descriptor

EmploymentStatus #

/ed-fi/descriptors/employmentStatusDescriptors

This descriptor defines the type of employment or contract.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.EmploymentStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (10 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EmploymentStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Contractual Contractual Contractual uri://ed-fi.org/EmploymentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Employed or affiliated with outside agency part-ti Employed or affiliated with outside agency part-time Employed or affiliated with outside agency part-time uri://ed-fi.org/EmploymentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Employed or affiliated with outside organization Employed or affiliated with outside organization Employed or affiliated with outside organization uri://ed-fi.org/EmploymentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Employed part-time Employed part-time Employed part-time uri://ed-fi.org/EmploymentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-contractual Non-contractual Non-contractual uri://ed-fi.org/EmploymentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/EmploymentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Probationary Probationary Probationary uri://ed-fi.org/EmploymentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Substitute/temporary Substitute/temporary Substitute/temporary uri://ed-fi.org/EmploymentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tenured or permanent Tenured or permanent Tenured or permanent uri://ed-fi.org/EmploymentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Volunteer/no contract Volunteer/no contract Volunteer/no contract uri://ed-fi.org/EmploymentStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • StaffEducationOrganizationEmploymentAssociation.EmploymentStatus (required)
  • OpenStaffPosition.EmploymentStatus (required)

UDM primitive/simple type Date

EndDate (AcademicWeek) #

dictionary-only type

The end date for the academic week. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • AcademicWeek.EndDate (required)

UDM primitive/simple type Date

EndDate (ApplicantCharacteristic) #

dictionary-only type

The date the characteristic was removed. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ApplicantCharacteristic.EndDate (optional)

UDM primitive/simple type Date

EndDate (AssessmentPeriod) #

dictionary-only type

The last date the assessment is to be administered. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • AssessmentPeriod.EndDate (optional)

UDM primitive/simple type Date

EndDate (CandidateCharacteristic) #

dictionary-only type

The date the characteristic was removed. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CandidateCharacteristic.EndDate (optional)

UDM primitive/simple type Date

EndDate (CandidateEducatorPreparationProgramAssociation) #

dictionary-only type

The end date for the association. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CandidateEducatorPreparationProgramAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (CandidateIndicator) #

dictionary-only type

The month, day, and year when the indicator value is no longer valid. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CandidateIndicator.EndDate (optional)

UDM primitive/simple type Date

EndDate (CandidateRelationshipToStaffAssociation) #

dictionary-only type

The month, day, and year on which the candidate stops association with the staff. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CandidateRelationshipToStaffAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (Certification) #

dictionary-only type

The month, day, and year on which the certification offering is expected to end. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Certification.EndDate (optional)

UDM primitive/simple type Date

EndDate (CertificationExam) #

dictionary-only type

The month, day, and year on which the certification exam offering is expected to end. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CertificationExam.EndDate (optional)

UDM primitive/simple type Date

EndDate (ContentStandard) #

dictionary-only type

The end of the period during which this learning standard document is intended for use. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ContentStandard.EndDate (optional)

UDM primitive/simple type Date

EndDate (DegreeSpecialization) #

dictionary-only type

The month, day, and year on which the teacher candidate exited the declared specialization. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DegreeSpecialization.EndDate (optional)

UDM primitive/simple type Date

EndDate (EducationOrganizationInterventionPrescriptionAssociation) #

dictionary-only type

The end date of the period during which the intervention prescription is available. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • EducationOrganizationInterventionPrescriptionAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (EducationOrganizationNetworkAssociation) #

dictionary-only type

The date on which the education organization left this network. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • EducationOrganizationNetworkAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (EmploymentPeriod) #

dictionary-only type

The month, day, and year on which a contract between an individual and a governing authority ends or is terminated under the provisions of the contract (or the date on which the agreement is made invalid). Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • EmploymentPeriod.EndDate (optional)

UDM primitive/simple type Date

EndDate (FeederSchoolAssociation) #

dictionary-only type

The month, day, and year of the last day of the feeder school association. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • FeederSchoolAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (FieldworkExperience) #

dictionary-only type

The month, day, and year on which the staff ends fieldwork. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • FieldworkExperience.EndDate (optional)

UDM primitive/simple type Date

EndDate (FinancialAid) #

dictionary-only type

The date the award was removed. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • FinancialAid.EndDate (optional)

UDM primitive/simple type Date

EndDate (GeneralStudentProgramAssociation) #

dictionary-only type

The month, day, and year on which the student exited the program or stopped receiving services. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • GeneralStudentProgramAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (GradingPeriod) #

dictionary-only type

Month, day, and year of the last day of the grading period. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • GradingPeriod.EndDate (required)

UDM primitive/simple type Date

EndDate (IDEAEvent) #

dictionary-only type

The date when the IDEA related event concluded. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • IDEAEvent.EndDate (optional)

UDM primitive/simple type Date

EndDate (InternationalAddress) #

dictionary-only type

The last date the address is valid. For physical addresses, the date the individual moved from that address. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • InternationalAddress.EndDate (optional)

UDM primitive/simple type Date

EndDate (Intervention) #

dictionary-only type

The end date for the intervention implementation. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Intervention.EndDate (optional)

UDM primitive/simple type Date

EndDate (Period) #

dictionary-only type

The month, day, and year for the end of the period. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Period.EndDate (optional)

UDM primitive/simple type Date

EndDate (Session) #

dictionary-only type

Month, day and year of the last day of the session. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Session.EndDate (required)

UDM primitive/simple type Date

EndDate (StaffCohortAssociation) #

dictionary-only type

End date for the association of staff to this cohort. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffCohortAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (StaffEducationOrganizationAssignmentAssociation) #

dictionary-only type

Month, day, and year of the end or termination date of a staff member's employment, contract, or relationship with the education organization. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffEducationOrganizationAssignmentAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (StaffEducatorPreparationProgramAssociation) #

dictionary-only type

The end date for the association of staff to this program. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffEducatorPreparationProgramAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (StaffLeave) #

dictionary-only type

The end date of the staff leave. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffLeave.EndDate (optional)

UDM primitive/simple type Date

EndDate (StaffProgramAssociation) #

dictionary-only type

End date for the association of staff to this program. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffProgramAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (StaffSectionAssociation) #

dictionary-only type

Month, day, and year of the last day of a staff member's assignment to the section. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffSectionAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (StudentCohortAssociation) #

dictionary-only type

The month, day, and year on which the student was removed as part of the cohort. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentCohortAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (StudentEducationOrganizationResponsibilityAssociation) #

dictionary-only type

Month, day, and year of the end date of an education organization's responsibility for a student. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentEducationOrganizationResponsibilityAssociation.EndDate (optional)

UDM primitive/simple type Date

EndDate (StudentIEPServicePrescription) #

dictionary-only type

The effective date when the prescribed service ended. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentIEPServicePrescription.EndDate (optional)

UDM primitive/simple type Date

EndDate (StudentSectionAssociation) #

dictionary-only type

Month, day, and year of the withdrawal or exit of the student from the section. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSectionAssociation.EndDate (optional)

UDM primitive/simple type Time

EndTime #

dictionary-only type

An indication of the time of day the meeting time ends.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • MeetingTime.EndTime (identity)

UDM primitive/simple type Time

EndTime #

dictionary-only type

An indication of the time of day the bell schedule ends.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • BellSchedule.EndTime (optional)

Descriptor catalog Descriptor

EnglishLanguageExam #

/ed-fi/descriptors/englishLanguageExamDescriptors

Indicates that a person passed, failed, or did not take an English Language assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.EnglishLanguageExamDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EnglishLanguageExamDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Fail Fail Fail uri://ed-fi.org/EnglishLanguageExamDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
N/A N/A N/A uri://ed-fi.org/EnglishLanguageExamDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/EnglishLanguageExamDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pass Pass Pass uri://ed-fi.org/EnglishLanguageExamDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Candidate.EnglishLanguageExam (optional)

UDM common/composite Composite Part

EnglishLanguageProficiencyAssessment #

dictionary-only type

Results of yearly English language assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The school year for which the assessment was administered. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Participation
ParticipationDescriptor
Reference
DescriptorProperty
Allowed values: ParticipationDescriptor (4 Ed-Fi seed values)
optional Field indicating the participation in the yearly English language assessment. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Proficiency
ProficiencyDescriptor
Reference
DescriptorProperty
Allowed values: ProficiencyDescriptor (2 Ed-Fi seed values)
optional The proficiency level for the yearly English language assessment. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Progress
ProgressDescriptor
Reference
DescriptorProperty
Allowed values: ProgressDescriptor (3 Ed-Fi seed values)
optional The yearly progress or growth from last year's assessment. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Monitored
MonitoredDescriptor
Reference
DescriptorProperty
Allowed values: MonitoredDescriptor (3 Ed-Fi seed values)
optional Student is monitored on content achievement who are no longer receiving services. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • StudentLanguageInstructionProgramAssociation.EnglishLanguageProficiencyAssessment (optional collection)

UDM primitive/simple type Boolean

EnglishLearnerParticipation #

dictionary-only type

An indication that an English learner student is served by an English language instruction educational program supported with Title III of ESEA funds.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentLanguageInstructionProgramAssociation.EnglishLearnerParticipation (optional)

Descriptor catalog Descriptor

EnrollmentType #

/ed-fi/descriptors/enrollmentTypeDescriptors

The type of enrollment reflected by the StudentSchoolAssociation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation, School Calendar, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.EnrollmentTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EnrollmentTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Current Current Current uri://ed-fi.org/EnrollmentTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Preregistered Preregistered Preregistered uri://ed-fi.org/EnrollmentTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Summer Summer Summer uri://ed-fi.org/EnrollmentTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSchoolAssociation.EnrollmentType (optional)

UDM primitive/simple type Date

EntryDate #

dictionary-only type

The month, day, and year on which an individual enters and begins to receive instructional services in a school for each school year. The EntryDate value should be the date the student enrolled, or when the student's enrollment materially changed, such as with a grade promotion. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolAssociation.EntryDate (identity)

Descriptor catalog Descriptor

EntryGradeLevelReason #

/ed-fi/descriptors/entryGradeLevelReasonDescriptors

The primary reason as to why a staff member determined that a student should be promoted or not (or be demoted) at the end of a given school term.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation, School Calendar, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.EntryGradeLevelReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (13 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EntryGradeLevelReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Nonpromotion - Failed to meet testing requirements Nonpromotion - Failed to meet testing requirements Nonpromotion - Failed to meet testing requirements uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nonpromotion - Illness Nonpromotion - Illness Nonpromotion - Illness uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nonpromotion - Immaturity Nonpromotion - Immaturity Nonpromotion - Immaturity uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nonpromotion - Inadequate performance Nonpromotion - Inadequate performance Nonpromotion - Inadequate performance uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nonpromotion - Insufficient credits Nonpromotion - Insufficient credits Nonpromotion - Insufficient credits uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nonpromotion - Other Nonpromotion - Other Nonpromotion - Other uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nonpromotion - Prolonged absence Nonpromotion - Prolonged absence Nonpromotion - Prolonged absence uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Promotion - Accelerated promotion Promotion - Accelerated promotion Promotion - Accelerated promotion uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Promotion - Continuous promotion Promotion - Continuous promotion Promotion - Continuous promotion uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Promotion - Other Promotion - Other Promotion - Other uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Promotion - Probationary promotion Promotion - Probationary promotion Promotion - Probationary promotion uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Promotion - Regular promotion Promotion - Regular promotion Promotion - Regular promotion uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Promotion - Variable progress Promotion - Variable progress Promotion - Variable progress uri://ed-fi.org/EntryGradeLevelReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSchoolAssociation.EntryGradeLevelReason (optional)

Descriptor catalog Descriptor

EntryType #

/ed-fi/descriptors/entryTypeDescriptors

This descriptor defines the process by which a student enters a school during a given academic session.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation, School Calendar, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.EntryTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EntryTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
New to education system New to education system New to education system uri://ed-fi.org/EntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Next year school Next year school Next year school uri://ed-fi.org/EntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/EntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Re-entry Re-entry Re-entry uri://ed-fi.org/EntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transfer Transfer Transfer uri://ed-fi.org/EntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSchoolAssociation.EntryType (optional)

Descriptor catalog Descriptor

EPPDegreeType #

/ed-fi/descriptors/ePPDegreeTypeDescriptors

The type of academic degree awarded upon completion of an educator preparation program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.EPPDegreeTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EPPDegreeTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Bachelor of Arts Bachelor of Arts Bachelor of Arts uri://ed-fi.org/EPPDegreeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bachelor of Science Bachelor of Science Bachelor of Science uri://ed-fi.org/EPPDegreeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Doctor of Philosophy Doctor of Philosophy Doctor of Philosophy uri://ed-fi.org/EPPDegreeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Educational Doctorate Educational Doctorate Educational Doctorate uri://ed-fi.org/EPPDegreeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Educational Specialist Educational Specialist Educational Specialist uri://ed-fi.org/EPPDegreeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master of Arts Master of Arts Master of Arts uri://ed-fi.org/EPPDegreeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master of Education Master of Education Master of Science in Education uri://ed-fi.org/EPPDegreeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master of Science Master of Science Master of Science uri://ed-fi.org/EPPDegreeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/EPPDegreeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EPPProgramDegree.EPPDegreeType (required)

UDM common/composite Composite Part

EPPProgramDegree #

dictionary-only type

Details of the educator preparation program degree.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AcademicSubject
AcademicSubjectDescriptor
Reference
DescriptorProperty
Allowed values: AcademicSubjectDescriptor (21 Ed-Fi seed values)
required
identity
ODS/API identity
The description of the content or subject area of a degree. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EPPDegreeType
EPPDegreeTypeDescriptor
Reference
DescriptorProperty
Allowed values: EPPDegreeTypeDescriptor (9 Ed-Fi seed values)
required
identity
ODS/API identity
A code for describing the degree type that a candidate accomplishes. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradeLevel
GradeLevelDescriptor
Reference
DescriptorProperty
Allowed values: GradeLevelDescriptor (35 Ed-Fi seed values)
required
identity
ODS/API identity
The grade level associated with the degree plan for the candidate. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • Candidate.EPPProgramDegree (optional collection)

Descriptor catalog Descriptor

EPPProgramPathway #

/ed-fi/descriptors/ePPProgramPathwayDescriptors

The description of the educator preparation program pathway.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.EPPProgramPathwayDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EPPProgramPathwayDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Fellowship Fellowship Fellowship uri://ed-fi.org/EPPProgramPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Internship Internship Internship uri://ed-fi.org/EPPProgramPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/EPPProgramPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Residency Residency Residency uri://ed-fi.org/EPPProgramPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Traditional Traditional Traditional uri://ed-fi.org/EPPProgramPathwayDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CandidateEducatorPreparationProgramAssociation.EPPProgramPathway (optional)

Canonical UDM resource Class

Evaluation #

/ed-fi/evaluations

An evaluation instrument applied to evaluate an educator. The evaluation could be internally developed, or could be an industry recognized instrument such as TTESS or Marzano.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.Evaluation edfi.EvaluationRatingLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PerformanceEvaluation
PerformanceEvaluationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the person's performance evaluation. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationTitle
EvaluationTitle
String
VARCHAR(50)
required
identity
ODS/API identity
The name or title of the evaluation. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationDescription
EvaluationDescription
String
VARCHAR(255)
optional The long description of the evaluation. max length 255 characters; optional Ed-Fi field source pass-through
MinNumericRating
MinNumericRating
Number
DECIMAL(6, 3)
optional The minimum summary numerical rating or score for the evaluation. If omitted, assumed to be 0.0. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
MaxNumericRating
MaxNumericRating
Number
DECIMAL(6, 3)
optional The maximum summary numerical rating or score for the evaluation. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
EvaluationType
EvaluationTypeDescriptor
Reference
DescriptorProperty
Allowed values: EvaluationTypeDescriptor (10 Ed-Fi seed values)
optional The type of the evaluation. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EvaluationRatingLevel
RatingLevels
Reference
CommonProperty
optional collection The descriptive level(s) of ratings (cut scores) for the evaluation. object reference; optional collection Ed-Fi field source pass-through
InterRaterReliabilityScore
InterRaterReliabilityScore
Number
INT
optional A score indicating how much homogeneity, or consensus, there is in the ratings given by judges. Most commonly a percentage scale (1-100). integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (2)
  • EvaluationObjective.Evaluation (required)
  • EvaluationRating.Evaluation (required)

UDM primitive/simple type Boolean

EvaluationCompleteIndicator #

dictionary-only type

Indicates the evaluation completed status.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.EvaluationCompleteIndicator (optional)

UDM primitive/simple type Date

EvaluationDate #

dictionary-only type

The month, day, and year on which the evaluation was conducted.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentProgramEvaluation.EvaluationDate (identity)

UDM primitive/simple type Number

EvaluationDelayDays #

dictionary-only type

Indicates the number of student absences, if any, beginning the first instructional day following the date on which the Local Education Agency (LEA) received written parental consent for the evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.EvaluationDelayDays (optional)

Descriptor catalog Descriptor

EvaluationDelayReason #

/ed-fi/descriptors/evaluationDelayReasonDescriptors

Refers to the justification as to why the evaluation report was completed beyond the state-established timeframe.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationDelayReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EvaluationDelayReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Child Unavailable Child Unavailable Child Unavailable uri://ed-fi.org/EvaluationDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Initial SLD Evaluation Initial SLD Evaluation Initial Specific Learning Disabilities (SLD) Evaluation uri://ed-fi.org/EvaluationDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transfer Transfer Transfer uri://ed-fi.org/EvaluationDelayReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.EvaluationDelayReason (optional)

UDM primitive/simple type String

EvaluationDescription #

dictionary-only type

The long description of the evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (3)
  • Evaluation.EvaluationDescription (optional)
  • EvaluationObjective.EvaluationObjectiveDescription (optional)
  • PerformanceEvaluation.PerformanceEvaluationDescription (optional)

Canonical UDM resource Class

EvaluationElement #

/ed-fi/evaluationElements

The lowest-level elements or criterion of performance being evaluated by rubric, quantitative measure, or aggregate survey response.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationElement edfi.EvaluationElementRatingLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EvaluationObjective
EvaluationObjectiveReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The evaluation objective applied for the person. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationElementTitle
EvaluationElementTitle
String
VARCHAR(255)
required
identity
ODS/API identity
The name or title of the evaluation element. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SortOrder
SortOrder
Number
INT
optional The sort order of the evaluation element. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
MinNumericRating
MinNumericRating
Number
DECIMAL(6, 3)
optional The minimum summary numerical rating or score for the evaluation element. If omitted, assumed to be 0.0. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
MaxNumericRating
MaxNumericRating
Number
DECIMAL(6, 3)
optional The maximum summary numerical rating or score for the evaluation element. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
EvaluationType
EvaluationTypeDescriptor
Reference
DescriptorProperty
Allowed values: EvaluationTypeDescriptor (10 Ed-Fi seed values)
optional The type of the evaluation. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ElementRatingLevel
RatingLevels
Reference
CommonProperty
optional collection The descriptive level(s) of ratings (cut scores) for evaluation element. object reference; optional collection Ed-Fi field source pass-through
Used By (5)
  • EvaluationElementRating.EvaluationElement (required)
  • Goal.EvaluationElement (optional)
  • QuantitativeMeasure.EvaluationElement (required)
  • RubricDimension.EvaluationElement (required)
  • SurveySection.EvaluationElement (optional)

Canonical UDM resource Class

EvaluationElementRating #

/ed-fi/evaluationElementRatings

The lowest-level rating for an evaluation element for an individual educator.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationElementRating edfi.EvaluationElementRatingResult
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EvaluationObjectiveRating
EvaluationObjectiveRatingReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the person's evaluation objective rating. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationElement
EvaluationElementReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The evaluation element applied for the person. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ElementRatingResult
ElementRatingResults
Reference
CommonProperty
optional collection The numerical summary rating or score for the evaluation element. object reference; optional collection Ed-Fi field source pass-through
EvaluationElementRatingLevel
EvaluationElementRatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: EvaluationElementRatingLevelDescriptor (9 Ed-Fi seed values)
optional The rating level achieved based upon the rating or score. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AreaOfRefinement
AreaOfRefinement
String
VARCHAR(1024)
optional Area identified for the person to refine or improve as part of the evaluation. max length 1024 characters; optional Ed-Fi field source pass-through
AreaOfReinforcement
AreaOfReinforcement
String
VARCHAR(1024)
optional Area identified for reinforcement or positive feedback as part of the evaluation. max length 1024 characters; optional Ed-Fi field source pass-through
Comments
Comments
String
VARCHAR(1024)
optional Any comments about the performance evaluation to be captured. max length 1024 characters; optional Ed-Fi field source pass-through
Feedback
Feedback
String
VARCHAR(2048)
optional Feedback provided to the evaluated person. max length 2048 characters; optional Ed-Fi field source pass-through
Used By (2)
  • QuantitativeMeasureScore.EvaluationElementRating (required)
  • SurveySectionAggregateResponse.EvaluationElementRating (required)

Descriptor catalog Descriptor

EvaluationElementRatingLevel #

/ed-fi/descriptors/evaluationElementRatingLevelDescriptors

The rating levels for evaluation elements.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationElementRatingLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EvaluationElementRatingLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accomplished Accomplished Accomplished uri://ed-fi.org/EvaluationElementRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Demonstrated Demonstrated Demonstrated uri://ed-fi.org/EvaluationElementRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Developing Developing Developing uri://ed-fi.org/EvaluationElementRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Effective Effective Effective uri://ed-fi.org/EvaluationElementRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Highly Effective Highly Effective Highly Effective uri://ed-fi.org/EvaluationElementRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ineffective Ineffective Ineffective uri://ed-fi.org/EvaluationElementRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minimally Effective Minimally Effective Minimally Effective uri://ed-fi.org/EvaluationElementRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Demonstrated Not Demonstrated Not Demonstrated uri://ed-fi.org/EvaluationElementRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Skilled Skilled Skilled uri://ed-fi.org/EvaluationElementRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EvaluationElementRating.EvaluationElementRatingLevel (optional)

UDM primitive/simple type String

EvaluationElementTitle #

dictionary-only type

The name or title of the evaluation element.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 255
Used By (1)
  • EvaluationElement.EvaluationElementTitle (required)

UDM primitive/simple type String

EvaluationLateReason #

dictionary-only type

Refers to additional information for delay in doing the evaluation. This is a free flow text.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.EvaluationLateReason (optional)

Canonical UDM resource Class

EvaluationObjective #

/ed-fi/evaluationObjectives

A sub-component of an evaluation, a specific educator objective or domain of performance that is being evaluated.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationObjective edfi.EvaluationObjectiveRatingLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Evaluation
EvaluationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The evaluation applied for the person. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationObjectiveTitle
EvaluationObjectiveTitle
String
VARCHAR(50)
required
identity
ODS/API identity
The name or title of the evaluation objective. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationObjectiveDescription
EvaluationObjectiveDescription
String
VARCHAR(255)
optional The long description of the evaluation objective. max length 255 characters; optional Ed-Fi field source pass-through
SortOrder
SortOrder
Number
INT
optional The sort order of the evaluation objective. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
MinNumericRating
MinNumericRating
Number
DECIMAL(6, 3)
optional The minimum summary numerical rating or score for the evaluation objective. If omitted, assumed to be 0.0. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
MaxNumericRating
MaxNumericRating
Number
DECIMAL(6, 3)
optional The maximum summary numerical rating or score for the evaluation objective. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
EvaluationType
EvaluationTypeDescriptor
Reference
DescriptorProperty
Allowed values: EvaluationTypeDescriptor (10 Ed-Fi seed values)
optional The type of the evaluation objective. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ObjectiveRatingLevel
RatingLevels
Reference
CommonProperty
optional collection The descriptive level(s) of ratings (cut scores) for the evaluation objective. object reference; optional collection Ed-Fi field source pass-through
Used By (3)
  • EvaluationElement.EvaluationObjective (required)
  • EvaluationObjectiveRating.EvaluationObjective (required)
  • Goal.EvaluationObjective (optional)

Canonical UDM resource Class

EvaluationObjectiveRating #

/ed-fi/evaluationObjectiveRatings

The rating for the component evaluation objective for an individual educator.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationObjectiveRating edfi.EvaluationObjectiveRatingResult
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EvaluationRating
EvaluationRatingReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the person's evaluation rating. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationObjective
EvaluationObjectiveReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The evaluation objective applied for the person. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ObjectiveRatingResult
ObjectiveRatingResults
Reference
CommonProperty
optional collection The numerical summary rating or score for the evaluation objective. object reference; optional collection Ed-Fi field source pass-through
ObjectiveRatingLevel
ObjectiveRatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: ObjectiveRatingLevelDescriptor (9 Ed-Fi seed values)
optional The rating level achieved based upon the rating or score. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Comments
Comments
String
VARCHAR(1024)
optional Any comments about the performance evaluation to be captured. max length 1024 characters; optional Ed-Fi field source pass-through
Used By (1)
  • EvaluationElementRating.EvaluationObjectiveRating (required)

UDM primitive/simple type String

EvaluationObjectiveTitle #

dictionary-only type

The name or title of the evaluation objective.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 50
Used By (1)
  • EvaluationObjective.EvaluationObjectiveTitle (required)

Descriptor catalog Descriptor

EvaluationPeriod #

/ed-fi/descriptors/evaluationPeriodDescriptors

The period for the evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationPeriodDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EvaluationPeriodDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
BOY BOY Beginning of year uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
EOY EOY End of Year uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fall Fall Fall uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MOY MOY Mid-Year uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Q1 Q1 Q1 uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Q2 Q2 Q2 uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Q3 Q3 Q3 uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Q4 Q4 Q4 uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Spring Spring Spring uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Summer Summer Summer uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Winter Winter Winter uri://ed-fi.org/EvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • PerformanceEvaluation.EvaluationPeriod (required)

Canonical UDM resource Class

EvaluationRating #

/ed-fi/evaluationRatings

The summary weighting for the evaluation instrument for an individual educator.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationRating edfi.EvaluationRatingResult edfi.EvaluationRatingReviewer edfi.EvaluationRatingReviewerReceivedTraining
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PerformanceEvaluationRating
PerformanceEvaluationRatingReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the person's performance evaluation rating. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Evaluation
EvaluationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The evaluation applied for the person. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationDate
EvaluationDate
DateTime
TIMESTAMP
required
identity
ODS/API identity
The date for the person's evaluation. time value in ISO 8601 local-time form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Reviewer
Reviewers
Reference
CommonProperty
optional collection The person(s) that conducted the performance evaluation. object reference; optional collection Ed-Fi field source pass-through
EvaluationRatingResult
Results
Reference
CommonProperty
optional collection The numerical summary rating or score for the evaluation. object reference; optional collection Ed-Fi field source pass-through
EvaluationRatingLevel
EvaluationRatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: EvaluationRatingLevelDescriptor (9 Ed-Fi seed values)
optional The rating level achieved based upon the rating or score. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Section
SectionReference
Reference
DomainEntityProperty
optional The section associated with a classroom evaluation. object reference; optional Ed-Fi field source pass-through
EvaluationRatingStatus
EvaluationRatingStatusDescriptor
Reference
DescriptorProperty
Allowed values: EvaluationRatingStatusDescriptor (0 Ed-Fi seed values)
optional The status of the performance evaluation. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Comments
Comments
String
VARCHAR(1024)
optional Any comments about the evaluation to be captured. max length 1024 characters; optional Ed-Fi field source pass-through
ActualDuration
ActualDuration
Number
INT
optional The actual or estimated number of clock minutes during which the evaluation was conducted. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (1)
  • EvaluationObjectiveRating.EvaluationRating (required)

Descriptor catalog Descriptor

EvaluationRatingLevel #

/ed-fi/descriptors/evaluationRatingLevelDescriptors

The rating level for evaluations.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationRatingLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EvaluationRatingLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accomplished Accomplished Accomplished uri://ed-fi.org/EvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Demonstrated Demonstrated Demonstrated uri://ed-fi.org/EvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Developing Developing Developing uri://ed-fi.org/EvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Effective Effective Effective uri://ed-fi.org/EvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Highly Effective Highly Effective Highly Effective uri://ed-fi.org/EvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ineffective Ineffective Ineffective uri://ed-fi.org/EvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minimally Effective Minimally Effective Minimally Effective uri://ed-fi.org/EvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Demonstrated Not Demonstrated Not Demonstrated uri://ed-fi.org/EvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Skilled Skilled Skilled uri://ed-fi.org/EvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • RatingLevel.EvaluationRatingLevel (required)
  • EvaluationRating.EvaluationRatingLevel (optional)

Descriptor catalog Descriptor

EvaluationRatingStatus #

/ed-fi/descriptors/evaluationRatingStatusDescriptors

Represents the status of an evaluation rating.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationRatingStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/EvaluationRatingStatusDescriptor.xml ยท status missing_404
Used By (1)
  • EvaluationRating.EvaluationRatingStatus (optional)

Canonical UDM resource Class

EvaluationRubricDimension #

/ed-fi/evaluationRubricDimensions

The cells of a rubric, consisting of a qualitative description, definition, or exemplar with the associated rubric evaluation level.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationRubricDimension
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ProgramEvaluationElement
ProgramEvaluationElementReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program evaluation element associated with the evaluation rubric dimension. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationRubricRating
EvaluationRubricRating
Number
INT
required
identity
ODS/API identity
The numeric rating associated with the evaluation rubric dimension. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationCriterionDescription
EvaluationCriterionDescription
String
VARCHAR(1024)
required The evaluation criterion description for the evaluation rubric dimension. max length 1024 characters; required Ed-Fi field source pass-through
EvaluationRubricRatingLevel
EvaluationRubricRatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed EvaluationRubricRatingLevelDescriptor values; no matching handbook descriptor entry found.
optional The rating level achieved for the evaluation rubric dimension. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
RubricDimensionSortOrder
RubricDimensionSortOrder
Number
INT
optional The sort order of the rubric dimension. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through

UDM primitive/simple type Number

EvaluationRubricRating #

dictionary-only type

The numeric rating associated with the evaluation rubric dimension.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type String

EvaluationTitle #

dictionary-only type

The name or title of the evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 50
Used By (2)
  • Evaluation.EvaluationTitle (required)
  • PerformanceEvaluation.PerformanceEvaluationTitle (required)

Descriptor catalog Descriptor

EvaluationType #

/ed-fi/descriptors/evaluationTypeDescriptors

The type of the evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.EvaluationTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (10 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EvaluationTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Formal Eval Formal Eval Formal evaluation uri://ed-fi.org/EvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Formal Obs Formal Obs Formal Observation uri://ed-fi.org/EvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Informal Obs Informal Obs Informal Observation uri://ed-fi.org/EvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Self Eval Self Eval Formal evaluation self-rating uri://ed-fi.org/EvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Self Formal Obs Self Formal Obs Formal Observation self-rating uri://ed-fi.org/EvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Self Informal Obs Self Informal Obs Informal Observation self-rating uri://ed-fi.org/EvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Growth Student Growth Student Growth Measures uri://ed-fi.org/EvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Survey Student Survey StudentSurvey uri://ed-fi.org/EvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Work Student Work Student Work uri://ed-fi.org/EvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Walkthrough Walkthrough Walkthrough uri://ed-fi.org/EvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • Evaluation.EvaluationType (optional)
  • EvaluationElement.EvaluationType (optional)
  • EvaluationObjective.EvaluationType (optional)

Descriptor catalog Descriptor

EventCircumstance #

/ed-fi/descriptors/eventCircumstanceDescriptors

An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.EventCircumstanceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (32 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EventCircumstanceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Administration or system failure Administration or system failure Administration or system failure uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Catastrophic illness or accident Catastrophic illness or accident Catastrophic illness or accident uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cheating Cheating Cheating uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chronic absences Chronic absences Chronic absences uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cross-enrolled Cross-enrolled Cross-enrolled uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Earlier truancy Earlier truancy Earlier truancy uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fire alarm Fire alarm Fire alarm uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Foreign exchange student Foreign exchange student Foreign exchange student uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Home schooled for assessed subjects Home schooled for assessed subjects Home schooled for assessed subjects uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Homebound Homebound Homebound uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Incarcerated at adult facility Incarcerated at adult facility Incarcerated at adult facility uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Left testing Left testing Left testing uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Long-term suspension - non-special education Long-term suspension - non-special education Long-term suspension - non-special education uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-special ed student used calculator Non-special education student used calculator on non-calculator items Non-special education student used calculator on non-calculator items uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Only for writing Only for writing Only for writing uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other reason for ineligibility Other reason for ineligibility Other reason for ineligibility uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other reason for nonparticipation Other reason for nonparticipation Other reason for nonparticipation uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent refusal Parent refusal Parent refusal uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Psychological factors of emotional trauma Psychological factors of emotional trauma Psychological factors of emotional trauma uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reading passage read to student (IEP) Reading passage read to student (IEP) Reading passage read to student (IEP) uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Short-term suspension - non-special education Short-term suspension - non-special education Short-term suspension - non-special education uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special detention center Special detention center Special detention center uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special treatment center Special treatment center Special treatment center uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student not showing adequate effort Student not showing adequate effort Student not showing adequate effort uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student refusal Student refusal Student refusal uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student took this grade level assessment last year Student took this grade level assessment last year Student took this grade level assessment last year uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student used math journal (non-IEP) Student used math journal (non-IEP) Student used math journal (non-IEP) uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suspension - special education Suspension - special education Suspension - special education uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher cheating or mis-admin Teacher cheating or mis-admin Teacher cheating or mis-admin uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Truancy - no paperwork filed Truancy - no paperwork filed Truancy - no paperwork filed uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Truancy - paperwork filed Truancy - paperwork filed Truancy - paperwork filed uri://ed-fi.org/EventCircumstanceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentAssessment.EventCircumstance (optional)

Descriptor catalog Descriptor

EventCompliance #

/ed-fi/descriptors/eventComplianceDescriptors

The type of compliance represented by this event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.EventComplianceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EventComplianceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
IDEAEligibilityDetermination IDEAEligibilityDetermination Compliance with IDEA requirements for determining special education eligibility. uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEAExtendedSchoolYear IDEAExtendedSchoolYear Compliance with IDEA requirements related to ESY determination and services. uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEAIEPAnnualReview IDEAIEPAnnualReview Compliance with IDEA requirements for conducting an annual IEP review uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEAIEPDevelopment IDEAIEPDevelopment Compliance with IDEA requirements for developing an Individualized Education Program. uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEAIEPImplementation IDEAIEPImplementation Compliance with IDEA requirements to implement an IEP as written. uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEAInitialEvaluationTimeline IDEAInitialEvaluationTimeline Compliance with IDEA statutory timelines for conducting an initial evaluation. uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEAPlacementAndLRE IDEAPlacementAndLRE Compliance with IDEA placement requirements, including Least Restrictive Environment determinations. uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEAProceduralSafeguards IDEAProceduralSafeguards Compliance with IDEA procedural safeguard requirements (notice, consent, participation). uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEAReevaluationTimeline IDEAReevaluationTimeline Compliance with IDEA timelines for reevaluations. uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEASecondaryTransition IDEASecondaryTransition Compliance with IDEA requirements for secondary transition planning and services. uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEAServicesProvision IDEAServicesProvision Compliance with IDEA requirements for providing special education and related services. uri://ed-fi.org/EventComplianceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • IDEAEvent.EventCompliance (optional)

UDM primitive/simple type Date

EventDate #

dictionary-only type

Date for this attendance event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • AttendanceEvent.EventDate (identity)

UDM primitive/simple type Date

EventDate #

dictionary-only type

The date of the application event, or begin date if an interval. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ApplicationEvent.EventDate (identity)

UDM primitive/simple type Date

EventDate #

dictionary-only type

The date when the open staff position event occurred.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • OpenStaffPositionEvent.EventDate (identity)

UDM primitive/simple type Date

EventDate #

dictionary-only type

The date the event occurred or was recorded.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PostSecondaryEvent.EventDate (identity)

UDM primitive/simple type Date

EventDate #

dictionary-only type

The date of the event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • RecruitmentEvent.EventDate (identity)

UDM primitive/simple type Date

EventDate #

dictionary-only type

Month, day, and year of the restraint event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • RestraintEvent.EventDate (required)

UDM primitive/simple type Date

EventDate #

dictionary-only type

The date the section attendance taken event was submitted, which could be a different date than the instructional day.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • SectionAttendanceTakenEvent.EventDate (required)

UDM primitive/simple type Date

EventDate #

dictionary-only type

Date for this leave event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffAbsenceEvent.EventDate (identity)

UDM primitive/simple type String

EventDescription #

dictionary-only type

The long description of the event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • RecruitmentEvent.EventDescription (optional)

UDM primitive/simple type Number

EventDuration #

dictionary-only type

The amount of time as a decimal fraction for the event as recognized by the school: 1 day = 1.0, 1/2 day = 0.5, 1/3 day = 0.33. The value can have up to two decimal places with a min of 0.00 and max of 1.00.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 3
  • decimal places: 2
  • min value: 0
  • max value: 1
Used By (1)
  • AttendanceEvent.EventDuration (optional)

UDM primitive/simple type Date

EventEndDate #

dictionary-only type

The end date of the event, if an interval. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ApplicationEvent.EventEndDate (optional)

UDM primitive/simple type String

EventLocation #

dictionary-only type

The location of the event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • RecruitmentEvent.EventLocation (optional)

Descriptor catalog Descriptor

EventReason #

/ed-fi/descriptors/eventReasonDescriptors

The reason why the IDEA event occurred.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.EventReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for EventReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
AnnualIEPReview AnnualIEPReview A required annual IEP review occurred. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ComplianceDocumentation ComplianceDocumentation The event exists to document IDEA compliance or justification. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
EligibilityDetermined EligibilityDetermined A determination of eligibility was made. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
EvaluationCompleted EvaluationCompleted The evaluation process was completed. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IEPAmended IEPAmended The IEP was amended without a full rewrite. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IEPApproved IEPApproved The IEP was finalized and approved uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
InitialEvaluationRequired InitialEvaluationRequired An initial special education evaluation was required for the student. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
InitialIEPDeveloped InitialIEPDeveloped The studentโ€™s first IEP was developed following eligibility. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LeastRestrictiveEnvironmentReview LeastRestrictiveEnvironmentReview An LRE determination or review was conducted. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ParentalConsentReceived ParentalConsentReceived Parent or guardian consent was received to proceed with evaluation or services. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PlacementChange PlacementChange The studentโ€™s educational placement changed. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SecondaryTransitionPlanning SecondaryTransitionPlanning Postsecondary transition planning activities occurred. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ServiceInterruption ServiceInterruption Services were interrupted or not delivered as prescribed. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ServicesInitiated ServicesInitiated Special education or related services began. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ServicesModified ServicesModified Services were changed in type, frequency, or duration. uri://ed-fi.org/EventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • IDEAEvent.EventReason (optional)

UDM primitive/simple type String

EventTitle #

dictionary-only type

The title of the event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 50
Used By (1)
  • RecruitmentEvent.EventTitle (required)

UDM primitive/simple type Date

ExitWithdrawDate #

dictionary-only type

The recorded exit or withdraw date for the student. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolAssociation.ExitWithdrawDate (optional)

Descriptor catalog Descriptor

ExitWithdrawType #

/ed-fi/descriptors/exitWithdrawTypeDescriptors

This descriptor defines the circumstances under which the student exited from membership in an educational institution.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation, School Calendar, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ExitWithdrawTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ExitWithdrawTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Completed Completed Completed uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Died or is permanently incapacitated Died or is permanently incapacitated Died or is permanently incapacitated uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dropout Dropout Dropout uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
End of school year End of school year End of school year uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Enrolled in a high school diploma program Enrolled in a high school diploma program Enrolled in a high school diploma program uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expelled Expelled Expelled uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graduated Graduated Graduated uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Incarcerated Incarcerated Incarcerated uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Invalid enrollment Invalid enrollment Invalid enrollment uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Involuntarily Removed Involuntarily Removed Involuntarily Removed uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No show No show No show uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reached maximum age Reached maximum age Reached maximum age uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transferred Transferred Transferred uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Withdrawn Withdrawn Withdrawn uri://ed-fi.org/ExitWithdrawTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSchoolAssociation.ExitWithdrawType (optional)

UDM primitive/simple type Date

ExpirationDate #

dictionary-only type

The month, day, and year on which an active credential held by a person will expire. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Credential.ExpirationDate (optional)

UDM primitive/simple type String

ExternalEvaluator #

dictionary-only type

The external person(s) - not staff - that conducted the evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 150
Used By (1)
  • StudentProgramEvaluation.ExternalEvaluator (optional collection)

Descriptor catalog Descriptor

FederalLocaleCode #

/ed-fi/descriptors/federalLocaleCodeDescriptors

The federal locale code applicable to an education organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.FederalLocaleCodeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for FederalLocaleCodeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
City Territory inside an urbanized area and inside a principal city. Territory inside an urbanized area and inside a principal city. uri://ed-fi.org/FederalLocaleCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rural Census-defined rural territory. Census-defined rural territory. uri://ed-fi.org/FederalLocaleCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suburb Territory outside a principal city and inside an urbanized area. Territory outside a principal city and inside an urbanized area. uri://ed-fi.org/FederalLocaleCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Town Territory inside an urban cluster. Territory inside an urban cluster. uri://ed-fi.org/FederalLocaleCodeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (4)
  • LocalEducationAgency.FederalLocaleCode (optional)
  • PostSecondaryInstitution.FederalLocaleCode (optional)
  • School.FederalLocaleCode (optional)
  • StateEducationAgency.FederalLocaleCode (optional)

UDM primitive/simple type String

Feedback #

dictionary-only type

Any feedback to be captured.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 2048
Used By (1)
  • EvaluationElementRating.Feedback (optional)

Canonical UDM association Association Class

FeederSchoolAssociation #

/ed-fi/feederSchoolAssociations

The association from feeder school to the receiving school.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.FeederSchoolAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
FeederSchool
FeederSchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the feeder school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the receiving school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year of the first day of the feeder school association. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year of the last day of the feeder school association. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
FeederRelationshipDescription
FeederRelationshipDescription
String
VARCHAR(1024)
optional Describes the relationship from the feeder school to the receiving school, for example by program emphasis, such as special education, language immersion, science, or performing art. max length 1024 characters; optional Ed-Fi field source pass-through

Canonical UDM resource Class

FieldworkExperience #

/ed-fi/fieldworkExperiences

The information regarding a post-secondary instructional course in a particular field of study that typically involves a prescribed number, instruction periods, or meetings for enrolled students.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.FieldworkExperience edfi.FieldworkExperienceCoteaching
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
FieldworkIdentifier
FieldworkIdentifier
String
VARCHAR(64)
required
identity
ODS/API identity
The unique identifier for the fieldwork experience. max length 64 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student associated with the fieldwork experience. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
optional The school the fieldwork experience is conducted in. object reference; optional Ed-Fi field source pass-through
EducatorPreparationProgram
EducatorPreparationProgramReference
Reference
DomainEntityProperty
optional The educator preparation program the fieldwork experience is associated with. object reference; optional Ed-Fi field source pass-through
FieldworkType
FieldworkTypeDescriptor
Reference
DescriptorProperty
Allowed values: FieldworkTypeDescriptor (5 Ed-Fi seed values)
required The type of fieldwork being executed by a staff. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
HoursCompleted
HoursCompleted
Number
DECIMAL(5, 2)
optional The number of hours completed during the fieldwork experience. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year on which the staff first starts fieldwork. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year on which the staff ends fieldwork. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Coteaching
Coteaching
Reference
CommonProperty
optional The act of two teachers (teacher candidate and cooperating teacher) working together with groups of students; sharing the planning, organization, delivery, and assessment of instruction, as well as the physical space. object reference; optional Ed-Fi field source pass-through
Used By (1)
  • FieldworkExperienceSectionAssociation.FieldworkExperience (required)

Canonical UDM association Association Class

FieldworkExperienceSectionAssociation #

/ed-fi/fieldworkExperienceSectionAssociations

Associates field work experience with a section.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.FieldworkExperienceSectionAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
FieldworkExperience
FieldworkExperienceReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the field work experience of a person. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Section
SectionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The section the field work experience is associated with. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

UDM primitive/simple type String

FieldworkIdentifier #

dictionary-only type

The unique identifier for the fieldwork experience.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 64
Used By (1)
  • FieldworkExperience.FieldworkIdentifier (required)

Descriptor catalog Descriptor

FieldworkType #

/ed-fi/descriptors/fieldworkTypeDescriptors

The type of fieldwork being executed by a teacher candidate.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.FieldworkTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for FieldworkTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Clinical Experience Clinical Experience Clinical Experience uri://ed-fi.org/FieldworkTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Field Placement Field Placement Field Placement uri://ed-fi.org/FieldworkTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Internship Internship Internship uri://ed-fi.org/FieldworkTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/FieldworkTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Residential Program Residential Program Residential Program uri://ed-fi.org/FieldworkTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • FieldworkExperience.FieldworkType (required)

Canonical UDM resource Class

FinancialAid #

/ed-fi/financialAids

This entity represents the financial aid a person is awarded.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.FinancialAid
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student receiving aid. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
The date the award was designated. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The date the award was removed. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
AidConditionDescription
AidConditionDescription
String
VARCHAR(1024)
optional The description of the condition under which the aid was given. max length 1024 characters; optional Ed-Fi field source pass-through
AidType
AidTypeDescriptor
Reference
DescriptorProperty
Allowed values: AidTypeDescriptor (24 Ed-Fi seed values)
required
identity
ODS/API identity
The classification of financial aid awarded to a person for the academic term/year. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AidAmount
AidAmount
Number
DECIMAL(19, 4)
optional The amount of financial aid awarded to a person for the term/year. numeric precision 19, scale 4; optional Ed-Fi field source pass-through
PellGrantRecipient
PellGrantRecipient
Boolean
BOOLEAN
optional Indicates a person who receives Pell Grant aid. boolean true/false; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

FinancialCollection #

/ed-fi/descriptors/financialCollectionDescriptors

The accounting period or grouping for which financial information is collected.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.FinancialCollectionDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for FinancialCollectionDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
0 to 30 days 0 to 30 days 0 to 30 days uri://ed-fi.org/FinancialCollectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
31 to 45 days 31 to 45 days 31 to 45 days uri://ed-fi.org/FinancialCollectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
46 to 60 days 46 to 60 days 46 to 60 days uri://ed-fi.org/FinancialCollectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
61 to 75 days 61 to 75 days 61 to 75 days uri://ed-fi.org/FinancialCollectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
76 to 90 days 76 to 90 days 76 to 90 days uri://ed-fi.org/FinancialCollectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (5)
  • LocalActual.FinancialCollection (optional)
  • LocalBudget.FinancialCollection (optional)
  • LocalContractedStaff.FinancialCollection (optional)
  • LocalEncumbrance.FinancialCollection (optional)
  • LocalPayroll.FinancialCollection (optional)

UDM primitive/simple type Boolean

Fingerprint #

dictionary-only type

Indicates that a person has or has not completed a fingerprint.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • BackgroundCheck.Fingerprint (optional)

UDM primitive/simple type Date

FirstContactDate #

dictionary-only type

Date applicant was first contacted after submitting application.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Application.FirstContactDate (optional)

UDM primitive/simple type Boolean

FirstGenerationStudent #

dictionary-only type

Indicator of whether individual is a first generation college student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ApplicantProfile.FirstGenerationStudent (optional)

UDM primitive/simple type Boolean

FirstGenerationStudent #

dictionary-only type

Indicates whether an individual is a first-generation college student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Candidate.FirstGenerationStudent (optional)

UDM primitive/simple type String

FirstName #

dictionary-only type

A name given to an individual at birth, baptism, or during another naming ceremony, or through legal change.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 75
Used By (7)
  • AdministrationPointOfContact.FirstName (required)
  • DisciplineIncidentExternalParticipant.FirstName (required)
  • OtherName.FirstName (required)
  • Provider.FirstName (required)
  • Reviewer.FirstName (required)
  • Name.FirstName (required)
  • Name.PreferredFirstName (optional)

UDM primitive/simple type Number

FiscalYear #

dictionary-only type

The fiscal year for which the federal funds are received.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Number

Frequency #

dictionary-only type

The number of times the prescribed service is to be provided within the specified duration period.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 9
  • decimal places: 2
Used By (1)
  • StudentIEPServicePrescription.Frequency (required)

Descriptor catalog Descriptor

FrequencyInterval #

/ed-fi/descriptors/frequencyIntervalDescriptors

The frequency period for the prescribed service. Examples include: Session, Week, Month.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.FrequencyIntervalDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for FrequencyIntervalDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Day Day Day uri://ed-fi.org/FrequencyIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Month Month Month uri://ed-fi.org/FrequencyIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quarter Quarter Quarter uri://ed-fi.org/FrequencyIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Semester Semester Semester uri://ed-fi.org/FrequencyIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Week Week Week uri://ed-fi.org/FrequencyIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Year Year Year uri://ed-fi.org/FrequencyIntervalDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentIEPServicePrescription.FrequencyInterval (required)

UDM primitive/simple type String

FullName #

dictionary-only type

Full name of a person.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 80
Used By (1)
  • SurveyResponse.FullName (optional)

UDM primitive/simple type Number

FullTimeEquivalency #

dictionary-only type

The full-time equivalent ratio.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 5
  • decimal places: 4
  • min value: 0
Used By (4)
  • StaffEducationOrganizationAssignmentAssociation.FullTimeEquivalency (optional)
  • StaffEducationOrganizationEmploymentAssociation.FullTimeEquivalency (optional)
  • StudentSchoolAssociation.FullTimeEquivalency (optional)
  • OpenStaffPosition.FullTimeEquivalency (optional)

Canonical UDM resource Class

FunctionDimension #

/ed-fi/functionDimensions

The NCES function accounting dimension representing an expenditure. The function describes the activity for which a service or material object is acquired. The functions of a school district are generally classified into five broad areas, including instruction, support services, operation of non-instructional services, facilities acquisition and construction, and debt service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.FunctionDimension edfi.FunctionDimensionReportingTag
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Code
Code
String
VARCHAR(16)
required
identity
ODS/API identity
The code representation of the account function dimension. max length 16 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for which the account function dimension is valid. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CodeName
CodeName
String
VARCHAR(100)
optional A description of the account function dimension. max length 100 characters; optional Ed-Fi field source pass-through
ReportingTag
ReportingTags
Reference
DescriptorProperty
Allowed values: governed ReportingTagsDescriptor values; no matching handbook descriptor entry found.
optional collection Optional tag for accountability reporting. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • ChartOfAccount.FunctionFunctionDimension (optional)

Canonical UDM resource Class

FundDimension #

/ed-fi/fundDimensions

The NCES fund accounting dimension. A fund is a fiscal and accounting entity with a self-balancing set of accounts recording cash and other financial resources, together with all related liabilities and residual equities or balances, and changes therein, which are segregated for the purpose of carrying on specific activities or attaining certain objectives in accordance with special regulations, restrictions, or limitations.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.FundDimension edfi.FundDimensionReportingTag
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Code
Code
String
VARCHAR(16)
required
identity
ODS/API identity
The code representation of the account fund dimension. max length 16 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for which the account fund dimension is valid. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CodeName
CodeName
String
VARCHAR(100)
optional A description of the account fund dimension. max length 100 characters; optional Ed-Fi field source pass-through
ReportingTag
ReportingTags
Reference
DescriptorProperty
Allowed values: governed ReportingTagsDescriptor values; no matching handbook descriptor entry found.
optional collection Optional tag for accountability reporting. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • ChartOfAccount.FundFundDimension (optional)

Descriptor catalog Descriptor

FundingSource #

/ed-fi/descriptors/fundingSourceDescriptors

The entity or organization providing financial support for a specific activity, project, or position.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.FundingSourceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for FundingSourceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
District District funds. Funding source is the district. uri://ed-fi.org/FundingSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Federal grant Funding source is a federal authority. uri://ed-fi.org/FundingSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other source provides funding. Other source provides funding. uri://ed-fi.org/FundingSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State grant Funding source is the state. uri://ed-fi.org/FundingSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • OpenStaffPosition.FundingSource (optional)

UDM primitive/simple type String

GenderIdentity #

dictionary-only type

The gender a person identifies themselves as.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (6)
  • ApplicantProfile.GenderIdentity (optional)
  • Candidate.GenderIdentity (optional)
  • Contact.GenderIdentity (optional)
  • RecruitmentEventAttendance.GenderIdentity (optional)
  • StaffDemographic.GenderIdentity (optional)
  • StudentDemographic.GenderIdentity (optional)

Canonical UDM association Association Class

GeneralStudentProgramAssociation #

/ed-fi/generalStudentProgramAssociations

This association base class represents the basic relationship between students and programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.GeneralStudentProgramAssociation edfi.GeneralStudentProgramAssociationProgramParticipationStatus
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student associated with the program. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Program
ProgramReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program associated with the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
The earliest date the student is involved with the program. Typically, this is the date the student becomes eligible for the program. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year on which the student exited the program or stopped receiving services. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ReasonExited
ReasonExitedDescriptor
Reference
DescriptorProperty
Allowed values: ReasonExitedDescriptor (13 Ed-Fi seed values)
optional The reason the student left the program within a school or district. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization where the student is participating in or receiving the program services. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ServedOutsideOfRegularSession
ServedOutsideOfRegularSession
Boolean
BOOLEAN
optional Indicates whether the student received services during the summer session or between sessions. boolean true/false; optional Ed-Fi field source pass-through
ProgramParticipationStatus
ProgramParticipationStatuses
Reference
CommonProperty
optional collection The status of the student's program participation. object reference; optional collection Ed-Fi field source pass-through
Used By (1)
  • StudentCompetencyObjectiveSectionOrProgramChoice.GeneralStudentProgramAssociation (optional collection)

UDM primitive/simple type String

GenerationCodeSuffix #

dictionary-only type

An appendage, if any, used to denote an individual's generation in his family (e.g., Jr., Sr., III).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 10
Used By (2)
  • OtherName.GenerationCodeSuffix (optional)
  • Name.GenerationCodeSuffix (optional)

Canonical UDM resource Class

Goal #

/ed-fi/goals

The goal for performance improvement assigned to an educator associated with an evaluation element.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.Goal
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (12)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Person
PersonReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The person to whom the goal is assigned to. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GoalTitle
GoalTitle
String
VARCHAR(255)
required
identity
ODS/API identity
The name or title of the goal. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AssignmentDate
AssignmentDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year on which the goal was assigned. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationElement
EvaluationElementReference
Reference
DomainEntityProperty
optional The evaluation element associated with the goal. object reference; optional Ed-Fi field source pass-through
EvaluationObjective
EvaluationObjectiveReference
Reference
DomainEntityProperty
optional The evaluation objective associated with the goal. object reference; optional Ed-Fi field source pass-through
GoalType
GoalTypeDescriptor
Reference
DescriptorProperty
Allowed values: GoalTypeDescriptor (9 Ed-Fi seed values)
optional The type of the goal. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GoalDescription
GoalDescription
String
VARCHAR(1024)
optional The description of the goal. max length 1024 characters; optional Ed-Fi field source pass-through
DueDate
DueDate
Date
DATE
optional The month, day, and year on which the goal is due or expected to be completed. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
CompletedIndicator
CompletedIndicator
Boolean
BOOLEAN
optional Indicator that the goal was completed. boolean true/false; optional Ed-Fi field source pass-through
CompletedDate
CompletedDate
Date
DATE
optional The month, day, and year on which the goal was completed. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Comments
Comments
String
VARCHAR(1024)
optional Any comments about the goal or its completion to be captured. max length 1024 characters; optional Ed-Fi field source pass-through
ParentGoal
ParentGoalReference
Reference
DomainEntityProperty
optional The parent goal with which this goal is associated (for hierarchical goals or action steps). object reference; optional Ed-Fi field source pass-through
Used By (1)
  • Goal.ParentGoal (optional)

UDM primitive/simple type String

GoalTitle #

dictionary-only type

The title or description of the goal.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 255
Used By (1)
  • Goal.GoalTitle (required)

Descriptor catalog Descriptor

GoalType #

/ed-fi/descriptors/goalTypeDescriptors

The type of the goal.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.GoalTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for GoalTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Assessment Assessment Assessment uri://ed-fi.org/GoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Classroom Environment Classroom Environment Classroom Environment uri://ed-fi.org/GoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Content Content Content uri://ed-fi.org/GoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Instruction Instruction Instruction uri://ed-fi.org/GoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Leadership Leadership Leadership uri://ed-fi.org/GoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Planning and Preparation Planning and Preparation Planning and Preparation uri://ed-fi.org/GoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Professional Responsibilities Professional Responsibilities Professional Responsibilities uri://ed-fi.org/GoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Engagement Student Engagement Student Engagement uri://ed-fi.org/GoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Time Management Time Management Time Management uri://ed-fi.org/GoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Goal.GoalType (optional)

UDM primitive/simple type Number

GPA #

dictionary-only type

Grade Point Average computed for a grading period or cumulatively.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 18
  • decimal places: 4
  • min value: 0
Used By (2)
  • GradePointAverage.GradePointAverageValue (required)
  • GradePointAverage.MaxGradePointAverageValue (optional)

Canonical UDM resource Class

Grade #

/ed-fi/grades

This educational entity represents an overall score or assessment tied to a course over a period of time (i.e., the grading period). Student grades are usually a compilation of marks and other scores.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.Grade edfi.GradeLearningStandardGrade
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (11)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LetterGradeEarned
LetterGradeEarned
String
VARCHAR(20)
optional A final or interim (grading period) indicator of student performance in a class as submitted by the instructor. max length 20 characters; optional Ed-Fi field source pass-through
NumericGradeEarned
NumericGradeEarned
Number
DECIMAL(9, 2)
optional A final or interim (grading period) indicator of student performance in a class as submitted by the instructor. numeric precision 9, scale 2; optional Ed-Fi field source pass-through
DiagnosticStatement
DiagnosticStatement
String
VARCHAR(1024)
optional A statement provided by the teacher that provides information in addition to the grade or assessment score. max length 1024 characters; optional Ed-Fi field source pass-through
GradeType
GradeTypeDescriptor
Reference
DescriptorProperty
Allowed values: GradeTypeDescriptor (7 Ed-Fi seed values)
required
identity
ODS/API identity
The type of grade reported (e.g., exam, final, grading period). object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PerformanceBaseConversion
PerformanceBaseConversionDescriptor
Reference
DescriptorProperty
Allowed values: PerformanceBaseConversionDescriptor (7 Ed-Fi seed values)
optional A conversion of the level to a standard set of performance levels. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
StudentSectionAssociation
StudentSectionAssociationReference
Reference
AssociationProperty
required
identity
ODS/API identity
Relates the student and section associated with the grade. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GradingPeriod
GradingPeriodReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Identifies the grading period for the grade. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LearningStandardGrade
LearningStandardGrades
Reference
CommonProperty
optional collection A collection of learning standards associated with the grade. object reference; optional collection Ed-Fi field source pass-through
CurrentGradeIndicator
CurrentGradeIndicator
Boolean
BOOLEAN
optional An indicator that the posted grade is an interim grade for the grading period and not the final grade. boolean true/false; optional Ed-Fi field source pass-through
CurrentGradeAsOfDate
CurrentGradeAsOfDate
Date
DATE
optional As-Of date for a grade posted as the current grade. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
GradeEarnedDescription
GradeEarnedDescription
String
VARCHAR(64)
optional A description of the grade earned by the learner. max length 64 characters; optional Ed-Fi field source pass-through
Used By (1)
  • ReportCard.Grade (optional collection)

Canonical UDM resource Class

GradebookEntry #

/ed-fi/gradebookEntries

This entity represents an assignment, homework, or classroom assessment to be recorded in a gradebook.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.GradebookEntry edfi.GradebookEntryLearningStandard
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (13)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
GradebookEntryIdentifier
GradebookEntryIdentifier
String
VARCHAR(60)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to a gradebook entry by the source system. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required
identity
ODS/API identity
Namespace URI for the source of the gradebook entry. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SourceSectionIdentifier
SourceSectionIdentifier
String
VARCHAR(255)
required The local identifier assigned to a section. max length 255 characters; required Ed-Fi field source pass-through
Section
SectionReference
Reference
DomainEntityProperty
optional The section associated with the gradebook entry. object reference; optional Ed-Fi field source pass-through
DateAssigned
DateAssigned
Date
DATE
required The date the assignment, homework, or assessment was assigned or executed. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
Title
Title
String
VARCHAR(100)
required The name or title of the activity to be recorded in the gradebook entry. max length 100 characters; required Ed-Fi field source pass-through
Description
Description
String
VARCHAR(1024)
optional A description of the assignment, homework, or classroom assessment. max length 1024 characters; optional Ed-Fi field source pass-through
DueDate
DueDate
Date
DATE
optional The date the assignment, homework, or assessment is due. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
DueTime
DueTime
Time
TIME
optional The time the assignment, homework, or assessment is due. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
GradebookEntryType
GradebookEntryTypeDescriptor
Reference
DescriptorProperty
Allowed values: GradebookEntryTypeDescriptor (8 Ed-Fi seed values)
optional The type of the gradebook entry. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MaxPoints
MaxPoints
Number
DECIMAL(9, 2)
optional The maximum number of points that can be earned for the submission. numeric precision 9, scale 2; optional Ed-Fi field source pass-through
GradingPeriod
GradingPeriodReference
Reference
DomainEntityProperty
optional Identifies the grading period for the gradebook entry. object reference; optional Ed-Fi field source pass-through
LearningStandard
LearningStandards
Reference
DomainEntityProperty
optional collection LearningStandard(s) associated with the gradebook entry. object reference; optional collection Ed-Fi field source pass-through
Used By (1)
  • StudentGradebookEntry.GradebookEntry (required)

UDM primitive/simple type String

GradebookEntryIdentifier #

dictionary-only type

A unique number or alphanumeric code assigned to a gradebook entry by the source system.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • GradebookEntry.GradebookEntryIdentifier (required)

Descriptor catalog Descriptor

GradebookEntryType #

/ed-fi/descriptors/gradebookEntryTypeDescriptors

The type of the gradebook entry; for example, homework, assignment, quiz, unit test, oral presentation, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.GradebookEntryTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for GradebookEntryTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Activity Activity Activity uri://ed-fi.org/GradebookEntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Assignment Assignment Assignment uri://ed-fi.org/GradebookEntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Classroom Assessment Classroom Assessment Classroom Assessment uri://ed-fi.org/GradebookEntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Homework Homework Homework uri://ed-fi.org/GradebookEntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lesson Lesson Lesson uri://ed-fi.org/GradebookEntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Oral Presentation Oral Presentation Oral Presentation uri://ed-fi.org/GradebookEntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quiz Quiz Quiz uri://ed-fi.org/GradebookEntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unit Test Unit Test Unit Test uri://ed-fi.org/GradebookEntryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • GradebookEntry.GradebookEntryType (optional)

UDM primitive/simple type String

GradeEarned #

dictionary-only type

A final or interim (grading period) indicator of student performance in a class as submitted by the instructor.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 20
Used By (6)
  • LearningStandardGrade.LetterGradeEarned (optional)
  • PartialCourseTranscriptAwards.LetterGradeEarned (optional)
  • PartialCourseTranscriptAwards.NumericGradeEarned (optional)
  • CourseTranscript.FinalLetterGradeEarned (optional)
  • Grade.LetterGradeEarned (optional)
  • StudentGradebookEntry.LetterGradeEarned (optional)

UDM primitive/simple type String

GradeEarnedDescription #

dictionary-only type

A description of the grade earned by the learner.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 64
Used By (1)
  • Grade.GradeEarnedDescription (optional)

Descriptor catalog Descriptor

GradeLevel #

/ed-fi/descriptors/gradeLevelDescriptors

This descriptor defines the set of grade levels.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Assessment Registration, Bell Schedule, Credential, Discipline, Education Organization, Educator Preparation Program, Enrollment, Graduation, Intervention, Performance Evaluation, Recruiting and Staffing, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.GradeLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (35 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for GradeLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adult Education DEPRECATED: Adult Education DEPRECATED: Adult Education uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Doctoral Program Doctoral Program Doctoral Program uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Education DEPRECATED: Early Education DEPRECATED: Early Education uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eighth grade Eighth grade Eighth grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eleventh grade Eleventh grade Eleventh grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fifth grade Fifth grade Fifth grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First grade First grade First grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fourth grade Fourth grade Fourth grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Freshman Freshman Freshman uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grade 13 Grade 13 Grade 13 uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Infant/toddler Infant/toddler Infant/toddler uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Junior Junior Junior uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kindergarten Kindergarten Kindergarten uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master's Program Master's Program Master's Program uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ninth grade Ninth grade Ninth grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No grade level DEPRECATED: No grade level DEPRECATED: No grade level uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Out of School Out of School Out of School uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Postbaccalaureate Postbaccalaureate Postbaccalaureate uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Postsecondary Postsecondary Postsecondary uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Prekindergarten Prekindergarten Prekindergarten uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Preschool Preschool Preschool uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Preschool/Prekindergarten DEPRECATED: Preschool/Prekindergarten DEPRECATED: Preschool/Prekindergarten uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Professional Certification Professional Certification Professional Certification uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second grade Second grade Second grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Senior Senior Senior uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Seventh grade Seventh grade Seventh grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sixth grade Sixth grade Sixth grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sophomore Sophomore Sophomore uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tenth grade Tenth grade Tenth grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Third grade Third grade Third grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transitional Kindergarten Transitional Kindergarten Transitional Kindergarten uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Twelfth grade Twelfth grade Twelfth grade uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Undergraduate Undergraduate Undergraduate uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ungraded Ungraded Ungraded uri://ed-fi.org/GradeLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (29)
  • StaffSchoolAssociation.GradeLevel (optional collection)
  • StudentSchoolAssociation.EntryGradeLevel (required)
  • StudentSchoolAssociation.NextYearGradeLevel (optional)
  • CreditsByCourse.WhenTakenGradeLevel (optional)
  • CurrentPosition.GradeLevel (optional collection)
  • EPPProgramDegree.GradeLevel (required)
  • InterventionEffectiveness.GradeLevel (required)
  • Assessment.AssessedGradeLevel (optional collection)
  • BellSchedule.GradeLevel (optional collection)
  • Calendar.GradeLevel (optional collection)
  • Certification.GradeLevel (optional collection)
  • CompetencyObjective.ObjectiveGradeLevel (required)
  • Course.OfferedGradeLevel (optional collection)
  • CourseOffering.OfferedGradeLevel (optional collection)
  • CourseTranscript.WhenTakenGradeLevel (optional)
  • Credential.GradeLevel (optional collection)
  • EducatorPreparationProgram.GradeLevel (optional collection)
  • Intervention.AppropriateGradeLevel (optional collection)
  • InterventionPrescription.AppropriateGradeLevel (optional collection)
  • InterventionStudy.AppropriateGradeLevel (optional collection)
  • LearningStandard.GradeLevel (required collection)
  • OpenStaffPosition.InstructionalGradeLevel (optional collection)
  • PerformanceEvaluation.GradeLevel (optional collection)
  • Section.OfferedGradeLevel (optional collection)
  • StudentAssessment.AssessedGradeLevel (optional)
  • StudentAssessment.WhenAssessedGradeLevel (optional)
  • StudentAssessmentRegistration.AssessmentGradeLevel (optional)
  • School.GradeLevel (required collection)
  • LearningResource.AppropriateGradeLevel (optional collection)

UDM common/composite Composite Part

GradePointAverage #

dictionary-only type

The grade point average for an individual computed as the grade points earned divided by the number of credits attempted.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
GradePointAverageType
GradePointAverageTypeDescriptor
Reference
DescriptorProperty
Allowed values: GradePointAverageTypeDescriptor (5 Ed-Fi seed values)
required
identity
ODS/API identity
The system used for calculating the grade point average for an individual. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
IsCumulative
IsCumulative
Boolean
BOOLEAN
optional Indicator of whether or not the Grade Point Average value is cumulative. boolean true/false; optional Ed-Fi field source pass-through
GradePointAverageValue
GradePointAverageValue
Number
DECIMAL(18, 4)
required The value of the grade points earned divided by the number of credits attempted. numeric precision 18, scale 4; required Ed-Fi field source pass-through
MaxGradePointAverageValue
MaxGradePointAverageValue
Number
DECIMAL(18, 4)
optional The maximum value for the grade point average. numeric precision 18, scale 4; optional Ed-Fi field source pass-through
Used By (3)
  • ApplicantProfile.GradePointAverage (optional collection)
  • ReportCard.GradePointAverage (optional collection)
  • StudentAcademicRecord.GradePointAverage (optional collection)

Descriptor catalog Descriptor

GradePointAverageType #

/ed-fi/descriptors/gradePointAverageTypeDescriptors

The system used for calculating the grade point average for an individual.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Graduation, Recruiting and Staffing, Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.GradePointAverageTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for GradePointAverageTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Overall Overall Overall uri://ed-fi.org/GradePointAverageTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pre-Program Pre-Program Pre-Program uri://ed-fi.org/GradePointAverageTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Program Program Program uri://ed-fi.org/GradePointAverageTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unweighted Unweighted Unweighted uri://ed-fi.org/GradePointAverageTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Weighted Weighted Weighted uri://ed-fi.org/GradePointAverageTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • GradePointAverage.GradePointAverageType (required)

Descriptor catalog Descriptor

GradeType #

/ed-fi/descriptors/gradeTypeDescriptors

The type of grade in a report card or transcript (e.g., Final, Exam, Grading Period).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.GradeTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for GradeTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Conduct Conduct Conduct uri://ed-fi.org/GradeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Exam Exam Exam uri://ed-fi.org/GradeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Final Final Final uri://ed-fi.org/GradeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grading Period Grading Period Grading Period uri://ed-fi.org/GradeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mid-Term Grade Mid-Term Grade Mid-Term Grade uri://ed-fi.org/GradeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Progress Report Progress Report Progress Report uri://ed-fi.org/GradeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Semester Semester Semester uri://ed-fi.org/GradeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Grade.GradeType (required)

Descriptor catalog Descriptor

GradingPeriod #

/ed-fi/descriptors/gradingPeriodDescriptors

This descriptor defines the state's name of the period for which grades are reported.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
School Calendar, Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.GradingPeriodDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (20 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for GradingPeriodDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
End of Year End of Year End of Year uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fifth Six Weeks Fifth Six Weeks Fifth Six Weeks uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First Nine Weeks First Nine Weeks First Nine Weeks uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First Semester First Semester First Semester uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First Six Weeks First Six Weeks First Six Weeks uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First Summer Session First Summer Session First Summer Session uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First Trimester First Trimester First Trimester uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fourth Nine Weeks Fourth Nine Weeks Fourth Nine Weeks uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fourth Six Weeks Fourth Six Weeks Fourth Six Weeks uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second Nine Weeks Second Nine Weeks Second Nine Weeks uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second Semester Second Semester Second Semester uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second Six Weeks Second Six Weeks Second Six Weeks uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second Summer Session Second Summer Session Second Summer Session uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second Trimester Second Trimester Second Trimester uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sixth Six Weeks Sixth Six Weeks Sixth Six Weeks uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Summer Semester Summer Semester Summer Semester uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Third Nine Weeks Third Nine Weeks Third Nine Weeks uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Third Six Weeks Third Six Weeks Third Six Weeks uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Third Summer Session Third Summer Session Third Summer Session uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Third Trimester Third Trimester Third Trimester uri://ed-fi.org/GradingPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • GradingPeriod.GradingPeriod (required)

Canonical UDM resource Class

GradingPeriod #

/ed-fi/gradingPeriods

This entity represents the time span for which grades are reported.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
School Calendar, Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.GradingPeriod
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Provide user information to lookup and link to an existing school record. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GradingPeriod
GradingPeriodDescriptor
Reference
DescriptorProperty
Allowed values: GradingPeriodDescriptor (20 Ed-Fi seed values)
required
identity
ODS/API identity
The state's name of the period for which grades are reported. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradingPeriodName
GradingPeriodName
String
VARCHAR(60)
required
identity
ODS/API identity
The school's descriptive name of the grading period. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PeriodSequence
PeriodSequence
Number
INT
optional The sequential order of this period relative to other periods. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The identifier for the grading period school year. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required Month, day, and year of the first day of the grading period. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
required Month, day, and year of the last day of the grading period. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
TotalInstructionalDays
TotalInstructionalDays
Number
INT
required Total days available for educational instruction during the grading period. integer range -2,147,483,648 to 2,147,483,647; required Ed-Fi field source pass-through
Used By (5)
  • Grade.GradingPeriod (required)
  • GradebookEntry.GradingPeriod (optional)
  • ReportCard.GradingPeriod (required)
  • Session.GradingPeriod (optional collection)
  • StudentCompetencyObjective.GradingPeriod (required)

UDM primitive/simple type String

GradingPeriodName #

dictionary-only type

The school's descriptive name of the grading period.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • GradingPeriod.GradingPeriodName (required)

Canonical UDM resource Class

GraduationPlan #

/ed-fi/graduationPlans

This entity is a plan outlining the required credits, credits by subject, credits by course, and other criteria required for graduation. A graduation plan may be one or more standard plans defined by an education organization and/or individual plans for some or all students.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation
Source
UDM Handbook entry
Physical SQL snippets
edfi.GraduationPlan edfi.GraduationPlanCreditsByCourse edfi.GraduationPlanCreditsByCourseCourse edfi.GraduationPlanCreditsByCreditCategory edfi.GraduationPlanCreditsBySubject edfi.GraduationPlanRequiredAssessment edfi.GraduationPlanRequiredAssessmentPerformanceLevel edfi.GraduationPlanRequiredAssessmentScore edfi.GraduationPlanRequiredCertification
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
GraduationPlanType
GraduationPlanTypeDescriptor
Reference
DescriptorProperty
Allowed values: GraduationPlanTypeDescriptor (5 Ed-Fi seed values)
required
identity
ODS/API identity
The type of academic plan the student is following for graduation. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
IndividualPlan
IndividualPlan
Boolean
BOOLEAN
optional An indicator of whether the graduation plan is tailored for an individual. boolean true/false; optional Ed-Fi field source pass-through
TotalRequiredCredits
TotalRequiredCredits
Reference
InlineCommonProperty
required The total number of credits required for graduation under this plan. object reference; required Ed-Fi field source pass-through
CreditsBySubject
CreditsBySubjects
Reference
CommonProperty
optional collection The total credits required in subject to graduate. Only those courses identified as a high school course requirement are eligible to meet subject credit requirements. object reference; optional collection Ed-Fi field source pass-through
CreditsByCourse
CreditsByCourses
Reference
CommonProperty
optional collection The total credits required for graduation by taking a specific course, or by taking one or more from a set of courses. object reference; optional collection Ed-Fi field source pass-through
CreditsByCreditCategory
CreditsByCreditCategories
Reference
CommonProperty
optional collection The total credits required for graduation based on the credit category. object reference; optional collection Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The reference to the education organization defining the plan. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GraduationSchoolYear
GraduationSchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The school year the student is expected to graduate. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
RequiredAssessment
RequiredAssessments
Reference
CommonProperty
optional collection The assessments and associated required score and performance level needed to satisfy graduation requirements. object reference; optional collection Ed-Fi field source pass-through
RequiredCertification
RequiredCertifications
Reference
CommonProperty
optional collection The title or reference to the certification(s) required for graduation. object reference; optional collection Ed-Fi field source pass-through
Used By (3)
  • StudentSchoolAssociation.GraduationPlan (optional)
  • StudentSchoolAssociation.AlternativeGraduationPlan (optional collection)
  • Path.GraduationPlan (optional)

Descriptor catalog Descriptor

GraduationPlanType #

/ed-fi/descriptors/graduationPlanTypeDescriptors

This descriptor defines the set of graduation plan types.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation
Source
UDM Handbook entry
Physical SQL snippets
edfi.GraduationPlanTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for GraduationPlanTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Career and Technical Education Career and Technical Education Career and Technical Education uri://ed-fi.org/GraduationPlanTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Distinguished Distinguished Distinguished uri://ed-fi.org/GraduationPlanTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minimum Minimum Minimum uri://ed-fi.org/GraduationPlanTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Recommended Recommended Recommended uri://ed-fi.org/GraduationPlanTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Standard Standard Standard uri://ed-fi.org/GraduationPlanTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • GraduationPlan.GraduationPlanType (required)

Descriptor catalog Descriptor

GunFreeSchoolsActReportingStatus #

/ed-fi/descriptors/gunFreeSchoolsActReportingStatusDescriptors

An indication of whether the school or local education agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization, Enrollment, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.GunFreeSchoolsActReportingStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for GunFreeSchoolsActReportingStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
No No No uri://ed-fi.org/GunFreeSchoolsActReportingStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not applicable Not applicable Not applicable uri://ed-fi.org/GunFreeSchoolsActReportingStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yes, with no reported offenses Yes, with no reported offenses Yes, with no reported offenses uri://ed-fi.org/GunFreeSchoolsActReportingStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yes, with one or more student offenses Yes, with reporting of one or more students for an offense Yes, with reporting of one or more students for an offense uri://ed-fi.org/GunFreeSchoolsActReportingStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • LocalEducationAgencyAccountability.GunFreeSchoolsActReportingStatus (optional)

UDM primitive/simple type Boolean

HighlyQualifiedTeacher #

dictionary-only type

An indication of whether a teacher is classified as highly qualified for his/her assignment according to state definition. This attribute indicates the teacher is highly qualified for this section being taught.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffSectionAssociation.HighlyQualifiedTeacher (optional)

UDM primitive/simple type Boolean

HighlyQualifiedTeacher #

dictionary-only type

An indication of whether a teacher is classified as highly qualified for his/her assignment according to state definition. This attribute indicates the teacher is highly qualified for all sections being taught.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ApplicantProfile.HighlyQualifiedTeacher (optional)

UDM primitive/simple type Boolean

HighlyQualifiedTeacher #

dictionary-only type

An indication of whether a teacher is classified as highly qualified for his/her assignment according to state definition. This attribute indicates the teacher is highly qualified for ALL Sections being taught.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Staff.HighlyQualifiedTeacher (optional)

UDM primitive/simple type Boolean

HighNeedAcademicSubject #

dictionary-only type

Indicator as to whether the open staff position is filling a high-need subject area designated as a teacher shortage that may be eligible for special grants, aid, or compensation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • OpenStaffPosition.HighNeedAcademicSubject (optional)

UDM primitive/simple type Boolean

HighSchoolCourseRequirement #

dictionary-only type

An indication that this course may satisfy high school graduation requirements in the course's subject area.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Course.HighSchoolCourseRequirement (optional)

UDM primitive/simple type Date

HireDate #

dictionary-only type

The month, day, and year on which an individual was hired for a position. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • EmploymentPeriod.HireDate (identity)

Descriptor catalog Descriptor

HireStatus #

/ed-fi/descriptors/hireStatusDescriptors

The descriptor holds the current status of the application for hire.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.HireStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for HireStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Applied Applied Application made uri://ed-fi.org/HireStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hired Hired Applicant was hired uri://ed-fi.org/HireStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Accepted Not Accepted Offer not accepted uri://ed-fi.org/HireStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Offered Offered Offer made for employment uri://ed-fi.org/HireStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Recommended Recommended Recommended for hire uri://ed-fi.org/HireStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rejected Rejected Rejected by district uri://ed-fi.org/HireStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Withdrawn Withdrawn Application withdrawn by applicant uri://ed-fi.org/HireStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Application.HireStatus (optional)

Descriptor catalog Descriptor

HiringSource #

/ed-fi/descriptors/hiringSourceDescriptors

The descriptor holds the source for the application.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.HiringSourceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for HiringSourceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
District District District uri://ed-fi.org/HiringSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/HiringSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/HiringSourceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Application.HiringSource (optional)

UDM primitive/simple type Boolean

HispanicLatinoEthnicity #

dictionary-only type

An indication that the individual traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central, and South America, and other Spanish cultures, regardless of race. The term, "Spanish origin," can be used in addition to "Hispanic or Latino".

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ApplicantProfile.HispanicLatinoEthnicity (optional)

UDM primitive/simple type Boolean

HispanicLatinoEthnicity #

dictionary-only type

An indication that the individual traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central, and South America, and other Spanish cultures, regardless of race. The term, "Spanish origin," can be used in addition to "Hispanic or Latino."

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Candidate.HispanicLatinoEthnicity (optional)

UDM primitive/simple type Boolean

HispanicLatinoEthnicity #

dictionary-only type

An indication that the individual traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central, and South America, and other Spanish cultures, regardless of race. The term, "Spanish origin," can be used in addition to "Hispanic or Latino".

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • RecruitmentEventAttendance.HispanicLatinoEthnicity (optional)

UDM primitive/simple type Boolean

HispanicLatinoEthnicity #

dictionary-only type

An indication that the individual traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central, and South America, and other Spanish cultures, regardless of race, as last reported to the education organization. The term "Spanish origin", can be used in addition to "Hispanic or Latino".

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffDemographic.HispanicLatinoEthnicity (optional)

UDM primitive/simple type Boolean

HispanicLatinoEthnicity #

dictionary-only type

An indication that the individual traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central, and South America, and other Spanish cultures, regardless of race, as last reported to the education organization. The term "Spanish origin", can be used in addition to "Hispanic or Latino".

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentDemographic.HispanicLatinoEthnicity (optional)

Descriptor catalog Descriptor

HomelessPrimaryNighttimeResidence #

/ed-fi/descriptors/homelessPrimaryNighttimeResidenceDescriptors

The primary nighttime residence of the student at the time the student is identified as homeless.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.HomelessPrimaryNighttimeResidenceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for HomelessPrimaryNighttimeResidenceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Doubled-up Doubled-up Doubled-up uri://ed-fi.org/HomelessPrimaryNighttimeResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hotels/motels Hotels/motels Hotels/motels uri://ed-fi.org/HomelessPrimaryNighttimeResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shelters Shelters Shelters uri://ed-fi.org/HomelessPrimaryNighttimeResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unsheltered Unsheltered Unsheltered uri://ed-fi.org/HomelessPrimaryNighttimeResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentHomelessProgramAssociation.HomelessPrimaryNighttimeResidence (optional)

UDM common/composite Composite Part

HomelessProgramService #

dictionary-only type

Indicates the service(s) being provided to the student by the homeless program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
HomelessProgramService
HomelessProgramServiceDescriptor
Reference
DescriptorProperty
Allowed values: HomelessProgramServiceDescriptor (8 Ed-Fi seed values)
required
identity
ODS/API identity
Indicates the service being provided to the student by the homeless program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryIndicator
PrimaryIndicator
Boolean
BOOLEAN
optional True if service is a primary service. boolean true/false; optional Ed-Fi field source pass-through
ServiceBeginDate
ServiceBeginDate
Date
DATE
optional First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ServiceEndDate
ServiceEndDate
Date
DATE
optional Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentHomelessProgramAssociation.HomelessProgramService (optional collection)

Descriptor catalog Descriptor

HomelessProgramService #

/ed-fi/descriptors/homelessProgramServiceDescriptors

This descriptor defines the services provided by an education organization to populations of students associated with a homeless program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.HomelessProgramServiceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for HomelessProgramServiceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Early Childhood Education Programs Early Childhood Education Programs Early Childhood Education Programs uri://ed-fi.org/HomelessProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Emergency Assistance Emergency Assistance Emergency Assistance uri://ed-fi.org/HomelessProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expedited Evaluations Expedited Evaluations Expedited Evaluations uri://ed-fi.org/HomelessProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
External Instructional Services External Instructional Services External Instructional Services uri://ed-fi.org/HomelessProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Instructional Services Instructional Services Instructional Services uri://ed-fi.org/HomelessProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medical Referrals Medical Referrals Medical Referrals uri://ed-fi.org/HomelessProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Specialized Instructional Support Services Specialized Instructional Support Services Specialized Instructional Support Services uri://ed-fi.org/HomelessProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transportation Services Transportation Services Transportation Services uri://ed-fi.org/HomelessProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • HomelessProgramService.HomelessProgramService (required)

UDM primitive/simple type Boolean

HomelessUnaccompaniedYouth #

dictionary-only type

A homeless unaccompanied youth is a youth who is not in the physical custody of a parent or guardian and who fits the McKinney-Vento definition of homeless. Students must be both unaccompanied and homeless to be included as an unaccompanied homeless youth.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentHomelessProgramAssociation.HomelessUnaccompaniedYouth (optional)

UDM primitive/simple type Boolean

HomeroomIndicator #

dictionary-only type

Indicates the section is the student's homeroom. Homeroom period may the convention for taking daily attendance.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSectionAssociation.HomeroomIndicator (optional)

UDM primitive/simple type Date

HonorAwardDate #

dictionary-only type

The date the honor was awarded. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • AcademicHonor.HonorAwardDate (optional)

UDM primitive/simple type Date

HonorAwardExpiresDate #

dictionary-only type

Date on which the honor expires. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • AcademicHonor.HonorAwardExpiresDate (optional)

UDM primitive/simple type String

HonorDescription #

dictionary-only type

A description of the type of academic distinctions earned by or awarded to the individual.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 80
Used By (1)
  • AcademicHonor.HonorDescription (required)

UDM primitive/simple type Number

HoursAbsent #

dictionary-only type

The hours the staff was absent, if not the entire working day.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 18
  • decimal places: 2
Used By (1)
  • StaffAbsenceEvent.HoursAbsent (optional)

UDM primitive/simple type Number

HoursCompleted #

dictionary-only type

The number of hours completed during the fieldwork experience.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 5
  • decimal places: 2
Used By (1)
  • FieldworkExperience.HoursCompleted (optional)

UDM primitive/simple type Number

HoursPerWeek #

dictionary-only type

The number of hours per week used on an activity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 5
  • decimal places: 2
Used By (5)
  • StudentSpecialEducationProgramAssociation.SpecialEducationHoursPerWeek (optional)
  • StudentSpecialEducationProgramAssociation.SchoolHoursPerWeek (optional)
  • StudentSpecialEducationProgramAssociation.ReductionInHoursPerWeekComparedToPeers (optional)
  • StudentIEP.SchoolHoursPerWeek (optional)
  • StudentIEP.SpecialEducationHoursPerWeek (optional)

UDM primitive/simple type Boolean

IdeaEligibility #

dictionary-only type

Indicator of the eligibility of the student to receive special education services according to the Individuals with Disabilities Education Act (IDEA).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.IdeaEligibility (optional)

Canonical UDM resource Class

IDEAEvent #

/ed-fi/iDEAEvents

EARLY ACCESS: An IDEA related student event describing status, dates and narrative.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.IDEAEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The identifier assigned to the education organization (usually District/LEA) providing IDEA Services. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IDEAEventIdentifier
IDEAEventIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
A unique identifier for the event record as assigned by the provider of IEP services. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IDEAEventType
IDEAEventTypeDescriptor
Reference
DescriptorProperty
Allowed values: IDEAEventTypeDescriptor (22 Ed-Fi seed values)
required
identity
ODS/API identity
The specific legal step, procedure, or standard event milestone captured as part of IDEA compliance requirements. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required The date when the IDEA related event started. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The date when the IDEA related event concluded. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EventCompliance
EventComplianceDescriptor
Reference
DescriptorProperty
Allowed values: EventComplianceDescriptor (11 Ed-Fi seed values)
optional The type of compliance represented by this event. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EventNarrative
EventNarrative
String
VARCHAR(2048)
optional Detailed and summary notes recorded during the event. max length 2048 characters; optional Ed-Fi field source pass-through
EventReason
EventReasonDescriptor
Reference
DescriptorProperty
Allowed values: EventReasonDescriptor (15 Ed-Fi seed values)
optional The reason why the IDEA event occurred. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (4)
  • StudentIEP.IDEAEvent (optional collection)
  • StudentIEPGoal.IDEAEvent (optional collection)
  • StudentIEPServiceDelivery.IDEAEvent (optional collection)
  • StudentIEPServicePrescription.IDEAEvent (optional collection)

Descriptor catalog Descriptor

IDEAEventType #

/ed-fi/descriptors/iDEAEventTypeDescriptors

The specific legal step, procedure, or standard event milestone captured as part of IDEA compliance requirements.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.IDEAEventTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (22 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for IDEAEventTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Action Taken Action Taken The district or agency has implemented a specific action in response to a complaint finding, hearing decision, or corrective action plan. This event documents that required steps have been carried out and compliance has been addressed. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Evaluation Complete Evaluation Complete The multidisciplinary team has finished assessing the student across all areas of suspected disability. Results are compiled into an evaluation report, which must be shared with the parent prior to the eligibility determination meeting. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hearing Conducted Hearing Conducted A due process hearing has taken place, during which both the parent and the school district have had the opportunity to present evidence, testimony, and arguments before the impartial hearing officer. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hearing Officer Assigned Hearing Officer Assigned An impartial hearing officer has been appointed to oversee a due process proceeding. The hearing officer must be qualified, unbiased, and have no personal or professional conflict of interest with any party involved. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IEP Complete IEP Complete A new or revised IEP document has been finalized following a team meeting. The plan is legally in effect and must be implemented as written, with services delivered in accordance with the frequency, duration, and location specified. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IEP Parent Consent Withdrawn IEP Parent Consent Withdrawn The parent or guardian has revoked their previously given consent for the provision of special education services. Upon receiving written revocation, the district must cease services and is not required to hold an IEP meeting or pursue services through due process. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IEP Review Complete IEP Review Complete The annual IEP review meeting has been held, the student's progress has been assessed, and the IEP has been updated as appropriate. All required team members participated and the updated plan is ready for implementation. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IEP Review Due IEP Review Due The student's IEP is approaching or has reached its annual review deadline. Federal law requires that each IEP be reviewed at least once per year to assess progress and update goals, services, and placement as needed. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Incident Incident A significant behavioral or safety event involving the student has been documented. Incidents may trigger additional review, a functional behavioral assessment (FBA), or a manifestation determination depending on the nature and frequency of the behavior. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Manifestation Determination Manifestation Determination Following a disciplinary action that constitutes or may constitute a change of placement, the IEP team has convened to determine whether the student's behavior was caused by, or substantially related to, their disability or the school's failure to implement the IEP. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent Complaint Parent Complaint A parent or guardian has filed a formal complaint with the state educational agency (SEA) or local educational agency (LEA) alleging a violation of IDEA. The complaint initiates a required investigation and resolution process, typically within 60 calendar days. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parental Consent for Evaluation Given Parental Consent for Evaluation Given The parent or guardian has provided written consent authorizing the school district to conduct a formal evaluation to determine whether the student is eligible for special education services. This event starts the federally mandated evaluation timeline. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parental Consent for Implementing IEP Declined Parental Consent for Implementing IEP Declined The parent or guardian has formally declined consent for the school to implement the student's IEP. The district is not considered in violation of FAPE as a result, and is not required to pursue services through due process. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parental Consent for Implementing IEP Given Parental Consent for Implementing IEP Given The parent or guardian has provided written consent authorizing the school to begin delivering the special education services and supports outlined in the student's IEP. Services may not begin until this consent is received. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Removed from Least Restrictive Environment Removed from Least Restrictive Environment The IEP team has determined that the student's needs cannot be met in a less restrictive setting, and a more restrictive placement has been authorized. The rationale and justification must be documented in the IEP. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Service Begins Service Begins Special education and related services outlined in the student's IEP have commenced. This event marks the start of service delivery and initiates tracking of service minutes and progress toward annual goals. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Specific Disability Eligibility Determination Specific Disability Eligibility Determination The IEP team has formally determined whether the student qualifies for special education services under one or more of IDEA's 13 disability categories. The outcome โ€” eligible or not eligible โ€” is documented and shared with the parent, along with their procedural rights. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Surrogate Assignment Surrogate Assignment A qualified surrogate parent has been formally assigned to represent the student's interests in all matters relating to identification, evaluation, IEP development, and placement under IDEA. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Surrogate Need Identification Surrogate Need Identification The district has determined that the student does not have a parent or guardian available to act on their behalf in the special education process. A surrogate parent must be appointed to protect the student's educational rights under IDEA. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transfer Report Complete Transfer Report Complete For a student transferring from another district or state, the receiving district has compiled available special education records and documented the student's current eligibility status, services, and IEP information. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transfer Student IEP Adoption Transfer Student IEP Adoption The receiving district has formally adopted, or agreed to provide comparable services to, the transferring student's existing IEP while a new IEP is developed. This ensures continuity of services during the transition period. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Written Decision (SEA/LEA) Written Decision (SEA/LEA) The hearing officer or state educational agency has issued a formal written decision based on the findings of the due process hearing or state complaint investigation. The decision is binding and subject to appeal through state or federal court. uri://ed-fi.org/IDEAEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • IDEAEvent.IDEAEventType (required)

UDM primitive/simple type Boolean

IDEAIndicator #

dictionary-only type

Indicates whether or not the student was determined eligible as a result of an evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.IDEAIndicator (optional)

Descriptor catalog Descriptor

IDEAPart #

/ed-fi/descriptors/iDEAPartDescriptors

Indicates if the evaluation is done under Part B IDEA or Part C IDEA.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.IDEAPartDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for IDEAPartDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
IDEA Part B IDEA Part B IDEA Part B uri://ed-fi.org/IDEAPartDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEA Part C IDEA Part C IDEA Part C uri://ed-fi.org/IDEAPartDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.IDEAPart (required)

UDM primitive/simple type String

IdentificationCode #

dictionary-only type

A unique number or alphanumeric code assigned to a space, room, site, building, individual, organization, program, or institution by a school, school system, a state, or other agency or entity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 120
Used By (41, showing 30)
  • StudentEducationOrganizationAssociation.LoginId (optional)
  • AdministrationPointOfContact.LoginId (optional)
  • AssessmentIdentificationCode.IdentificationCode (required)
  • AssessmentIdentificationCode.AssigningOrganizationIdentificationCode (optional)
  • CourseIdentificationCode.IdentificationCode (required)
  • CourseIdentificationCode.AssigningOrganizationIdentificationCode (optional)
  • IdentificationDocument.IssuerDocumentIdentificationCode (optional)
  • LearningStandardIdentificationCode.IdentificationCode (required)
  • Assessment.AssessmentIdentifier (required)
  • AssessmentItem.IdentificationCode (required)
  • AssessmentScoreRangeLearningStandard.ScoreRangeId (required)
  • Calendar.CalendarCode (required)
  • Candidate.LoginId (optional)
  • CandidateIdentificationCode.IdentificationCode (required)
  • Certification.CertificationIdentifier (required)
  • CertificationExam.CertificationExamIdentifier (required)
  • CompetencyObjective.CompetencyObjectiveId (optional)
  • Contact.LoginId (optional)
  • ContactIdentificationCode.IdentificationCode (required)
  • Course.CourseCode (required)
  • CourseTranscript.AssigningOrganizationIdentificationCode (optional)
  • Credential.CredentialIdentifier (required)
  • EducationOrganizationIdentificationCode.IdentificationCode (required)
  • IDEAEvent.IDEAEventIdentifier (required)
  • Intervention.InterventionIdentificationCode (required)
  • InterventionPrescription.InterventionPrescriptionIdentificationCode (required)
  • InterventionStudy.InterventionStudyIdentificationCode (required)
  • LearningStandard.LearningStandardItemCode (optional)
  • ObjectiveAssessment.IdentificationCode (required)
  • Session.SessionName (required)

UDM common/composite Composite Part

IdentificationDocument #

dictionary-only type

Represents the valid document that a person uses for identification.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
DocumentTitle
DocumentTitle
String
VARCHAR(60)
optional The title of the document given by the issuer. max length 60 characters; optional Ed-Fi field source pass-through
PersonalInformationVerification
PersonalInformationVerificationDescriptor
Reference
DescriptorProperty
Allowed values: PersonalInformationVerificationDescriptor (15 Ed-Fi seed values)
required
identity
ODS/API identity
The category of the document relative to its purpose. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DocumentExpirationDate
DocumentExpirationDate
Date
DATE
optional The day when the document expires, if null then never expires. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
IssuerDocumentIdentificationCode
IssuerDocumentIdentificationCode
String
VARCHAR(120)
optional The unique identifier on the issuer's identification system. max length 120 characters; optional Ed-Fi field source pass-through
IssuerName
IssuerName
String
VARCHAR(150)
optional Name of the entity or institution that issued the document. max length 150 characters; optional Ed-Fi field source pass-through
IssuerCountry
IssuerCountryDescriptor
Reference
DescriptorProperty
Allowed values: governed IssuerCountryDescriptor values; no matching handbook descriptor entry found.
optional Country of origin of the document. It is strongly recommended that entries use only ISO 3166 2-letter country codes. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
IdentificationDocumentUse
IdentificationDocumentUseDescriptor
Reference
DescriptorProperty
Allowed values: IdentificationDocumentUseDescriptor (3 Ed-Fi seed values)
required
identity
ODS/API identity
The primary function of the document used for establishing identity. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (2)
  • Citizenship.IdentificationDocument (optional collection)
  • Name.PersonalIdentificationDocument (optional collection)

Descriptor catalog Descriptor

IdentificationDocumentUse #

/ed-fi/descriptors/identificationDocumentUseDescriptors

Identifies the type of use given to an identification document.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Assessment Registration, Discipline, Educator Preparation Program, Enrollment, Finance, Graduation, Intervention, Recruiting and Staffing, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Student Health, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.IdentificationDocumentUseDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for IdentificationDocumentUseDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Foreign Citizenship Identification Foreign Citizenship Identification Foreign Citizenship Identification uri://ed-fi.org/IdentificationDocumentUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Personal Information Verification Personal Information Verification Personal Information Verification uri://ed-fi.org/IdentificationDocumentUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
US Citizenship Identification US Citizenship Identification US Citizenship Identification uri://ed-fi.org/IdentificationDocumentUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • IdentificationDocument.IdentificationDocumentUse (required)

UDM primitive/simple type Date

IEPAmendedDate #

dictionary-only type

The date when the IEP was last amended, if any. When amended, a new StudentIEP should be created with the amended data recorded. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentIEP.IEPAmendedDate (optional)

UDM primitive/simple type Date

IEPBeginDate #

dictionary-only type

The effective date of the most recent IEP. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.IEPBeginDate (optional)

UDM primitive/simple type Date

IEPBeginDate #

dictionary-only type

The projected date for the beginning of special education and related services. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentIEP.IEPBeginDate (required)

UDM primitive/simple type Date

IEPEndDate #

dictionary-only type

The end date of the most recent IEP. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.IEPEndDate (optional)

UDM primitive/simple type Date

IEPEndDate #

dictionary-only type

The effective end date of the IEP. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentIEP.IEPEndDate (required)

UDM primitive/simple type Date

IEPEvaluationDueDate #

dictionary-only type

The due date for the next special education evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.IEPEvaluationDueDate (optional)

UDM primitive/simple type Date

IEPFinalizedDate #

dictionary-only type

The date the IEP was finalized. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentIEP.IEPFinalizedDate (identity)

Descriptor catalog Descriptor

IEPGoalType #

/ed-fi/descriptors/iEPGoalTypeDescriptors

A focused goal for an Individualized Education Program (IEP).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.IEPGoalTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for IEPGoalTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Academic Achievement Academic Achievement Academic Achievement uri://ed-fi.org/IEPGoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Functional Performance Functional Performance Functional Performance uri://ed-fi.org/IEPGoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transition - Academic Achievement Transition - Academic Achievement Transition - Academic Achievement uri://ed-fi.org/IEPGoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transition - Functional Performance Transition - Functional Performance Transition - Functional Performance uri://ed-fi.org/IEPGoalTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentIEPGoal.IEPGoalType (required)

UDM primitive/simple type Date

IEPLastEvaluationDate #

dictionary-only type

The date of the last special education evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.IEPLastEvaluationDate (optional)

UDM primitive/simple type Date

IEPLastReviewDate #

dictionary-only type

The date of the last IEP review.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.IEPLastReviewDate (optional)

UDM primitive/simple type Boolean

IEPPlacementMeetingIndicator #

dictionary-only type

An indication as to whether an offense and/or disciplinary action resulted in a meeting of a student's Individualized Education Program (IEP) team to determine appropriate placement.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DisciplineAction.IEPPlacementMeetingIndicator (optional)

UDM primitive/simple type Date

IEPReviewDueDate #

dictionary-only type

The due date for the next IEP review.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.IEPReviewDueDate (optional)

Descriptor catalog Descriptor

IEPStatus #

/ed-fi/descriptors/iEPStatusDescriptors

The current status of the IEP.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.IEPStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for IEPStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Active Active Active uri://ed-fi.org/IEPStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Inactive Inactive Inactive uri://ed-fi.org/IEPStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentIEP.IEPStatus (required)

UDM primitive/simple type Date

ImmunizationDate #

dictionary-only type

The year, month and day of the related additional immunization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • AdditionalImmunization.ImmunizationDate (optional collection)

UDM primitive/simple type Date

ImmunizationDate #

dictionary-only type

The year, month and day of the related required immunization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • RequiredImmunization.ImmunizationDate (optional collection)

UDM primitive/simple type String

ImmunizationName #

dictionary-only type

The name of the immunization that the student has received.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 100

Descriptor catalog Descriptor

ImmunizationType #

/ed-fi/descriptors/immunizationTypeDescriptors

An indication of the type of immunization that an individual has satisfactorily received.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Health
Source
UDM Handbook entry
Physical SQL snippets
edfi.ImmunizationTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (18 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ImmunizationTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
1vCOV COVID-19 COVID-19 uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DEN4CYD Dengue Dengue uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DTaP Diphtheria, tetanus and acellular pertussis Diphtheria, tetanus and acellular pertussis uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
HepA Hepatitis A Hepatitis A uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
HepB Hepatitis B Hepatitis B uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hib Haemophilus influenzae type b Haemophilus influenzae type b uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
HPV Human papillomavirus Human papillomavirus uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IIV4 Influenza Influenza uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IPV Inactivated poliovirus Inactivated poliovirus uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LAIV4 Influenza Influenza uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MenACWY Meningococcal serogroup A,C,W,Y Meningococcal serogroup A,C,W,Y uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MenB Meningococcal serogroup B Meningococcal serogroup B uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MMR Measles, mumps, rubella Measles, mumps, rubella uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mpox Mpox Mpox uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PCV Pneumococcal conjugate Pneumococcal conjugate uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
RSV Respiratory syncytial virus Respiratory syncytial virus uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
RV Rotavirus Rotavirus uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VAR Varicella (chickenpox) Varicella (chickenpox) uri://ed-fi.org/ImmunizationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • RequiredImmunization.ImmunizationType (required)

UDM primitive/simple type Number

ImprovementIndex #

dictionary-only type

Along a percentile distribution of students, the improvement index represents the change in an average student's percentile rank that is considered to be due to the intervention.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Boolean

ImprovingSchool #

dictionary-only type

An indication of whether a school is identified as an improving school.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • School.ImprovingSchool (optional)

UDM primitive/simple type Date

IncidentDate #

dictionary-only type

The month, day, and year on which the discipline incident occurred.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DisciplineIncident.IncidentDate (required)

UDM primitive/simple type String

IncidentIdentifier #

dictionary-only type

A locally assigned unique identifier (within the school or school district) to identify each specific incident or occurrence. The same identifier should be used to document the entire incident even if it included multiple offenses and multiple offenders.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 36
Used By (1)
  • DisciplineIncident.IncidentIdentifier (required)

Descriptor catalog Descriptor

IncidentLocation #

/ed-fi/descriptors/incidentLocationDescriptors

Identifies where the incident occurred and whether or not it occurred on school property.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.IncidentLocationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (25 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for IncidentLocationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Administrative offices area Administrative offices area Administrative offices area uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Athletic field or playground Athletic field or playground Athletic field or playground uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Auditorium Auditorium Auditorium uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bus stop Bus stop Bus stop uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cafeteria area Cafeteria area Cafeteria area uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Classroom Classroom Classroom uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Computer lab Computer lab Computer lab uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hallway or stairs Hallway or stairs Hallway or stairs uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Library/media center Library/media center Library/media center uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Locker room or gym areas Locker room or gym areas Locker room or gym areas uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Off campus Off campus Off campus uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Off-campus at a school sponsored activity Off-campus at a school sponsored activity Off-campus at a school sponsored activity uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Off-campus at another location unrelated to school Off-campus at another location unrelated to school Off-campus at another location unrelated to school uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Off-campus at other school Off-campus at other school Off-campus at other school uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Off-campus at other school district facility Off-campus at other school district facility Off-campus at other school district facility uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
On campus On campus On campus uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
On-campus other inside area On-campus other inside area On-campus other inside area uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
On-campus other outside area On-campus other outside area On-campus other outside area uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Online Online Online uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parking lot Parking lot Parking lot uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Restroom Restroom Restroom uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School bus School bus School bus uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Stadium Stadium Stadium uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown Unknown uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Walking to or from school Walking to or from school Walking to or from school uri://ed-fi.org/IncidentLocationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • DisciplineIncident.IncidentLocation (optional)

UDM primitive/simple type Time

IncidentTime #

dictionary-only type

An indication of the time of day the incident took place.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DisciplineIncident.IncidentTime (optional)

Descriptor catalog Descriptor

Indicator #

/ed-fi/descriptors/indicatorDescriptors

The name or code for the indicator or metric.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Education Organization, Enrollment, Finance, Graduation, Intervention, School Calendar, Special Education, Staff, Student Academic Record, Student Cohort, Student Health, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.IndicatorDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/IndicatorDescriptor.xml ยท status missing_404
Used By (1)
  • EducationOrganizationIndicator.Indicator (required)

UDM primitive/simple type String

Indicator #

dictionary-only type

An indicator or metric computed for the student (e.g., at risk).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (4)
  • CandidateIndicator.Indicator (required)
  • EducationOrganizationIndicator.IndicatorValue (optional)
  • StudentAssessmentIndicator.Indicator (required)
  • StudentIndicator.Indicator (required)

Descriptor catalog Descriptor

IndicatorGroup #

/ed-fi/descriptors/indicatorGroupDescriptors

The name for a group of indicators.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Education Organization, Enrollment, Finance, Graduation, Intervention, School Calendar, Special Education, Staff, Student Academic Record, Student Cohort, Student Health, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.IndicatorGroupDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/IndicatorGroupDescriptor.xml ยท status missing_404
Used By (1)
  • EducationOrganizationIndicator.IndicatorGroup (optional)

Descriptor catalog Descriptor

IndicatorLevel #

/ed-fi/descriptors/indicatorLevelDescriptors

The value of the indicator or metric, as a value from a controlled vocabulary. The semantics of an empty value is "not submitted."

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Education Organization, Enrollment, Finance, Graduation, Intervention, School Calendar, Special Education, Staff, Student Academic Record, Student Cohort, Student Health, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.IndicatorLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/IndicatorLevelDescriptor.xml ยท status missing_404
Used By (1)
  • EducationOrganizationIndicator.IndicatorLevel (optional)

UDM primitive/simple type String

IndicatorName #

dictionary-only type

The name of the Indicator, indicator group, or metric computed for the student (e.g., at risk) to influence more effective education or direct specific interventions.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 200
Used By (6)
  • CandidateIndicator.IndicatorGroup (optional)
  • CandidateIndicator.IndicatorName (required)
  • StudentAssessmentIndicator.IndicatorName (required)
  • StudentAssessmentIndicator.IndicatorGroup (optional)
  • StudentIndicator.IndicatorGroup (optional)
  • StudentIndicator.IndicatorName (required)

UDM primitive/simple type Boolean

IndividualPlan #

dictionary-only type

An indicator of whether the graduation plan is tailored for an individual.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • GraduationPlan.IndividualPlan (optional)

UDM common/composite Composite Part

InstitutionTelephone #

dictionary-only type

The 10-digit telephone number, including the area code, for the organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
TelephoneNumber
TelephoneNumber
String
VARCHAR(24)
required The telephone number including the area code, and extension, if applicable. max length 24 characters; required Ed-Fi field source pass-through
InstitutionTelephoneNumberType
InstitutionTelephoneNumberTypeDescriptor
Reference
DescriptorProperty
Allowed values: InstitutionTelephoneNumberTypeDescriptor (7 Ed-Fi seed values)
required
identity
ODS/API identity
The type of communication number listed for an individual or organization. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • EducationOrganization.InstitutionTelephone (optional collection)

Descriptor catalog Descriptor

InstitutionTelephoneNumberType #

/ed-fi/descriptors/institutionTelephoneNumberTypeDescriptors

The type of communication number listed for an organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Education Organization, Enrollment, Finance, Graduation, Intervention, School Calendar, Special Education, Staff, Student Academic Record, Student Cohort, Student Health, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.InstitutionTelephoneNumberTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for InstitutionTelephoneNumberTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Administrative Administrative Administrative uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Attendance Attendance Attendance uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fax Fax Fax uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Food Service Food Service Food Service uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health Clinic Health Clinic Health Clinic uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Main Main Main uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/InstitutionTelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • InstitutionTelephone.InstitutionTelephoneNumberType (required)

Descriptor catalog Descriptor

InstructionalSetting #

/ed-fi/descriptors/instructionalSettingDescriptors

The setting authorized by the certification in which a person receives education and related services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential
Source
UDM Handbook entry
Physical SQL snippets
edfi.InstructionalSettingDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for InstructionalSettingDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Classroom An instruction in Classroom setting is authorized. The certification authorize the instruction to be delivered in Classroom setting. uri://ed-fi.org/InstructionalSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Co-Op An instruction in Co-op setting authorized. The certification authorize the instruction to be delivered in Co-op setting. uri://ed-fi.org/InstructionalSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regular An instruction in Regular setting authorized. The certification authorize the instruction to be delivered in Regular setting. uri://ed-fi.org/InstructionalSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Virtual An instruction in Virtual setting authorized. The certification authorize the instruction to be delivered in Virtual setting. uri://ed-fi.org/InstructionalSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vocational Experience Instruction in Vocational setting authorized. The certification authorize the instruction to be delivered in Vocational Experience setting. uri://ed-fi.org/InstructionalSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Certification.InstructionalSetting (optional)

Descriptor catalog Descriptor

InteractivityStyle #

/ed-fi/descriptors/interactivityStyleDescriptors

The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
edfi.InteractivityStyleDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for InteractivityStyleDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Active Active Active uri://ed-fi.org/InteractivityStyleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expositive Expositive Expositive uri://ed-fi.org/InteractivityStyleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mixed Mixed Mixed uri://ed-fi.org/InteractivityStyleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/InteractivityStyleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • LearningResource.InteractivityStyle (optional)

UDM common/composite Composite Part

InternationalAddress #

dictionary-only type

Addresses located outside of the United States.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AddressType
AddressTypeDescriptor
Reference
DescriptorProperty
Allowed values: AddressTypeDescriptor (15 Ed-Fi seed values)
required
identity
ODS/API identity
The type of address listed for an individual or organization. (For example: Physical Address, Mailing Address, Home Address, etc.) object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AddressLine1
AddressLine1
String
VARCHAR(150)
required The first line of the address. max length 150 characters; required Ed-Fi field source pass-through
AddressLine2
AddressLine2
String
VARCHAR(150)
optional The second line of the address. max length 150 characters; optional Ed-Fi field source pass-through
AddressLine3
AddressLine3
String
VARCHAR(150)
optional The third line of the address. max length 150 characters; optional Ed-Fi field source pass-through
AddressLine4
AddressLine4
String
VARCHAR(150)
optional The fourth line of the address. max length 150 characters; optional Ed-Fi field source pass-through
Country
CountryDescriptor
Reference
DescriptorProperty
Allowed values: CountryDescriptor (249 Ed-Fi seed values)
required The name of the country. It is strongly recommended that entries use only ISO 3166 2-letter country codes. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Latitude
Latitude
String
VARCHAR(20)
optional The geographic latitude of the physical address. max length 20 characters; optional Ed-Fi field source pass-through
Longitude
Longitude
String
VARCHAR(20)
optional The geographic longitude of the physical address. max length 20 characters; optional Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
optional The first date the address is valid. For physical addresses, the date the individual moved to that address. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The last date the address is valid. For physical addresses, the date the individual moved from that address. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (6)
  • ApplicantProfile.InternationalAddress (optional collection)
  • Candidate.InternationalAddress (optional collection)
  • Contact.InternationalAddress (optional collection)
  • EducationOrganization.InternationalAddress (optional collection)
  • StaffDirectory.InternationalAddress (optional collection)
  • StudentDirectory.InternationalAddress (optional collection)

Descriptor catalog Descriptor

InternetAccess #

/ed-fi/descriptors/internetAccessDescriptors

The type of Internet access available.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.InternetAccessDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (13 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for InternetAccessDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Cable Cable Cable uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dial-up Dial-up Dial-up uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DSL DSL DSL uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fiber Fiber Fiber uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High Speed DEPRECATED: High Speed DEPRECATED: High Speed uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Less Than High Speed DEPRECATED: Less Than High Speed DEPRECATED: Less Than High Speed uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Microwave Microwave Microwave uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
None None None uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Personal hotspot/smartphone Personal hotspot/smartphone Personal hotspot/smartphone uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Satellite Satellite Satellite uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School-provided hotspot School-provided hotspot School-provided hotspot uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown Unknown uri://ed-fi.org/InternetAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • School.InternetAccess (optional)

UDM primitive/simple type Boolean

InternetAccessInResidence #

dictionary-only type

An indication of whether the student is able to access the internet in their primary place of residence.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentEducationOrganizationAssociation.InternetAccessInResidence (optional)

Descriptor catalog Descriptor

InternetAccessTypeInResidence #

/ed-fi/descriptors/internetAccessTypeInResidenceDescriptors

The primary type of internet service used in the studentโ€™s primary place of residence.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.InternetAccessTypeInResidenceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for InternetAccessTypeInResidenceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Cellular Network Cellular Network The type of internet service used in the studentโ€™s primary place of residence is a cellular network that creates a hot spot using a cell phone for additional device access or access to the internet is only available through a cellular device. uri://ed-fi.org/InternetAccessTypeInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Community Provided Wi-Fi Community Provided Wi-Fi The type of internet service used in the studentโ€™s primary place of residence is community provided Wi-Fi. uri://ed-fi.org/InternetAccessTypeInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dial-up Dial-up The type of internet service used in the studentโ€™s primary place of residence is dial-up. uri://ed-fi.org/InternetAccessTypeInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hot Spot Hot Spot The type of internet service used in the studentโ€™s primary place of residence is a standalone hot spot device that is not a cell phone that allows for additional device access. uri://ed-fi.org/InternetAccessTypeInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
None None There is no internet service in the studentโ€™s primary place of residence. uri://ed-fi.org/InternetAccessTypeInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other The type of internet service used in the studentโ€™s primary place of residence is not yet defined. uri://ed-fi.org/InternetAccessTypeInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Residential Broadband Residential Broadband The type of internet service used in the studentโ€™s primary place of residence is residential broadband. uri://ed-fi.org/InternetAccessTypeInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Satellite Satellite The type of internet service used in the studentโ€™s primary place of residence is satellite. uri://ed-fi.org/InternetAccessTypeInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown It is not known whether there is internet service in the studentโ€™s primary place of residence. uri://ed-fi.org/InternetAccessTypeInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentEducationOrganizationAssociation.InternetAccessTypeInResidence (optional)

Descriptor catalog Descriptor

InternetPerformanceInResidence #

/ed-fi/descriptors/internetPerformanceInResidenceDescriptors

An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.InternetPerformanceInResidenceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for InternetPerformanceInResidenceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
No No The student is unable to complete learning activities due to poor internet performance in their primary place of residence. uri://ed-fi.org/InternetPerformanceInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sometimes Sometimes The student regularly experiences interruptions in learning activities caused by poor internet performance in their primary place of residence. uri://ed-fi.org/InternetPerformanceInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yes Yes The student experiences very few or no interruptions in learning activities caused by poor internet performance in their primary place of residence. uri://ed-fi.org/InternetPerformanceInResidenceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentEducationOrganizationAssociation.InternetPerformanceInResidence (optional)

UDM primitive/simple type Number

InterRaterReliabilityScore #

dictionary-only type

A score indicating how much homogeneity, or consensus, there is in the ratings given by judges. Most commonly a percentage scale (1-100).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Canonical UDM resource Class

Intervention #

/ed-fi/interventions

An implementation of an instructional approach focusing on the specific techniques and materials used to teach a given subject.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention, Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.Intervention edfi.InterventionAppropriateGradeLevel edfi.InterventionAppropriateSex edfi.InterventionDiagnosis edfi.InterventionEducationContent edfi.InterventionInterventionPrescription edfi.InterventionLearningResourceMetadataURI edfi.InterventionMeetingTime edfi.InterventionPopulationServed edfi.InterventionStaff edfi.InterventionURI
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (17)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationContentSource
EducationContentSource
Reference
InlineCommonProperty
required Resources related to or used in this intervention, including any documentation around the Intervention itself. Since an intervention is intended to be a published intervention, an intervention should have at least one such resource. object reference; required Ed-Fi field source pass-through
InterventionClass
InterventionClassDescriptor
Reference
DescriptorProperty
Allowed values: InterventionClassDescriptor (4 Ed-Fi seed values)
required The way in which an intervention is used: curriculum, supplement, or practice. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Diagnosis
Diagnoses
Reference
DescriptorProperty
Allowed values: governed DiagnosesDescriptor values; no matching handbook descriptor entry found.
optional collection Targeted purpose of the intervention. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PopulationServed
PopulationServeds
Reference
DescriptorProperty
Allowed values: governed PopulationServedsDescriptor values; no matching handbook descriptor entry found.
optional collection A subset of students that are the focus of the intervention. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AppropriateSex
AppropriateSexes
Reference
DescriptorProperty
Allowed values: governed AppropriateSexesDescriptor values; no matching handbook descriptor entry found.
optional collection Sexes for the intervention. If omitted, considered generally applicable. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AppropriateGradeLevel
AppropriateGradeLevels
Reference
DescriptorProperty
Allowed values: governed AppropriateGradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection Grade levels for the intervention. If omitted, considered generally applicable. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DeliveryMethod
DeliveryMethodDescriptor
Reference
DescriptorProperty
Allowed values: DeliveryMethodDescriptor (4 Ed-Fi seed values)
required The way in which an intervention was implemented. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
InterventionPrescription
InterventionPrescriptions
Reference
DomainEntityProperty
optional collection The reference to the intervention prescription being followed in this intervention implementation. object reference; optional collection Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required The start date for the intervention implementation. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The end date for the intervention implementation. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
MeetingTime
MeetingTimes
Reference
CommonProperty
optional collection The times at which this intervention is scheduled to meet. object reference; optional collection Ed-Fi field source pass-through
Staff
Staffs
Reference
DomainEntityProperty
optional collection Relates the staff member associated with the Intervention. object reference; optional collection Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the education organization which is sponsoring the intervention implementation. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
InterventionIdentificationCode
InterventionIdentificationCode
String
VARCHAR(120)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to an intervention. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MinDosage
MinDosage
Number
INT
optional The minimum duration of time in minutes that may be assigned for the intervention. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
MaxDosage
MaxDosage
Number
INT
optional The maximum duration of time in minutes that may be assigned for the intervention. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
optional Namespace for the intervention. max length 255 characters; optional Ed-Fi field source pass-through
Used By (2)
  • StudentInterventionAssociation.Intervention (required)
  • StudentInterventionAttendanceEvent.Intervention (required)

Descriptor catalog Descriptor

InterventionClass #

/ed-fi/descriptors/interventionClassDescriptors

The way in which an intervention is used: curriculum, supplement, or practice.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention, Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.InterventionClassDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for InterventionClassDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Curriculum Curriculum Curriculum uri://ed-fi.org/InterventionClassDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/InterventionClassDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Practice Practice Practice uri://ed-fi.org/InterventionClassDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Supplement Supplement Supplement uri://ed-fi.org/InterventionClassDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • Intervention.InterventionClass (required)
  • InterventionPrescription.InterventionClass (required)
  • InterventionStudy.InterventionClass (required)

UDM common/composite Composite Part

InterventionEffectiveness #

dictionary-only type

Measurement of the effectiveness of the intervention per diagnosis.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Diagnosis
DiagnosisDescriptor
Reference
DescriptorProperty
Allowed values: DiagnosisDescriptor (2 Ed-Fi seed values)
required
identity
ODS/API identity
Targeted purpose of the intervention (e.g., attendance issue, dropout risk) for which the effectiveness is measured. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PopulationServed
PopulationServedDescriptor
Reference
DescriptorProperty
Allowed values: PopulationServedDescriptor (11 Ed-Fi seed values)
required
identity
ODS/API identity
Population for which effectiveness is measured. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradeLevel
GradeLevelDescriptor
Reference
DescriptorProperty
Allowed values: GradeLevelDescriptor (35 Ed-Fi seed values)
required
identity
ODS/API identity
Grade level for which effectiveness is measured. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ImprovementIndex
ImprovementIndex
Number
INT
optional Along a percentile distribution of students, the improvement index represents the change in an average student's percentile rank that is considered to be due to the intervention. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
InterventionEffectivenessRating
InterventionEffectivenessRatingDescriptor
Reference
DescriptorProperty
Allowed values: InterventionEffectivenessRatingDescriptor (7 Ed-Fi seed values)
required An intervention demonstrates effectiveness if the research has shown that the program caused an improvement in outcomes. Values: positive effects, potentially positive effects, mixed effects, potentially negative effects, negative effects, and no discernible effects. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (2)
  • StudentInterventionAssociation.InterventionEffectiveness (optional collection)
  • InterventionStudy.InterventionEffectiveness (optional collection)

Descriptor catalog Descriptor

InterventionEffectivenessRating #

/ed-fi/descriptors/interventionEffectivenessRatingDescriptors

An intervention demonstrates effectiveness if the research has shown that the program caused an improvement in outcomes. Rating Values: positive effects, potentially positive effects, mixed effects, potentially negative effects, negative effects, and no discernible effects.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention, Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.InterventionEffectivenessRatingDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for InterventionEffectivenessRatingDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Mixed Effects Mixed Effects Mixed Effects uri://ed-fi.org/InterventionEffectivenessRatingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Negative Effects Negative Effects Negative Effects uri://ed-fi.org/InterventionEffectivenessRatingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No Discernible Effects No Discernible Effects No Discernible Effects uri://ed-fi.org/InterventionEffectivenessRatingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/InterventionEffectivenessRatingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Positive Effects Positive Effects Positive Effects uri://ed-fi.org/InterventionEffectivenessRatingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Potentially Negative Effects Potentially Negative Effects Potentially Negative Effects uri://ed-fi.org/InterventionEffectivenessRatingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Potentially Positive Effects Potentially Positive Effects Potentially Positive Effects uri://ed-fi.org/InterventionEffectivenessRatingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • InterventionEffectiveness.InterventionEffectivenessRating (required)

Canonical UDM resource Class

InterventionPrescription #

/ed-fi/interventionPrescriptions

This entity represents a formal prescription of an instructional approach focusing on the specific techniques and materials used to teach a given subject. This can be prescribed by academic research, an interventions vendor, or another entity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention
Source
UDM Handbook entry
Physical SQL snippets
edfi.InterventionPrescription edfi.InterventionPrescriptionAppropriateGradeLevel edfi.InterventionPrescriptionAppropriateSex edfi.InterventionPrescriptionDiagnosis edfi.InterventionPrescriptionEducationContent edfi.InterventionPrescriptionLearningResourceMetadataURI edfi.InterventionPrescriptionPopulationServed edfi.InterventionPrescriptionURI
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (12)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationContentSource
EducationContentSource
Reference
InlineCommonProperty
required Resources related to or used in this intervention prescription, including any documentation around the intervention prescription itself. Since an intervention prescription is intended to be a published intervention, an intervention prescription should have at least one such resource. object reference; required Ed-Fi field source pass-through
InterventionClass
InterventionClassDescriptor
Reference
DescriptorProperty
Allowed values: InterventionClassDescriptor (4 Ed-Fi seed values)
required The way in which an intervention is used: curriculum, supplement, or practice. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Diagnosis
Diagnoses
Reference
DescriptorProperty
Allowed values: governed DiagnosesDescriptor values; no matching handbook descriptor entry found.
optional collection Targeted purpose of the intervention prescription. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PopulationServed
PopulationServeds
Reference
DescriptorProperty
Allowed values: governed PopulationServedsDescriptor values; no matching handbook descriptor entry found.
optional collection A subset of students that are the focus of the intervention prescription. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AppropriateSex
AppropriateSexes
Reference
DescriptorProperty
Allowed values: governed AppropriateSexesDescriptor values; no matching handbook descriptor entry found.
optional collection Sexes for the intervention prescription. If omitted, considered generally applicable. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AppropriateGradeLevel
AppropriateGradeLevels
Reference
DescriptorProperty
Allowed values: governed AppropriateGradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection Grade levels for the prescribed intervention. If omitted, considered generally applicable. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DeliveryMethod
DeliveryMethodDescriptor
Reference
DescriptorProperty
Allowed values: DeliveryMethodDescriptor (4 Ed-Fi seed values)
required The way in which an intervention was implemented: individual, small group, whole class, or whole school. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the education organization which is sponsoring the intervention prescription. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
InterventionPrescriptionIdentificationCode
InterventionPrescriptionIdentificationCode
String
VARCHAR(120)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to an intervention prescription. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MinDosage
MinDosage
Number
INT
optional The minimum duration of time in minutes that is recommended for the intervention. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
MaxDosage
MaxDosage
Number
INT
optional The maximum duration of time in minutes that is recommended for the intervention. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
optional Namespace for the intervention. max length 255 characters; optional Ed-Fi field source pass-through
Used By (3)
  • EducationOrganizationInterventionPrescriptionAssociation.InterventionPrescription (required)
  • Intervention.InterventionPrescription (optional collection)
  • InterventionStudy.InterventionPrescription (required)

Canonical UDM resource Class

InterventionStudy #

/ed-fi/interventionStudies

An experimental or quasi-experimental study of an intervention technique.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention
Source
UDM Handbook entry
Physical SQL snippets
edfi.InterventionStudy edfi.InterventionStudyAppropriateGradeLevel edfi.InterventionStudyAppropriateSex edfi.InterventionStudyEducationContent edfi.InterventionStudyInterventionEffectiveness edfi.InterventionStudyLearningResourceMetadataURI edfi.InterventionStudyPopulationServed edfi.InterventionStudyStateAbbreviation edfi.InterventionStudyURI
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (12)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationContentSource
EducationContentSource
Reference
InlineCommonProperty
optional Reference to any published papers, reports, or other documents about this intervention study. object reference; optional Ed-Fi field source pass-through
InterventionPrescription
InterventionPrescriptionReference
Reference
DomainEntityProperty
required Reference to the intervention prescription being studied. object reference; required Ed-Fi field source pass-through
InterventionEffectiveness
InterventionEffectivenesses
Reference
CommonProperty
optional collection Measurement of the effectiveness of the intervention study per diagnosis. object reference; optional collection Ed-Fi field source pass-through
Participants
Participants
Number
INT
required The number of participants observed in the study. integer range -2,147,483,648 to 2,147,483,647; required Ed-Fi field source pass-through
DeliveryMethod
DeliveryMethodDescriptor
Reference
DescriptorProperty
Allowed values: DeliveryMethodDescriptor (4 Ed-Fi seed values)
required The way in which an intervention was implemented: individual, small group, whole class, or whole school. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
InterventionClass
InterventionClassDescriptor
Reference
DescriptorProperty
Allowed values: InterventionClassDescriptor (4 Ed-Fi seed values)
required The way in which an intervention is used: curriculum, supplement, or practice. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AppropriateGradeLevel
AppropriateGradeLevels
Reference
DescriptorProperty
Allowed values: governed AppropriateGradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection Grade levels participating in this study. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PopulationServed
PopulationServeds
Reference
DescriptorProperty
Allowed values: governed PopulationServedsDescriptor values; no matching handbook descriptor entry found.
optional collection A subset of students that are the focus of the intervention study. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AppropriateSex
AppropriateSexes
Reference
DescriptorProperty
Allowed values: governed AppropriateSexesDescriptor values; no matching handbook descriptor entry found.
optional collection Sexes participating in this study. If omitted, considered generally applicable. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
StateAbbreviation
StateAbbreviations
Reference
DescriptorProperty
Allowed values: governed StateAbbreviationsDescriptor values; no matching handbook descriptor entry found.
optional collection The abbreviation for the state (within the United States) or outlying area, the school system of which the participants of the study are considered to be a part. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the education organization which is sponsoring the intervention study. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
InterventionStudyIdentificationCode
InterventionStudyIdentificationCode
String
VARCHAR(120)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to an intervention study. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through

UDM primitive/simple type Boolean

IsActive #

dictionary-only type

Indicator of whether the open staff position is currently active.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • OpenStaffPosition.IsActive (optional)

UDM primitive/simple type Boolean

IsCumulative #

dictionary-only type

Indicator of whether or not the Grade Point Average value is cumulative.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • GradePointAverage.IsCumulative (optional)

UDM primitive/simple type Date

IssuanceDate #

dictionary-only type

The month, day, and year on which an active credential was issued to a person.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Credential.IssuanceDate (required)

UDM primitive/simple type String

IssuerName #

dictionary-only type

The name of the agent issuing the award.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 150
Used By (2)
  • IdentificationDocument.IssuerName (optional)
  • Achievement.IssuerName (optional)

UDM primitive/simple type Number

ItemNumber #

dictionary-only type

The test question number for this student's test item.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type String

ItemText #

dictionary-only type

The text of the item.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 1024
Used By (2)
  • AssessmentItem.ItemText (optional)
  • SurveyQuestion.QuestionText (required)

UDM common/composite Composite Part

Language #

dictionary-only type

A method of written or spoken communication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Language
LanguageDescriptor
Reference
DescriptorProperty
Allowed values: LanguageDescriptor (484 Ed-Fi seed values)
required
identity
ODS/API identity
A specification of which written or spoken communication is being used. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
LanguageUse
Uses
Reference
DescriptorProperty
Allowed values: governed UsesDescriptor values; no matching handbook descriptor entry found.
optional collection A description of how the language is used (e.g. Home Language, Native Language, Spoken Language). object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (5)
  • ApplicantProfile.Language (optional collection)
  • Candidate.Language (optional collection)
  • Contact.Language (optional collection)
  • StaffDemographic.Language (optional collection)
  • StudentDemographic.Language (optional collection)

Descriptor catalog Descriptor

Language #

/ed-fi/descriptors/languageDescriptors

This descriptor defines the language(s) that are spoken or written. It is strongly recommended that entries use only ISO 639-2 language codes: for CodeValue, use the 3 character code; for ShortDescription and Description use the full language name.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Assessment Registration, Bell Schedule, Educator Preparation Program, Enrollment, Recruiting and Staffing, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.LanguageDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (484 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LanguageDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
aar Afar Afar uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
abk Abkhazian Abkhazian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ace Achinese Achinese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ach Acoli Acoli uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ada Adangme Adangme uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ady Adyghe Adyghe uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
afa Afro-Asiatic languages Afro-Asiatic languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
afh Afrihili Afrihili uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
afr Afrikaans Afrikaans uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ain Ainu Ainu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
aka Akan Akan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
akk Akkadian Akkadian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
alb Albanian Albanian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ale Aleut Aleut uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
alg Algonquian languages Algonquian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
alt Southern Altai Southern Altai uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
amh Amharic Amharic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ang English, Old (ca.450-1100) English, Old (ca.450-1100) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
anp Angika Angika uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
apa Apache languages Apache languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ara Arabic Arabic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
arc Official Aramaic (700-300 BCE) Official Aramaic (700-300 BCE) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
arg Aragonese Aragonese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
arm Armenian Armenian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
arn Mapudungun Mapudungun uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
arp Arapaho Arapaho uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
art Artificial languages Artificial languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
arw Arawak Arawak uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
asm Assamese Assamese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ast Asturian Asturian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ath Athapascan languages Athapascan languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
aus Australian languages Australian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ava Avaric Avaric uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ave Avestan Avestan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
awa Awadhi Awadhi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
aym Aymara Aymara uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
aze Azerbaijani Azerbaijani uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bad Banda languages Banda languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bai Bamileke languages Bamileke languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bak Bashkir Bashkir uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bal Baluchi Baluchi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bam Bambara Bambara uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ban Balinese Balinese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
baq Basque Basque uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bas Basa Basa uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bat Baltic languages Baltic languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bej Beja Beja uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bel Belarusian Belarusian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bem Bemba Bemba uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ben Bengali Bengali uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ber Berber languages Berber languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bho Bhojpuri Bhojpuri uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bih Bihari languages Bihari languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bik Bikol Bikol uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bin Bini Bini uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bis Bislama Bislama uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bla Siksika Siksika uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bnt Bantu languages Bantu languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bos Bosnian Bosnian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bra Braj Braj uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bre Breton Breton uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
btk Batak languages Batak languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bua Buriat Buriat uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bug Buginese Buginese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bul Bulgarian Bulgarian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
bur Burmese Burmese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
byn Blin Blin uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cad Caddo Caddo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cai Central American Indian languages Central American Indian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
car Galibi Carib Galibi Carib uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cat Catalan Catalan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cau Caucasian languages Caucasian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ceb Cebuano Cebuano uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cel Celtic languages Celtic languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cha Chamorro Chamorro uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chb Chibcha Chibcha uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
che Chechen Chechen uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chg Chagatai Chagatai uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chi Chinese Chinese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chk Chuukese Chuukese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chm Mari Mari uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chn Chinook jargon Chinook jargon uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cho Choctaw Choctaw uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chp Chipewyan Chipewyan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chr Cherokee Cherokee uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chu Church Slavic Church Slavic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chv Chuvash Chuvash uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
chy Cheyenne Cheyenne uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cmc Chamic languages Chamic languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cop Coptic Coptic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cor Cornish Cornish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cos Corsican Corsican uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cpe Creoles and pidgins, English based Creoles and pidgins, English based uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cpf Creoles and pidgins, French-based Creoles and pidgins, French-based uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cpp Creoles and pidgins, Portuguese-based Creoles and pidgins, Portuguese-based uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cre Cree Cree uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
crh Crimean Tatar Crimean Tatar uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
crp Creoles and pidgins Creoles and pidgins uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
csb Kashubian Kashubian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cus Cushitic languages Cushitic languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
cze Czech Czech uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dak Dakota Dakota uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dan Danish Danish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dar Dargwa Dargwa uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
day Land Dayak languages Land Dayak languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
del Delaware Delaware uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
den Slave (Athapascan) Slave (Athapascan) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dgr Dogrib Dogrib uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
din Dinka Dinka uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
div Divehi Divehi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
doi Dogri Dogri uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dra Dravidian languages Dravidian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dsb Lower Sorbian Lower Sorbian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dua Duala Duala uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dum Dutch, Middle (ca.1050-1350) Dutch, Middle (ca.1050-1350) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dut Dutch Dutch uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dyu Dyula Dyula uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
dzo Dzongkha Dzongkha uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
efi Efik Efik uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
egy Egyptian (Ancient) Egyptian (Ancient) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
eka Ekajuk Ekajuk uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
elx Elamite Elamite uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
eng English English uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
enm English, Middle (1100-1500) English, Middle (1100-1500) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
epo Esperanto Esperanto uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
est Estonian Estonian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ewe Ewe Ewe uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ewo Ewondo Ewondo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fan Fang Fang uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fao Faroese Faroese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fat Fanti Fanti uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fij Fijian Fijian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fil Filipino Filipino uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fin Finnish Finnish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fiu Finno-Ugrian languages Finno-Ugrian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fon Fon Fon uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fre French French uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
frm French, Middle (ca.1400-1600) French, Middle (ca.1400-1600) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fro French, Old (842-ca.1400) French, Old (842-ca.1400) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
frr Northern Frisian Northern Frisian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
frs Eastern Frisian Eastern Frisian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fry Western Frisian Western Frisian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ful Fulah Fulah uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
fur Friulian Friulian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gaa Ga Ga uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gay Gayo Gayo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gba Gbaya Gbaya uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gem Germanic languages Germanic languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
geo Georgian Georgian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ger German German uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gez Geez Geez uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gil Gilbertese Gilbertese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gla Gaelic Gaelic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gle Irish Irish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
glg Galician Galician uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
glv Manx Manx uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gmh German, Middle High (ca.1050-1500) German, Middle High (ca.1050-1500) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
goh German, Old High (ca.750-1050) German, Old High (ca.750-1050) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gon Gondi Gondi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gor Gorontalo Gorontalo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
got Gothic Gothic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
grb Grebo Grebo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
grc Greek, Ancient (to 1453) Greek, Ancient (to 1453) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gre Greek, Modern (1453-) Greek, Modern (1453-) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
grn Guarani Guarani uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gsw Swiss German Swiss German uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
guj Gujarati Gujarati uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
gwi Gwich'in Gwich'in uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hai Haida Haida uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hat Haitian Haitian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hau Hausa Hausa uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
haw Hawaiian Hawaiian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
heb Hebrew Hebrew uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
her Herero Herero uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hil Hiligaynon Hiligaynon uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
him Himachali languages Himachali languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hin Hindi Hindi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hit Hittite Hittite uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hmn Hmong Hmong uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hmo Hiri Motu Hiri Motu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hrv Croatian Croatian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hsb Upper Sorbian Upper Sorbian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hun Hungarian Hungarian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
hup Hupa Hupa uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
iba Iban Iban uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ibo Igbo Igbo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ice Icelandic Icelandic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ido Ido Ido uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
iii Sichuan Yi Sichuan Yi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ijo Ijo languages Ijo languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
iku Inuktitut Inuktitut uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ile Interlingue Interlingue uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ilo Iloko Iloko uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ina Interlingua (International Auxiliary Language Association) Interlingua (International Auxiliary Language Association) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
inc Indic languages Indic languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ind Indonesian Indonesian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ine Indo-European languages Indo-European languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
inh Ingush Ingush uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ipk Inupiaq Inupiaq uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ira Iranian languages Iranian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
iro Iroquoian languages Iroquoian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ita Italian Italian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
jav Javanese Javanese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
jbo Lojban Lojban uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
jpn Japanese Japanese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
jpr Judeo-Persian Judeo-Persian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
jrb Judeo-Arabic Judeo-Arabic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kaa Kara-Kalpak Kara-Kalpak uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kab Kabyle Kabyle uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kac Kachin Kachin uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kal Kalaallisut Kalaallisut uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kam Kamba Kamba uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kan Kannada Kannada uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kar Karen languages Karen languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kas Kashmiri Kashmiri uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kau Kanuri Kanuri uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kaw Kawi Kawi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kaz Kazakh Kazakh uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kbd Kabardian Kabardian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kha Khasi Khasi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
khi Khoisan languages Khoisan languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
khm Central Khmer Central Khmer uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kho Khotanese Khotanese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kik Kikuyu Kikuyu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kin Kinyarwanda Kinyarwanda uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kir Kirghiz Kirghiz uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kmb Kimbundu Kimbundu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kok Konkani Konkani uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kom Komi Komi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kon Kongo Kongo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kor Korean Korean uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kos Kosraean Kosraean uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kpe Kpelle Kpelle uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
krc Karachay-Balkar Karachay-Balkar uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
krl Karelian Karelian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kro Kru languages Kru languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kru Kurukh Kurukh uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kua Kuanyama Kuanyama uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kum Kumyk Kumyk uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kur Kurdish Kurdish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
kut Kutenai Kutenai uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lad Ladino Ladino uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lah Lahnda Lahnda uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lam Lamba Lamba uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lao Lao Lao uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lat Latin Latin uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lav Latvian Latvian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lez Lezghian Lezghian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lim Limburgan Limburgan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lin Lingala Lingala uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lit Lithuanian Lithuanian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lol Mongo Mongo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
loz Lozi Lozi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ltz Luxembourgish Luxembourgish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lua Luba-Lulua Luba-Lulua uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lub Luba-Katanga Luba-Katanga uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lug Ganda Ganda uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lui Luiseno Luiseno uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lun Lunda Lunda uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
luo Luo (Kenya and Tanzania) Luo (Kenya and Tanzania) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
lus Lushai Lushai uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mac Macedonian Macedonian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mad Madurese Madurese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mag Magahi Magahi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mah Marshallese Marshallese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mai Maithili Maithili uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mak Makasar Makasar uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mal Malayalam Malayalam uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
man Mandingo Mandingo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mao Maori Maori uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
map Austronesian languages Austronesian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mar Marathi Marathi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mas Masai Masai uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
may Malay Malay uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mdf Moksha Moksha uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mdr Mandar Mandar uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
men Mende Mende uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mga Irish, Middle (900-1200) Irish, Middle (900-1200) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mic Mi'kmaq Mi'kmaq uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
min Minangkabau Minangkabau uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mis Uncoded languages Uncoded languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mkh Mon-Khmer languages Mon-Khmer languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mlg Malagasy Malagasy uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mlt Maltese Maltese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mnc Manchu Manchu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mni Manipuri Manipuri uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mno Manobo languages Manobo languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
moh Mohawk Mohawk uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mon Mongolian Mongolian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mos Mossi Mossi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mul Multiple languages Multiple languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mun Munda languages Munda languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mus Creek Creek uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mwl Mirandese Mirandese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
mwr Marwari Marwari uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
myn Mayan languages Mayan languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
myv Erzya Erzya uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nah Nahuatl languages Nahuatl languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nai North American Indian languages North American Indian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nap Neapolitan Neapolitan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nau Nauru Nauru uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nav Navajo Navajo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nbl Ndebele, South Ndebele, South uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nde Ndebele, North Ndebele, North uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ndo Ndonga Ndonga uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nds Low German Low German uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nep Nepali Nepali uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
new Nepal Bhasa Nepal Bhasa uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nia Nias Nias uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nic Niger-Kordofanian languages Niger-Kordofanian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
niu Niuean Niuean uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nno Norwegian Nynorsk Norwegian Nynorsk uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nob Bokmรฅl, Norwegian Bokmรฅl, Norwegian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nog Nogai Nogai uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
non Norse, Old Norse, Old uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nor Norwegian Norwegian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nqo N'Ko N'Ko uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nso Pedi Pedi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nub Nubian languages Nubian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nwc Classical Newari Classical Newari uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nya Chichewa Chichewa uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nym Nyamwezi Nyamwezi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nyn Nyankole Nyankole uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nyo Nyoro Nyoro uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
nzi Nzima Nzima uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
oci Occitan (post 1500) Occitan (post 1500) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
oji Ojibwa Ojibwa uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ori Oriya Oriya uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
orm Oromo Oromo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
osa Osage Osage uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
oss Ossetian Ossetian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ota Turkish, Ottoman (1500-1928) Turkish, Ottoman (1500-1928) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
oto Otomian languages Otomian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
paa Papuan languages Papuan languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pag Pangasinan Pangasinan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pal Pahlavi Pahlavi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pam Pampanga Pampanga uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pan Panjabi Panjabi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pap Papiamento Papiamento uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pau Palauan Palauan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
peo Persian, Old (ca.600-400 B.C.) Persian, Old (ca.600-400 B.C.) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
per Persian Persian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
phi Philippine languages Philippine languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
phn Phoenician Phoenician uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pli Pali Pali uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pol Polish Polish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pon Pohnpeian Pohnpeian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
por Portuguese Portuguese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pra Prakrit languages Prakrit languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pro Provenรงal, Old (to 1500) Provenรงal, Old (to 1500) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
pus Pushto Pushto uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
que Quechua Quechua uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
raj Rajasthani Rajasthani uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
rap Rapanui Rapanui uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
rar Rarotongan Rarotongan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
roa Romance languages Romance languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
roh Romansh Romansh uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
rom Romany Romany uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
rum Romanian Romanian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
run Rundi Rundi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
rup Aromanian Aromanian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
rus Russian Russian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sad Sandawe Sandawe uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sag Sango Sango uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sah Yakut Yakut uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sai South American Indian languages South American Indian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sal Salishan languages Salishan languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sam Samaritan Aramaic Samaritan Aramaic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
san Sanskrit Sanskrit uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sas Sasak Sasak uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sat Santali Santali uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
scn Sicilian Sicilian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sco Scots Scots uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sel Selkup Selkup uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sem Semitic languages Semitic languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sga Irish, Old (to 900) Irish, Old (to 900) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sgn Sign Languages Sign Languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
shn Shan Shan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sid Sidamo Sidamo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sin Sinhala Sinhala uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sio Siouan languages Siouan languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sit Sino-Tibetan languages Sino-Tibetan languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sla Slavic languages Slavic languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
slo Slovak Slovak uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
slv Slovenian Slovenian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sma Southern Sami Southern Sami uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sme Northern Sami Northern Sami uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
smi Sami languages Sami languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
smj Lule Sami Lule Sami uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
smn Inari Sami Inari Sami uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
smo Samoan Samoan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sms Skolt Sami Skolt Sami uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sna Shona Shona uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
snd Sindhi Sindhi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
snk Soninke Soninke uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sog Sogdian Sogdian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
som Somali Somali uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
son Songhai languages Songhai languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sot Sotho, Southern Sotho, Southern uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
spa Spanish Spanish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
srd Sardinian Sardinian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
srn Sranan Tongo Sranan Tongo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
srp Serbian Serbian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
srr Serer Serer uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ssa Nilo-Saharan languages Nilo-Saharan languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ssw Swati Swati uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
suk Sukuma Sukuma uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sun Sundanese Sundanese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sus Susu Susu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
sux Sumerian Sumerian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
swa Swahili Swahili uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
swe Swedish Swedish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
syc Classical Syriac Classical Syriac uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
syr Syriac Syriac uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tah Tahitian Tahitian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tai Tai languages Tai languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tam Tamil Tamil uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tat Tatar Tatar uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tel Telugu Telugu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tem Timne Timne uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ter Tereno Tereno uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tet Tetum Tetum uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tgk Tajik Tajik uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tgl Tagalog Tagalog uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tha Thai Thai uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tib Tibetan Tibetan uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tig Tigre Tigre uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tir Tigrinya Tigrinya uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tiv Tiv Tiv uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tkl Tokelau Tokelau uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tlh Klingon Klingon uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tli Tlingit Tlingit uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tmh Tamashek Tamashek uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tog Tonga (Nyasa) Tonga (Nyasa) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ton Tonga (Tonga Islands) Tonga (Tonga Islands) uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tpi Tok Pisin Tok Pisin uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tsi Tsimshian Tsimshian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tsn Tswana Tswana uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tso Tsonga Tsonga uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tuk Turkmen Turkmen uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tum Tumbuka Tumbuka uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tup Tupi languages Tupi languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tur Turkish Turkish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tut Altaic languages Altaic languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tvl Tuvalu Tuvalu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
twi Twi Twi uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
tyv Tuvinian Tuvinian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
udm Udmurt Udmurt uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
uga Ugaritic Ugaritic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
uig Uighur Uighur uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ukr Ukrainian Ukrainian uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
umb Umbundu Umbundu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
und Undetermined Undetermined uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
urd Urdu Urdu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
uzb Uzbek Uzbek uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
vai Vai Vai uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ven Venda Venda uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
vie Vietnamese Vietnamese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
vol Volapรผk Volapรผk uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
vot Votic Votic uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
wak Wakashan languages Wakashan languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
wal Wolaitta Wolaitta uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
war Waray Waray uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
was Washo Washo uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
wel Welsh Welsh uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
wen Sorbian languages Sorbian languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
wln Walloon Walloon uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
wol Wolof Wolof uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
xal Kalmyk Kalmyk uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
xho Xhosa Xhosa uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
yao Yao Yao uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
yap Yapese Yapese uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
yid Yiddish Yiddish uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
yor Yoruba Yoruba uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ypk Yupik languages Yupik languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
zap Zapotec Zapotec uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
zbl Blissymbols Blissymbols uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
zen Zenaga Zenaga uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
zgh Standard Moroccan Tamazight Standard Moroccan Tamazight uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
zha Zhuang Zhuang uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
znd Zande languages Zande languages uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
zul Zulu Zulu uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
zun Zuni Zuni uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
zza Zaza Zaza uri://ed-fi.org/LanguageDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (5)
  • Language.Language (required)
  • Assessment.Language (optional collection)
  • Section.InstructionLanguage (optional)
  • StudentAssessment.AdministrationLanguage (optional)
  • LearningResource.Language (optional collection)

UDM common/composite Composite Part

LanguageInstructionProgramService #

dictionary-only type

Indicates the service(s) being provided to the student by the language instruction program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LanguageInstructionProgramService
LanguageInstructionProgramServiceDescriptor
Reference
DescriptorProperty
Allowed values: LanguageInstructionProgramServiceDescriptor (17 Ed-Fi seed values)
required
identity
ODS/API identity
Indicates the service being provided to the student by the language instruction program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryIndicator
PrimaryIndicator
Boolean
BOOLEAN
optional True if service is a primary service. boolean true/false; optional Ed-Fi field source pass-through
ServiceBeginDate
ServiceBeginDate
Date
DATE
optional First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ServiceEndDate
ServiceEndDate
Date
DATE
optional Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentLanguageInstructionProgramAssociation.LanguageInstructionProgramService (optional collection)

Descriptor catalog Descriptor

LanguageInstructionProgramService #

/ed-fi/descriptors/languageInstructionProgramServiceDescriptors

This descriptor defines the services provided by an education organization to populations of students associated with a language instruction program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.LanguageInstructionProgramServiceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (17 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LanguageInstructionProgramServiceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Content Classes with integrated ESL support Content Classes with integrated ESL support Content Classes with integrated ESL support uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Content-Based ESL DEPRECATED: Content-Based ESL DEPRECATED: Content-Based ESL uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Developmental Bilingual DEPRECATED: Developmental Bilingual DEPRECATED: Developmental Bilingual uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dual Language DEPRECATED: Dual Language DEPRECATED: Dual Language uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dual Language or Two-way Immersion Dual Language or Two-way Immersion Dual Language or Two-way Immersion uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ESL or ELD ESL or ELD ESL or ELD uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Heritage Language DEPRECATED: Heritage Language DEPRECATED: Heritage Language uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Missing Missing Missing uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Newcomer programs Newcomer programs Newcomer programs uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pull-Out ESL DEPRECATED: Pull-Out ESL DEPRECATED: Pull-Out ESL uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SDAIE DEPRECATED: Specially Designed Academic Instruction Delivered In English DEPRECATED: SDAIE - Specially Designed Academic Instruction Delivered In English uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sheltered English Instruction DEPRECATED: Sheltered English Instruction DEPRECATED: Sheltered English Instruction uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Structured English Immersion DEPRECATED: Structured English Immersion DEPRECATED: Structured English Immersion uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transitional Bilingual DEPRECATED: Transitional Bilingual DEPRECATED: Transitional Bilingual uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transitional Bilingual or Early-Exit Bilingual Transitional Bilingual Education or Early-Exit Bilingual Education Transitional Bilingual Education or Early-Exit Bilingual Education uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Two-Way Immersion DEPRECATED: Two-Way Immersion DEPRECATED: Two-Way Immersion uri://ed-fi.org/LanguageInstructionProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • LanguageInstructionProgramService.LanguageInstructionProgramService (required)

Descriptor catalog Descriptor

LanguageUse #

/ed-fi/descriptors/languageUseDescriptors

The category denoting how a language is used.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Educator Preparation Program, Enrollment, Recruiting and Staffing, Staff, Student Identification And Demographics, Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.LanguageUseDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LanguageUseDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Correspondence language Correspondence language Correspondence language uri://ed-fi.org/LanguageUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dominant language Dominant language Dominant language uri://ed-fi.org/LanguageUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Home language Home language Home language uri://ed-fi.org/LanguageUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Native language Native language Native language uri://ed-fi.org/LanguageUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/LanguageUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other language proficiency Other language proficiency Other language proficiency uri://ed-fi.org/LanguageUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Spoken language Spoken language Spoken language uri://ed-fi.org/LanguageUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Written language Written language Written language uri://ed-fi.org/LanguageUseDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Language.LanguageUse (optional collection)

UDM primitive/simple type Date

LastQualifyingMove #

dictionary-only type

Date the last qualifying move occurred; used to compute MEP status.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentMigrantEducationProgramAssociation.LastQualifyingMove (required)

UDM primitive/simple type String

LastSurname #

dictionary-only type

The name borne in common by members of a family.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 75
Used By (8)
  • AdministrationPointOfContact.LastSurname (required)
  • DisciplineIncidentExternalParticipant.LastSurname (required)
  • OtherName.LastSurname (required)
  • Provider.LastSurname (required)
  • Reviewer.LastSurname (required)
  • Name.LastSurname (required)
  • Name.MaidenName (optional)
  • Name.PreferredLastSurname (optional)

UDM common/composite Composite Part

LearningResource #

dictionary-only type

This entity maintains information that describes content, materials, or informational resources that support learning.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (16)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ShortDescription
ShortDescription
String
VARCHAR(75)
required A short description or name of the entity. max length 75 characters; required Ed-Fi field source pass-through
Description
Description
String
VARCHAR(1024)
optional An extended written representation of the education content. max length 1024 characters; optional Ed-Fi field source pass-through
Author
Authors
String
VARCHAR(255)
optional collection The individual credited with the creation of the resource. max length 255 characters; optional collection Ed-Fi field source pass-through
AdditionalAuthorsIndicator
AdditionalAuthorsIndicator
Boolean
BOOLEAN
optional Indicates whether there are additional un-named authors. In a research report, this is often marked by the abbreviation "et al". boolean true/false; optional Ed-Fi field source pass-through
Publisher
Publisher
String
VARCHAR(50)
optional The organization credited with publishing the resource. max length 50 characters; optional Ed-Fi field source pass-through
TimeRequired
TimeRequired
Number
VARCHAR(30)
optional Approximate or typical time that it takes to work with or through this learning resource for the typical intended target audience expressed in minutes. max length 30 characters; optional Ed-Fi field source pass-through
InteractivityStyle
InteractivityStyleDescriptor
Reference
DescriptorProperty
Allowed values: InteractivityStyleDescriptor (4 Ed-Fi seed values)
optional The predominate mode of learning supported by the learning resource. Acceptable values are active, expositive, or mixed. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ContentClass
ContentClassDescriptor
Reference
DescriptorProperty
Allowed values: ContentClassDescriptor (5 Ed-Fi seed values)
required The predominate type or kind characterizing the learning resource. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
UseRightsURL
UseRightsURL
String
VARCHAR(255)
optional The URL where the owner specifies permissions for using the resource. max length 255 characters; optional Ed-Fi field source pass-through
DerivativeSourceEducationContentSource
DerivativeSourceEducationContentSource
Reference
InlineCommonProperty
optional A reference or URL pointing to education content from which this education content was derived. object reference; optional Ed-Fi field source pass-through
PublicationDateChoice
PublicationDateChoice
Reference
ChoiceProperty
optional The date or year that this content was first published. object reference; optional Ed-Fi field source pass-through
AppropriateSex
AppropriateSexes
Reference
DescriptorProperty
Allowed values: governed AppropriateSexesDescriptor values; no matching handbook descriptor entry found.
optional collection Sexes for which this education content is applicable. If omitted, considered generally applicable. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AppropriateGradeLevel
AppropriateGradeLevels
Reference
DescriptorProperty
Allowed values: governed AppropriateGradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection Grade levels for which this education content is applicable. If omitted, considered generally applicable. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Language
Languages
Reference
DescriptorProperty
Allowed values: governed LanguagesDescriptor values; no matching handbook descriptor entry found.
optional collection An indication of the languages in which the Education Content is designed. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Version
Version
String
VARCHAR(10)
optional The version identifier for the content. max length 10 characters; optional Ed-Fi field source pass-through
LearningStandard
LearningStandardReference
Reference
DomainEntityProperty
optional Relates the competency, learning standard, skill and/or text complexity to which the learning resource is aligned. object reference; optional Ed-Fi field source pass-through
Used By (1)
  • LearningResourceChoice.LearningResource (required)

UDM common/composite Composite Part

LearningResourceChoice #

dictionary-only type

This choice type represents the available options for providing details necessary to describe a LearningResource.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LearningResourceMetadataURI
LearningResourceMetadataURI
String
VARCHAR(255)
required The URI (typical a URL) pointing to the metadata entry in a LRMI metadata repository, which describes this content item. max length 255 characters; required Ed-Fi field source pass-through
LearningResource
LearningResource
Reference
InlineCommonProperty
required This entity maintains information that describes content, materials, and informational resources that support learning. object reference; required Ed-Fi field source pass-through
Used By (1)
  • EducationContent.LearningResourceChoice (required)

UDM primitive/simple type String

LearningResourceMetadataURI #

dictionary-only type

The public web site address (URL), file, or ftp locator.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 5
  • max length: 255
Used By (2)
  • LearningResourceChoice.LearningResourceMetadataURI (required)
  • EducationContentSource.LearningResourceMetadataURI (optional collection)

Canonical UDM resource Class

LearningStandard #

/ed-fi/learningStandards

A statement that describes a specific competency or academic standard.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment, Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.LearningStandard edfi.LearningStandardAcademicSubject edfi.LearningStandardContentStandard edfi.LearningStandardContentStandardAuthor edfi.LearningStandardGradeLevel edfi.LearningStandardIdentificationCode
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (14)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LearningStandardId
LearningStandardId
String
VARCHAR(60)
required
identity
ODS/API identity
The identifier for the specific learning standard (e.g., 111.15.3.1.A). max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LearningStandardIdentificationCode
IdentificationCodes
Reference
CommonProperty
optional collection A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a learning standard. object reference; optional collection Ed-Fi field source pass-through
Description
Description
String
VARCHAR(1024)
required The text of the statement. The textual content that either describes a specific competency such as "Apply the Pythagorean Theorem to determine unknown side lengths in right triangles in real-world and mathematical problems in two and three dimensions." or describes a less granular group of competencies within the taxonomy of the standards document, e.g. "Understand and apply the Pythagorean Theorem," or "Geometry". max length 1024 characters; required Ed-Fi field source pass-through
LearningStandardItemCode
LearningStandardItemCode
String
VARCHAR(120)
optional A code designated by the promulgating body to identify the statement, e.g. 1.N.3 (usually not globally unique). max length 120 characters; optional Ed-Fi field source pass-through
ContentStandard
ContentStandard
Reference
CommonProperty
required The content standard from which the learning standard was derived. object reference; required Ed-Fi field source pass-through
URI
URI
String
VARCHAR(255)
optional An unambiguous reference to the statement using a network-resolvable URI. max length 255 characters; optional Ed-Fi field source pass-through
GradeLevel
GradeLevels
Reference
DescriptorProperty
Allowed values: governed GradeLevelsDescriptor values; no matching handbook descriptor entry found.
required collection The grade levels for the specific learning standard. object reference; required collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AcademicSubject
AcademicSubjects
Reference
DescriptorProperty
Allowed values: governed AcademicSubjectsDescriptor values; no matching handbook descriptor entry found.
required collection Subject area for the learning standard. object reference; required collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CourseTitle
CourseTitle
String
VARCHAR(120)
optional The official course title with which this learning standard is associated. max length 120 characters; optional Ed-Fi field source pass-through
SuccessCriteria
SuccessCriteria
String
VARCHAR(150)
optional One or more statements that describes the criteria used by teachers and students to check for attainment of a learning standard. This criteria gives clear indications as to the degree to which learning is moving through the Zone or Proximal Development toward independent achievement of the learning standard. max length 150 characters; optional Ed-Fi field source pass-through
ParentLearningStandard
ParentLearningStandardReference
Reference
DomainEntityProperty
optional Provide user information to lookup and link to an existing learning standard which serves as a method to group other learning standards. object reference; optional Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required The namespace of the organization or entity who governs the standard. It is recommended the namespaces observe a URI format and begin with a domain name under the governing organization or entity control. max length 255 characters; required Ed-Fi field source pass-through
LearningStandardCategory
LearningStandardCategoryDescriptor
Reference
DescriptorProperty
Allowed values: LearningStandardCategoryDescriptor (3 Ed-Fi seed values)
optional An additional classification of the type of a specific learning standard. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
LearningStandardScope
LearningStandardScopeDescriptor
Reference
DescriptorProperty
Allowed values: LearningStandardScopeDescriptor (6 Ed-Fi seed values)
optional Signals the scope of usage the standard. Does not necessarily relate the standard to the governing body. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (11)
  • LearningStandardEquivalenceAssociation.SourceLearningStandard (required)
  • LearningStandardEquivalenceAssociation.TargetLearningStandard (required)
  • LearningStandardGrade.LearningStandard (required)
  • AssessmentItem.LearningStandard (optional collection)
  • AssessmentScoreRangeLearningStandard.LearningStandard (required collection)
  • Course.LearningStandard (optional collection)
  • GradebookEntry.LearningStandard (optional collection)
  • LearningStandard.ParentLearningStandard (optional)
  • ObjectiveAssessment.LearningStandard (optional collection)
  • Program.LearningStandard (optional collection)
  • LearningResource.LearningStandard (optional)

Descriptor catalog Descriptor

LearningStandardCategory #

/ed-fi/descriptors/learningStandardCategoryDescriptors

An additional classification of the type of a specific learning standard.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment, Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.LearningStandardCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LearningStandardCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Core Ideas Core Ideas Core Ideas uri://ed-fi.org/LearningStandardCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Crosscutting Concepts Crosscutting Concepts Crosscutting Concepts uri://ed-fi.org/LearningStandardCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Practices Practices Practices uri://ed-fi.org/LearningStandardCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • LearningStandard.LearningStandardCategory (optional)

Canonical UDM association Association Class

LearningStandardEquivalenceAssociation #

/ed-fi/learningStandardEquivalenceAssociations

Indicates a directional association of equivalence from a source to a target learning standard.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.LearningStandardEquivalenceAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SourceLearningStandard
SourceLearningStandardReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The source learning standard, which is the subject of the association. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
TargetLearningStandard
TargetLearningStandardReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The target learning standard, which is the object of the association. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required
identity
ODS/API identity
The namespace of the organization that has created and owns the association. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EffectiveDate
EffectiveDate
Date
DATE
optional The date that the association is considered to be applicable or effective. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
LearningStandardEquivalenceStrength
LearningStandardEquivalenceStrengthDescriptor
Reference
DescriptorProperty
Allowed values: LearningStandardEquivalenceStrengthDescriptor (4 Ed-Fi seed values)
optional A measure that indicates the strength or quality of the equivalence relationship. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
LearningStandardEquivalenceStrengthDescription
LearningStandardEquivalenceStrengthDescription
String
VARCHAR(255)
optional Captures supplemental information on the relationship. Recommended for use only when the match is partial. max length 255 characters; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

LearningStandardEquivalenceStrength #

/ed-fi/descriptors/learningStandardEquivalenceStrengthDescriptors

A measure that indicates the strength or quality of the equivalence relationship.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.LearningStandardEquivalenceStrengthDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LearningStandardEquivalenceStrengthDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Equivalent Equivalent Equivalent uri://ed-fi.org/LearningStandardEquivalenceStrengthDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minimally equivalent Minimally equivalent Minimally equivalent uri://ed-fi.org/LearningStandardEquivalenceStrengthDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mostly equivalent Mostly equivalent Mostly equivalent uri://ed-fi.org/LearningStandardEquivalenceStrengthDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Partially equivalent Partially equivalent Partially equivalent uri://ed-fi.org/LearningStandardEquivalenceStrengthDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • LearningStandardEquivalenceAssociation.LearningStandardEquivalenceStrength (optional)

UDM primitive/simple type String

LearningStandardEquivalenceStrengthDescription #

dictionary-only type

Captures supplemental information on the relationship. Recommended for use only when the match is partial.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • LearningStandardEquivalenceAssociation.LearningStandardEquivalenceStrengthDescription (optional)

UDM common/composite Composite Part

LearningStandardGrade #

dictionary-only type

Learning standard for a grade.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LearningStandard
LearningStandardReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The learning standard associated with this grade. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LetterGradeEarned
LetterGradeEarned
String
VARCHAR(20)
optional A final or interim (grading period) indicator of student performance for a learning standard as submitted by the instructor. max length 20 characters; optional Ed-Fi field source pass-through
NumericGradeEarned
NumericGradeEarned
Number
DECIMAL(9, 2)
optional A final or interim (grading period) indicator of student performance for a learning standard as submitted by the instructor. numeric precision 9, scale 2; optional Ed-Fi field source pass-through
DiagnosticStatement
DiagnosticStatement
String
VARCHAR(1024)
optional A statement provided by the teacher that provides information in addition to the grade or assessment score. max length 1024 characters; optional Ed-Fi field source pass-through
PerformanceBaseConversion
PerformanceBaseConversionDescriptor
Reference
DescriptorProperty
Allowed values: PerformanceBaseConversionDescriptor (7 Ed-Fi seed values)
optional A performance level that describes the student proficiency. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • Grade.LearningStandardGrade (optional collection)

UDM primitive/simple type String

LearningStandardId #

dictionary-only type

A unique number or alphanumeric code assigned to a Learning Standard.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • LearningStandard.LearningStandardId (required)

UDM common/composite Composite Part

LearningStandardIdentificationCode #

dictionary-only type

A coding scheme that is used for identification and record-keeping purposes by schools, social services, or other agencies to refer to a learning Standard.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
IdentificationCode
IdentificationCode
String
VARCHAR(120)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to a Learning Standard. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ContentStandardName
ContentStandardName
String
VARCHAR(65)
required
identity
ODS/API identity
The name of the content standard, for example Common Core. max length 65 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Used By (1)
  • LearningStandard.LearningStandardIdentificationCode (optional collection)

Descriptor catalog Descriptor

LearningStandardScope #

/ed-fi/descriptors/learningStandardScopeDescriptors

Signals the scope of usage the standard. Does not necessarily relate the standard to the governing body.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment, Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.LearningStandardScopeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LearningStandardScopeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Classroom Classroom Classroom uri://ed-fi.org/LearningStandardScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
International International International uri://ed-fi.org/LearningStandardScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Local education agency Local education agency Local education agency uri://ed-fi.org/LearningStandardScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Multi-state or National Multi-state or National Multi-state or National uri://ed-fi.org/LearningStandardScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/LearningStandardScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State State uri://ed-fi.org/LearningStandardScopeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • LearningStandard.LearningStandardScope (optional)

UDM primitive/simple type Boolean

LegalGuardian #

dictionary-only type

Indicator of whether the person is a legal guardian for the student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentContactAssociation.LegalGuardian (optional)

Descriptor catalog Descriptor

LengthOfContract #

/ed-fi/descriptors/lengthOfContractDescriptors

The length of contract.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.LengthOfContractDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LengthOfContractDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
12 months Contract is for 12 months Contract is for 12 months uri://ed-fi.org/LengthOfContractDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
6 months Contract is for 6 months. Contract is for 6 months uri://ed-fi.org/LengthOfContractDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
9 months Contract is for 9 months Contract is for 9 months uri://ed-fi.org/LengthOfContractDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Summer Contract is for only for summer Contract is only for the summer uri://ed-fi.org/LengthOfContractDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StaffEducationOrganizationEmploymentAssociation.LengthOfContract (optional)

Descriptor catalog Descriptor

LevelOfEducation #

/ed-fi/descriptors/levelOfEducationDescriptors

This descriptor defines the different levels of education achievable.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Discipline, Finance, Intervention, Recruiting and Staffing, Special Education, Staff, Student Attendance, Student Cohort, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.LevelOfEducationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LevelOfEducationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Associate's Degree (two years or more) Associate's Degree (two years or more) Associate's Degree (two years or more) uri://ed-fi.org/LevelOfEducationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bachelor's Bachelor's Bachelor's uri://ed-fi.org/LevelOfEducationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Did Not Graduate High School Did Not Graduate High School Did Not Graduate High School uri://ed-fi.org/LevelOfEducationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Doctorate Doctorate Doctorate uri://ed-fi.org/LevelOfEducationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High School Diploma High School Diploma High School Diploma uri://ed-fi.org/LevelOfEducationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master's Master's Master's uri://ed-fi.org/LevelOfEducationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Some College No Degree Some College No Degree Some College No Degree uri://ed-fi.org/LevelOfEducationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • ApplicantProfile.HighestCompletedLevelOfEducation (optional)
  • Contact.HighestCompletedLevelOfEducation (optional)
  • Staff.HighestCompletedLevelOfEducation (optional)

UDM common/composite Composite Part

License #

dictionary-only type

The legal document showing proof of permission or authorization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LicenseIdentifier
LicenseIdentifier
String
VARCHAR(36)
required
identity
ODS/API identity
The unique identifier issued by the licensing organization. max length 36 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LicensingOrganization
LicensingOrganization
String
VARCHAR(75)
required
identity
ODS/API identity
The organization issuing the license. max length 75 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LicenseEffectiveDate
LicenseEffectiveDate
Date
DATE
required The month, day, and year on which a license is active or becomes effective. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
LicenseExpirationDate
LicenseExpirationDate
Date
DATE
optional The month, day, and year on which a license will expire. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
LicenseIssueDate
LicenseIssueDate
Date
DATE
optional The month, day, and year on which an active license was issued. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
LicenseStatus
LicenseStatusDescriptor
Reference
DescriptorProperty
Allowed values: LicenseStatusDescriptor (3 Ed-Fi seed values)
optional An indication of the status of the license. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
LicenseType
LicenseTypeDescriptor
Reference
DescriptorProperty
Allowed values: LicenseTypeDescriptor (15 Ed-Fi seed values)
required An indication of the category of the license. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AuthorizedFacilityCapacity
AuthorizedFacilityCapacity
Number
INT
optional The maximum number that can be contained or accommodated which a provider is authorized or licensed to serve. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
OldestAgeAuthorizedToServe
OldestAgeAuthorizedToServe
Number
INT
optional The oldest age of children a provider is authorized or licensed to serve. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
YoungestAgeAuthorizedToServe
YoungestAgeAuthorizedToServe
Number
INT
optional The youngest age of children a provider is authorized or licensed to serve. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (1)
  • CommunityProviderLicense.License (required)

UDM primitive/simple type Date

LicenseEffectiveDate #

dictionary-only type

The month, day, and year on which a license is active or becomes effective. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • License.LicenseEffectiveDate (required)

UDM primitive/simple type Boolean

LicenseExemptIndicator #

dictionary-only type

An indication of whether the provider is exempt from having a license.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CommunityProvider.LicenseExemptIndicator (optional)

UDM primitive/simple type Date

LicenseExpirationDate #

dictionary-only type

The month, day, and year on which a license will expire. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • License.LicenseExpirationDate (optional)

UDM primitive/simple type String

LicenseIdentifier #

dictionary-only type

Identifier assigned by the licensing organization to the license.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 36
Used By (1)
  • License.LicenseIdentifier (required)

UDM primitive/simple type Date

LicenseIssueDate #

dictionary-only type

The month, day, and year on which an active license was issued.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • License.LicenseIssueDate (optional)

Descriptor catalog Descriptor

LicenseStatus #

/ed-fi/descriptors/licenseStatusDescriptors

This descriptor defines the license statuses.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.LicenseStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LicenseStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Exempt Exempt Exempt uri://ed-fi.org/LicenseStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regulated Regulated Regulated uri://ed-fi.org/LicenseStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unregulated Unregulated Unregulated uri://ed-fi.org/LicenseStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • License.LicenseStatus (optional)

Descriptor catalog Descriptor

LicenseType #

/ed-fi/descriptors/licenseTypeDescriptors

This descriptor defines the type of a license.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.LicenseTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LicenseTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Before- and After-School Programs Before- and After-School Programs Before- and After-School Programs uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Child Care Center Child Care Center Child Care Center uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Child Care Program Child Care Program Child Care Program uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Child Placing Agency Child Placing Agency Child Placing Agency uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Day Treatment Program Day Treatment Program Day Treatment Program uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Family Child Care Home Family Child Care Home Family Child Care Home uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Independent Foster Home Independent Foster Home Independent Foster Home uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Large Family Child Care Home Large Family Child Care Home Large Family Child Care Home uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Night Care Night Care Night Care uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Purchase of Care Purchase of Care Purchase of Care uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Residential Child Care Residential Child Care Residential Child Care uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Age Program School Age Program School Age Program uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shelter Care Shelter Care Shelter Care uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Specialized Day Care Specialized Day Care Specialized Day Care uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Temporary Shelter Care Temporary Shelter Care Temporary Shelter Care uri://ed-fi.org/LicenseTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • License.LicenseType (required)

UDM primitive/simple type String

LicensingOrganization #

dictionary-only type

The organization issuing the license.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 75
Used By (1)
  • License.LicensingOrganization (required)

Descriptor catalog Descriptor

LimitedEnglishProficiency #

/ed-fi/descriptors/limitedEnglishProficiencyDescriptors

This descriptor defines the indications that the student has been identified as limited English proficient by the Language Proficiency Assessment Committee (LPAC), or English proficient.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Educator Preparation Program, Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.LimitedEnglishProficiencyDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LimitedEnglishProficiencyDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Limited Limited Limited uri://ed-fi.org/LimitedEnglishProficiencyDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Limited Monitored 1 Limited Monitored 1 Limited Monitored 1 uri://ed-fi.org/LimitedEnglishProficiencyDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Limited Monitored 2 Limited Monitored 2 Limited Monitored 2 uri://ed-fi.org/LimitedEnglishProficiencyDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NotLimited NotLimited NotLimited uri://ed-fi.org/LimitedEnglishProficiencyDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • Candidate.LimitedEnglishProficiency (optional)
  • StudentDemographic.LimitedEnglishProficiency (optional)

UDM primitive/simple type Boolean

LivesWith #

dictionary-only type

Indicator of whether the student lives with the associated contact.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentContactAssociation.LivesWith (optional)

Canonical UDM resource Class

LocalAccount #

/ed-fi/localAccounts

The set of account codes defined by an education organization for a fiscal year. It provides a formal record of the debits and credits relating to the specific account.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.LocalAccount edfi.LocalAccountReportingTag
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AccountIdentifier
AccountIdentifier
String
VARCHAR(50)
required
identity
ODS/API identity
Code value for the valid combination of account dimensions by LEA under which financials are reported. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization for which the account is applicable. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for the account. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AccountName
AccountName
String
VARCHAR(100)
optional A descriptive name for the account. max length 100 characters; optional Ed-Fi field source pass-through
ChartOfAccount
ChartOfAccountReference
Reference
DomainEntityProperty
required References the chart of account with which the local account is associated. object reference; required Ed-Fi field source pass-through
ReportingTag
ReportingTags
Reference
CommonProperty
optional collection Optional tag for accountability reporting. object reference; optional collection Ed-Fi field source pass-through
Used By (5)
  • LocalActual.LocalAccount (required)
  • LocalBudget.LocalAccount (required)
  • LocalContractedStaff.LocalAccount (required)
  • LocalEncumbrance.LocalAccount (required)
  • LocalPayroll.LocalAccount (required)

Canonical UDM resource Class

LocalActual #

/ed-fi/localActuals

The set of local education agency or charter management organization expense or revenue amounts.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.LocalActual
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LocalAccount
LocalAccountReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
References the local account with which the local actual is associated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AsOfDate
AsOfDate
Date
DATE
required
identity
ODS/API identity
The date of the reported amount for the account. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Amount
Amount
Number
MONEY
required Current balance for the account. required Ed-Fi field source pass-through
FinancialCollection
FinancialCollectionDescriptor
Reference
DescriptorProperty
Allowed values: FinancialCollectionDescriptor (5 Ed-Fi seed values)
optional The accounting period or grouping for which the amount is collected. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through

Canonical UDM resource Class

LocalBudget #

/ed-fi/localBudgets

The set of local education agency or charter management organization budget amounts.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.LocalBudget
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LocalAccount
LocalAccountReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
References the local account with which the local budget is associated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AsOfDate
AsOfDate
Date
DATE
required
identity
ODS/API identity
The date of the reported amount for the account. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Amount
Amount
Number
MONEY
required Current balance for the account. required Ed-Fi field source pass-through
FinancialCollection
FinancialCollectionDescriptor
Reference
DescriptorProperty
Allowed values: FinancialCollectionDescriptor (5 Ed-Fi seed values)
optional The accounting period or grouping for which the amount is collected. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through

Canonical UDM resource Class

LocalContractedStaff #

/ed-fi/localContractedStaffs

The set of local education agency or charter management organization contracted staff amounts.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.LocalContractedStaff
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
References the staff with which the local contracted staff is associated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LocalAccount
LocalAccountReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
References the local account with which the local contracted staff is associated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AsOfDate
AsOfDate
Date
DATE
required
identity
ODS/API identity
The date of the reported amount for the account. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Amount
Amount
Number
MONEY
required Current balance for the account. required Ed-Fi field source pass-through
FinancialCollection
FinancialCollectionDescriptor
Reference
DescriptorProperty
Allowed values: FinancialCollectionDescriptor (5 Ed-Fi seed values)
optional The accounting period or grouping for which the amount is collected. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through

UDM primitive/simple type String

LocalCourseCode #

dictionary-only type

The local code assigned by the LEA that identifies the organization of subject matter and related learning experiences provided for the instruction of students.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • CourseOffering.LocalCourseCode (required)

Descriptor catalog Descriptor

Locale #

/ed-fi/descriptors/localeDescriptors

A general geographic indicator that categorizes U.S. territory (e.g., City, Suburban).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Education Organization, Educator Preparation Program, Enrollment, Finance, Graduation, Intervention, Recruiting and Staffing, School Calendar, Special Education, Staff, Student Academic Record, Student Cohort, Student Health, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.LocaleDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (12 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LocaleDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
City-Large City-Large City-Large uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
City-Midsize City-Midsize City-Midsize uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
City-Small City-Small City-Small uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rural-Distant Rural-Distant Rural-Distant uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rural-Fringe Rural-Fringe Rural-Fringe uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rural-Remote Rural-Remote Rural-Remote uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suburban-Large Suburban-Large Suburban-Large uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suburban-Midsize Suburban-Midsize Suburban-Midsize uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suburban-Small Suburban-Small Suburban-Small uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Town-Distant Town-Distant Town-Distant uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Town-Fringe Town-Fringe Town-Fringe uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Town-Remote Town-Remote Town-Remote uri://ed-fi.org/LocaleDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Address.Locale (optional)

Canonical UDM specialization Subclass

LocalEducationAgency #

/ed-fi/localEducationAgencies

This entity represents an administrative unit at the local level which exists primarily to operate schools or to contract for educational services. It includes school districts, charter schools, charter management organizations, or other local administrative organizations.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization, Enrollment, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.LocalEducationAgency edfi.LocalEducationAgencyAccountability edfi.LocalEducationAgencyFederalFunds
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LocalEducationAgencyId
LocalEducationAgencyId
Number
INT
required
identity
ODS/API identity
The identifier assigned to a local education agency. It must be distinct from any other identifier assigned to educational organizations, such as a SchoolId, to prevent duplication. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LocalEducationAgencyCategory
LocalEducationAgencyCategoryDescriptor
Reference
DescriptorProperty
Allowed values: LocalEducationAgencyCategoryDescriptor (11 Ed-Fi seed values)
required The category of local education agency/district. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CharterStatus
CharterStatusDescriptor
Reference
DescriptorProperty
Allowed values: CharterStatusDescriptor (4 Ed-Fi seed values)
optional A school or agency providing free public elementary or secondary education to eligible students under a specific charter granted by the state legislature or other appropriate authority and designated by such authority to be a charter school. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
LocalEducationAgencyAccountability
Accountabilities
Reference
CommonProperty
optional collection This entity maintains information about federal reporting and accountability for local education agencies. object reference; optional collection Ed-Fi field source pass-through
LocalEducationAgencyFederalFunds
FederalFunds
Reference
CommonProperty
optional collection Contains the information about the reception and use of federal funds for reporting purposes. object reference; optional collection Ed-Fi field source pass-through
ParentLocalEducationAgency
ParentLocalEducationAgencyReference
Reference
DomainEntityProperty
optional For subdistricts; the LEA the subdistrict is a component of. object reference; optional Ed-Fi field source pass-through
EducationServiceCenter
EducationServiceCenterReference
Reference
DomainEntityProperty
optional The ESC of which the LEA is an organizational component. object reference; optional Ed-Fi field source pass-through
StateEducationAgency
StateEducationAgencyReference
Reference
DomainEntityProperty
optional The SEA of which the LEA is an organizational component. object reference; optional Ed-Fi field source pass-through
FederalLocaleCode
FederalLocaleCodeDescriptor
Reference
DescriptorProperty
Allowed values: FederalLocaleCodeDescriptor (4 Ed-Fi seed values)
optional The federal locale code associated with an education organization. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (2)
  • LocalEducationAgency.ParentLocalEducationAgency (optional)
  • School.LocalEducationAgency (optional)

UDM common/composite Composite Part

LocalEducationAgencyAccountability #

dictionary-only type

This entity maintains information about federal reporting and accountability for Local Education Agencies.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The school year for which the accountability is reported. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GunFreeSchoolsActReportingStatus
GunFreeSchoolsActReportingStatusDescriptor
Reference
DescriptorProperty
Allowed values: GunFreeSchoolsActReportingStatusDescriptor (4 Ed-Fi seed values)
optional An indication of whether the school or Local Education Agency (LEA) submitted a Gun-Free Schools Act (GFSA) of 1994 report to the state, as defined by Title 18, Section 921. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SchoolChoiceImplementStatus
SchoolChoiceImplementStatusDescriptor
Reference
DescriptorProperty
Allowed values: SchoolChoiceImplementStatusDescriptor (4 Ed-Fi seed values)
optional An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA as amended. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • LocalEducationAgency.LocalEducationAgencyAccountability (optional collection)

Descriptor catalog Descriptor

LocalEducationAgencyCategory #

/ed-fi/descriptors/localEducationAgencyCategoryDescriptors

The category of local education agency/district. For example: Independent or Charter.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization, Enrollment, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.LocalEducationAgencyCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for LocalEducationAgencyCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Charter DEPRECATED: Charter DEPRECATED: Charter uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal operated agency Federal operated agency Federal operated agency uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Independent DEPRECATED: Independent DEPRECATED: Independent uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Independent charter district Independent charter district Independent charter district uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other local education agency Other local education agency Other local education agency uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Public school district part of a supervisory union Public school district part of a supervisory union Regular public school district that is a component of a supervisory union uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regular public school district Regular public school district Regular public school district that is not a component of a supervisory union uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Service agency Service agency Service agency uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Specialized public school district Specialized public school district Specialized public school district uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State operated agency State operated agency State operated agency uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Supervisory union Supervisory union Supervisory union uri://ed-fi.org/LocalEducationAgencyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • LocalEducationAgency.LocalEducationAgencyCategory (required)

UDM common/composite Composite Part

LocalEducationAgencyFederalFunds #

dictionary-only type

Contains the information about the reception and use of federal funds for reporting purposes.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for which the federal funds are received. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
InnovativeDollarsSpent
InnovativeDollarsSpent
Number
MONEY
optional The total Title V, Part A funds expended by LEAs. optional Ed-Fi field source pass-through
InnovativeDollarsSpentStrategicPriorities
InnovativeDollarsSpentStrategicPriorities
Number
MONEY
optional The total amount of Title V, Part A funds expended by LEAs for the four strategic priorities. optional Ed-Fi field source pass-through
InnovativeProgramsFundsReceived
InnovativeProgramsFundsReceived
Number
MONEY
optional The total Title V, Part A funds received by LEAs. optional Ed-Fi field source pass-through
SchoolImprovementAllocation
SchoolImprovementAllocation
Number
MONEY
optional The amount of Section 1003(a) and 1003(g) allocations to LEAs. optional Ed-Fi field source pass-through
SchoolImprovementReservedFundsPercentage
SchoolImprovementReservedFundsPercentage
Number
DECIMAL(5, 4)
optional An indication of the percentage of the Title I, Part A allocation that the SEA reserved in accordance with Section 1003(a) of ESEA and 200.100(a) of ED's regulations governing the reservation of funds for school improvement under Section 1003(a) of ESEA. numeric precision 5, scale 4; optional Ed-Fi field source pass-through
SupplementalEducationalServicesFundsSpent
SupplementalEducationalServicesFundsSpent
Number
MONEY
optional The dollar amount spent on supplemental educational services during the school year under Title I, Part A, Section 1116 of ESEA as amended. optional Ed-Fi field source pass-through
SupplementalEducationalServicesPerPupilExpenditure
SupplementalEducationalServicesPerPupilExpenditure
Number
MONEY
optional The maximum dollar amount that may be spent per child for expenditures related to supplemental educational services under Title I of the ESEA. optional Ed-Fi field source pass-through
StateAssessmentAdministrationFunding
StateAssessmentAdministrationFunding
Number
DECIMAL(5, 4)
optional The percentage of funds used to administer assessments required by Section 1111(b) or to carry out other activities described in Section 6111 and other activities related to ensuring that the state's schools and LEAs are held accountable for results. numeric precision 5, scale 4; optional Ed-Fi field source pass-through
Used By (1)
  • LocalEducationAgency.LocalEducationAgencyFederalFunds (optional collection)

UDM primitive/simple type Number

LocalEducationAgencyId #

dictionary-only type

The identifier assigned to a local education agency. It must be distinct from any other identifier assigned to educational organizations, such as a SchoolId, to prevent duplication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Canonical UDM resource Class

LocalEncumbrance #

/ed-fi/localEncumbrances

The set of local education agency or charter management organization encumbrance amounts.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.LocalEncumbrance
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
LocalAccount
LocalAccountReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
References the local account with which the encumbrance is associated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AsOfDate
AsOfDate
Date
DATE
required
identity
ODS/API identity
The date of the reported amount for the account. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Amount
Amount
Number
MONEY
required Current balance for the account. required Ed-Fi field source pass-through
FinancialCollection
FinancialCollectionDescriptor
Reference
DescriptorProperty
Allowed values: FinancialCollectionDescriptor (5 Ed-Fi seed values)
optional The accounting period or grouping for which the amount is collected. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through

UDM primitive/simple type Number

LocalFiscalYear #

dictionary-only type

Local fiscal year for which a chart of account dimension is valid.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 2020
  • max value: 2040
Used By (10)
  • BalanceSheetDimension.FiscalYear (required)
  • ChartOfAccount.FiscalYear (required)
  • FunctionDimension.FiscalYear (required)
  • FundDimension.FiscalYear (required)
  • LocalAccount.FiscalYear (required)
  • ObjectDimension.FiscalYear (required)
  • OperationalUnitDimension.FiscalYear (required)
  • ProgramDimension.FiscalYear (required)
  • ProjectDimension.FiscalYear (required)
  • SourceDimension.FiscalYear (required)

Canonical UDM resource Class

LocalPayroll #

/ed-fi/localPayrolls

The set of local education agency or charter management organization payroll amounts.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.LocalPayroll
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
References the staff with which the payroll is associated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LocalAccount
LocalAccountReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
References the local account with which the payroll is associated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AsOfDate
AsOfDate
Date
DATE
required
identity
ODS/API identity
The date of the reported amount for the account. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Amount
Amount
Number
MONEY
required Current balance for the account. required Ed-Fi field source pass-through
FinancialCollection
FinancialCollectionDescriptor
Reference
DescriptorProperty
Allowed values: FinancialCollectionDescriptor (5 Ed-Fi seed values)
optional The accounting period or grouping for which the amount is collected. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through

Canonical UDM resource Class

Location #

/ed-fi/locations

This entity represents the physical space where students gather for a particular class/section. The location may be an indoor or outdoor area designated for the purpose of meeting the educational needs of students.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.Location
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the location to the school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ClassroomIdentificationCode
ClassroomIdentificationCode
String
VARCHAR(60)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to a room by a school, school system, state, or other agency or entity. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MaximumNumberOfSeats
MaximumNumberOfSeats
Number
INT
optional The most number of seats the class can maintain. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
OptimalNumberOfSeats
OptimalNumberOfSeats
Number
INT
optional The number of seats that is most favorable to the class. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (1)
  • Section.Location (optional)

Descriptor catalog Descriptor

MagnetSpecialProgramEmphasisSchool #

/ed-fi/descriptors/magnetSpecialProgramEmphasisSchoolDescriptors

A school that has been designed to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing or eliminating racial isolation; and/or to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, or foreign language).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.MagnetSpecialProgramEmphasisSchoolDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for MagnetSpecialProgramEmphasisSchoolDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
All students participate All students participate All students participate uri://ed-fi.org/MagnetSpecialProgramEmphasisSchoolDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No students participate No students participate No students participate uri://ed-fi.org/MagnetSpecialProgramEmphasisSchoolDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Some, but not all, students participate Some, but not all, students participate Some, but not all, students participate uri://ed-fi.org/MagnetSpecialProgramEmphasisSchoolDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • School.MagnetSpecialProgramEmphasisSchool (optional)

UDM primitive/simple type String

MappedValue #

dictionary-only type

The descriptor value to which the from descriptor value is being mapped to.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 50

UDM common/composite Composite Part

Matrix #

dictionary-only type

Information about the matrix element in the survey

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
MatrixElement
MatrixElement
String
VARCHAR(255)
required
identity
ODS/API identity
For matrix questions, the text identifying each row of the matrix. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MinRawScore
MinRawScore
Number
INT
optional The minimum score possible on a survey. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
MaxRawScore
MaxRawScore
Number
INT
optional The maximum score possible on a survey. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (1)
  • SurveyQuestion.Matrix (optional collection)

UDM primitive/simple type String

MatrixElement #

dictionary-only type

For matrix questions, the text identifying each row of the matrix.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (2)
  • Matrix.MatrixElement (required)
  • SurveyQuestionMatrixElementResponse.MatrixElement (required)

UDM primitive/simple type Number

MaxCompletionsForCredit #

dictionary-only type

Designates how many times the course may be taken with credit received by the student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 1
Used By (1)
  • Course.MaxCompletionsForCredit (optional)

UDM primitive/simple type Number

MaximumNumberOfSeats #

dictionary-only type

The most number of seats the class can maintain.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Number

MaxNumericResponse #

dictionary-only type

The maximum score response to the question.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Number

MaxPoints #

dictionary-only type

The maximum number of points that can be earned for the submission.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 9
  • decimal places: 2
Used By (1)
  • GradebookEntry.MaxPoints (optional)

UDM primitive/simple type Number

MaxRawScore #

dictionary-only type

The maximum raw score achievable across all assessment items that are correct and scored at the maximum.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 15
  • decimal places: 5

UDM primitive/simple type Number

MaxRawScore #

dictionary-only type

The maximum score possible on a survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type String

MedicalExemption #

dictionary-only type

The medical condition identified by a physician that contraindicates the vaccine.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 1024

UDM primitive/simple type Date

MedicalExemptionDate #

dictionary-only type

The year, month, and day of the medical exemption by a physician.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • RequiredImmunization.MedicalExemptionDate (optional)

UDM primitive/simple type Boolean

MedicallyFragile #

dictionary-only type

Indicates whether the student receiving special education and related services is: 1) in the age range of birth to 22 years, and 2) has a serious, ongoing illness or a chronic condition that has lasted or is anticipated to last at least 12 or more months or has required at least one month of hospitalization, and that requires daily, ongoing medical treatments and monitoring by appropriately trained personnel which may include parents or other family members, and 3) requires the routine use of medical device or of assistive technology to compensate for the loss of usefulness of a body function needed to participate in activities of daily living, and 4) lives with ongoing threat to his or her continued well-being. Aligns with federal requirements.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.MedicallyFragile (optional)

UDM primitive/simple type Boolean

MedicallyFragile #

dictionary-only type

Indicates whether the student receiving special education and related services is: 1) in the age range of birth to 22 years, and 2) has a serious, ongoing illness or a chronic condition that has lasted or is anticipated to last at least 12 or more months or has required at least one month of hospitalization, and that requires daily, ongoing medical treatments and monitoring by appropriately trained personnel which may include parents or other family members, and 3) requires the routine use of medical device or of assistive technology to compensate for the loss of usefulness of a body function needed to participate in activities of daily living, and 4) lives with ongoing threat to his or her continued well-being. Aligns with federal requirements.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentIEP.MedicallyFragile (optional)

Descriptor catalog Descriptor

MediumOfInstruction #

/ed-fi/descriptors/mediumOfInstructionDescriptors

The media through which teachers provide instruction to students and students and teachers communicate about instructional matters.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Bell Schedule, Education Organization, Graduation, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.MediumOfInstructionDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (13 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for MediumOfInstructionDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Center-based instruction Center-based instruction Center-based instruction uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Correspondence instruction Correspondence instruction Correspondence instruction uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Distance Learning (other than online) Distance Learning (other than online) Distance Learning (other than online) uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Face-to-face instruction Face-to-face instruction Face-to-face instruction uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Independent study Independent study Independent study uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Internship Internship Internship uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other technology-based instruction Other technology-based instruction Other technology-based instruction uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Technology-based instruction in classroom Technology-based instruction in classroom Technology-based instruction in classroom uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Telepresence/video conference Telepresence/video conference Telepresence/video conference uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Televised Televised Televised uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Videotaped/prerecorded video Videotaped/prerecorded video Videotaped/prerecorded video uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Virtual/On-line Distance learning Virtual/On-line Distance learning Virtual/On-line Distance learning uri://ed-fi.org/MediumOfInstructionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • Section.MediumOfInstruction (optional)
  • PostSecondaryInstitution.MediumOfInstruction (optional collection)

UDM common/composite Composite Part

MeetingTime #

dictionary-only type

The start and end times defining a meeting time.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StartTime
StartTime
Time
TIME
required
identity
ODS/API identity
An indication of the time of day the meeting time begins. time value in ISO 8601 local-time form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndTime
EndTime
Time
TIME
required
identity
ODS/API identity
An indication of the time of day the meeting time ends. time value in ISO 8601 local-time form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Used By (2)
  • ClassPeriod.MeetingTime (optional collection)
  • Intervention.MeetingTime (optional collection)

UDM primitive/simple type Boolean

Met #

dictionary-only type

Indicator whether the person was met by a representative of the education organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • RecruitmentEventAttendance.Met (optional)

Descriptor catalog Descriptor

MethodCreditEarned #

/ed-fi/descriptors/methodCreditEarnedDescriptors

The method the credits were earned, for example: Classroom, Examination, Transfer.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.MethodCreditEarnedDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for MethodCreditEarnedDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Classroom credit Classroom credit Classroom credit uri://ed-fi.org/MethodCreditEarnedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Converted occupational experience credit Converted occupational experience credit Converted occupational experience credit uri://ed-fi.org/MethodCreditEarnedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Correspondence credit Correspondence credit Correspondence credit uri://ed-fi.org/MethodCreditEarnedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Credit by examination Credit by examination Credit by examination uri://ed-fi.org/MethodCreditEarnedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Credit recovery Credit recovery Credit recovery uri://ed-fi.org/MethodCreditEarnedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Online credit Online credit Online credit uri://ed-fi.org/MethodCreditEarnedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/MethodCreditEarnedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transfer credit Transfer credit Transfer credit uri://ed-fi.org/MethodCreditEarnedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • PartialCourseTranscriptAwards.MethodCreditEarned (optional)
  • CourseTranscript.MethodCreditEarned (optional)

UDM primitive/simple type String

MiddleName #

dictionary-only type

A secondary name given to an individual at birth, baptism, or during another naming ceremony.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 75
Used By (3)
  • OtherName.MiddleName (optional)
  • Provider.MiddleName (optional)
  • Name.MiddleName (optional)

UDM common/composite Composite Part

MigrantEducationProgramService #

dictionary-only type

The student's migrant education program service information.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
MigrantEducationProgramService
MigrantEducationProgramServiceDescriptor
Reference
DescriptorProperty
Allowed values: MigrantEducationProgramServiceDescriptor (7 Ed-Fi seed values)
required
identity
ODS/API identity
Indicates the service being provided to the student by the migrant education program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryIndicator
PrimaryIndicator
Boolean
BOOLEAN
optional True if service is a primary service. boolean true/false; optional Ed-Fi field source pass-through
ServiceBeginDate
ServiceBeginDate
Date
DATE
optional First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ServiceEndDate
ServiceEndDate
Date
DATE
optional Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentMigrantEducationProgramAssociation.MigrantEducationProgramService (optional collection)

Descriptor catalog Descriptor

MigrantEducationProgramService #

/ed-fi/descriptors/migrantEducationProgramServiceDescriptors

This descriptor defines the services provided by an education organization to populations of students associated with a migrant education program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.MigrantEducationProgramServiceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for MigrantEducationProgramServiceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Counseling Services Counseling Services Counseling Services uri://ed-fi.org/MigrantEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High School Accrual High School Accrual High School Accrual uri://ed-fi.org/MigrantEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Instructional Services Instructional Services Instructional Services uri://ed-fi.org/MigrantEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mathematics Instruction Mathematics Instruction Mathematics Instruction uri://ed-fi.org/MigrantEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reading Instruction Reading Instruction Reading Instruction uri://ed-fi.org/MigrantEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Referral Services Referral Services Referral Services uri://ed-fi.org/MigrantEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Support Services Support Services Support Services uri://ed-fi.org/MigrantEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • MigrantEducationProgramService.MigrantEducationProgramService (required)

UDM primitive/simple type Number

Mileage #

dictionary-only type

The distance, typically measured in miles, that a student was transported along the route of the bus during a single trip.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 5
  • decimal places: 2

UDM primitive/simple type Number

MinNumericResponse #

dictionary-only type

The minimum score response to the question.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Number

MinRawScore #

dictionary-only type

The minimum score possible on a survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Descriptor catalog Descriptor

ModelEntity #

/ed-fi/descriptors/modelEntityDescriptors

The class of a domain entity in the Ed-Fi data model.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.ModelEntityDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/ModelEntityDescriptor.xml ยท status missing_404
Used By (1)
  • DescriptorMapping.ModelEntity (optional collection)

Descriptor catalog Descriptor

Monitored #

/ed-fi/descriptors/monitoredDescriptors

This descriptor defines monitorization statuses for students who are no longer receiving language instruction program services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.MonitoredDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for MonitoredDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Not Monitored Not Monitored Not Monitored uri://ed-fi.org/MonitoredDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Year 1 Year 1 Year 1 uri://ed-fi.org/MonitoredDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Year 2 Year 2 Year 2 uri://ed-fi.org/MonitoredDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EnglishLanguageProficiencyAssessment.Monitored (optional)

UDM primitive/simple type Boolean

MultipleBirthStatus #

dictionary-only type

Indicator of whether the student was born with other siblings (i.e., twins, triplets, etc.)

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • BirthData.MultipleBirthStatus (optional)

UDM primitive/simple type Boolean

MultipleSession #

dictionary-only type

An indication of whether a professional development event is comprised of multiple sessions.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ProfessionalDevelopmentEvent.MultipleSession (optional)

UDM primitive/simple type Boolean

MultiplyDisabled #

dictionary-only type

Indicates whether the student receiving special education and related services has been designated as multiply disabled by the admission, review, and dismissal committee as aligned with federal requirements.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.MultiplyDisabled (optional)

UDM primitive/simple type Boolean

MultiplyDisabled #

dictionary-only type

Indicates whether the student receiving special education and related services has been designated as multiply disabled by the admission, review, and dismissal committee as aligned with federal requirements.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentIEP.MultiplyDisabled (optional)

UDM common/composite Composite Part

Name #

dictionary-only type

The set of elements that comprise an individual's legal name.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PersonalTitlePrefix
PersonalTitlePrefix
String
VARCHAR(30)
optional A prefix used to denote the title, degree, position, or seniority of the individual. max length 30 characters; optional Ed-Fi field source pass-through
FirstName
FirstName
String
VARCHAR(75)
required A name given to an individual at birth, baptism, or during another naming ceremony, or through legal change. max length 75 characters; required Ed-Fi field source pass-through
MiddleName
MiddleName
String
VARCHAR(75)
optional A secondary name given to an individual at birth, baptism, or during another naming ceremony. max length 75 characters; optional Ed-Fi field source pass-through
LastSurname
LastSurname
String
VARCHAR(75)
required The name borne in common by members of a family. max length 75 characters; required Ed-Fi field source pass-through
GenerationCodeSuffix
GenerationCodeSuffix
String
VARCHAR(10)
optional An appendage, if any, used to denote an individual's generation in his family (e.g., Jr., Sr., III). max length 10 characters; optional Ed-Fi field source pass-through
MaidenName
MaidenName
String
VARCHAR(75)
optional The individual's maiden name. max length 75 characters; optional Ed-Fi field source pass-through
PreferredFirstName
PreferredFirstName
String
VARCHAR(75)
optional The first name the individual prefers, if different from their legal first name max length 75 characters; optional Ed-Fi field source pass-through
PreferredLastSurname
PreferredLastSurname
String
VARCHAR(75)
optional The last name the individual prefers, if different from their legal last name max length 75 characters; optional Ed-Fi field source pass-through
PersonalIdentificationDocument
PersonalIdentificationDocuments
Reference
CommonProperty
optional collection The documents presented as evident to verify one's personal identity; for example: drivers license, passport, birth certificate, etc. object reference; optional collection Ed-Fi field source pass-through
Used By (6)
  • ApplicantProfile.Name (required)
  • Candidate.Name (required)
  • Contact.Name (required)
  • RecruitmentEventAttendance.Name (required)
  • Staff.Name (required)
  • Student.Name (required)

UDM primitive/simple type String

NameOfCounty #

dictionary-only type

The name of the county, parish, borough, or comparable unit (within a state) in which an address is located.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 30
Used By (1)
  • Address.NameOfCounty (optional)

UDM primitive/simple type String

NameOfInstitution #

dictionary-only type

The full, legally accepted name of the institution.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 75
Used By (5)
  • CurrentPosition.NameOfInstitution (required)
  • Seniority.NameOfInstitution (required)
  • CourseTranscript.ExternalEducationOrganizationNameOfInstitution (optional)
  • EducationOrganization.NameOfInstitution (required)
  • EducationOrganization.ShortNameOfInstitution (optional)

Descriptor catalog Descriptor

NeglectedOrDelinquentProgram #

/ed-fi/descriptors/neglectedOrDelinquentProgramDescriptors

This descriptor defines the type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.NeglectedOrDelinquentProgramDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for NeglectedOrDelinquentProgramDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adult Corrections Adult Corrections Adult Corrections uri://ed-fi.org/NeglectedOrDelinquentProgramDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
At-Risk Programs At-Risk Programs At-Risk Programs uri://ed-fi.org/NeglectedOrDelinquentProgramDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Juvenile Corrections Juvenile Corrections Juvenile Corrections uri://ed-fi.org/NeglectedOrDelinquentProgramDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Juvenile Detention Facilities Juvenile Detention Facilities Juvenile Detention Facilities uri://ed-fi.org/NeglectedOrDelinquentProgramDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Neglected Programs Neglected Programs Neglected Programs uri://ed-fi.org/NeglectedOrDelinquentProgramDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Programs Other Programs Other Programs uri://ed-fi.org/NeglectedOrDelinquentProgramDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentNeglectedOrDelinquentProgramAssociation.NeglectedOrDelinquentProgram (optional)

UDM common/composite Composite Part

NeglectedOrDelinquentProgramService #

dictionary-only type

Indicates the service(s) being provided to the student by the neglected or delinquent program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
NeglectedOrDelinquentProgramService
NeglectedOrDelinquentProgramServiceDescriptor
Reference
DescriptorProperty
Allowed values: NeglectedOrDelinquentProgramServiceDescriptor (13 Ed-Fi seed values)
required
identity
ODS/API identity
Indicates the service being provided to the student by the neglected or delinquent program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryIndicator
PrimaryIndicator
Boolean
BOOLEAN
optional True if service is a primary service. boolean true/false; optional Ed-Fi field source pass-through
ServiceBeginDate
ServiceBeginDate
Date
DATE
optional First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ServiceEndDate
ServiceEndDate
Date
DATE
optional Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentNeglectedOrDelinquentProgramAssociation.NeglectedOrDelinquentProgramService (optional collection)

Descriptor catalog Descriptor

NeglectedOrDelinquentProgramService #

/ed-fi/descriptors/neglectedOrDelinquentProgramServiceDescriptors

This descriptor defines the services provided by an education organization to populations of students associated with a neglected or delinquent program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.NeglectedOrDelinquentProgramServiceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (13 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for NeglectedOrDelinquentProgramServiceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adult Correction Adult Correction Adult Correction uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
At-Risk Indian Youth Programs DEPRECATED: At-Risk Indian Youth Programs DEPRECATED: At-Risk Indian Youth Programs uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dropout Prevention Programs DEPRECATED: Dropout Prevention Programs DEPRECATED: Dropout Prevention Programs uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health And Social Services DEPRECATED: Health And Social Services DEPRECATED: Health And Social Services uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Juvenile Correction Juvenile Correction Juvenile Correction uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Juvenile Detention Juvenile Detention Juvenile Detention uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mentoring Programs DEPRECATED: Mentoring Programs DEPRECATED: Mentoring Programs uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Missing Missing Missing uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Neglected Programs Neglected Programs Neglected Programs uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Programs Other Programs Other Programs uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pay For Success Initiatives DEPRECATED: Pay For Success Initiatives DEPRECATED: Pay For Success Initiatives uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Programs DEPRECATED: Special Programs DEPRECATED: Special Programs uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transition Programs DEPRECATED: Transition Programs DEPRECATED: Transition Programs uri://ed-fi.org/NeglectedOrDelinquentProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • NeglectedOrDelinquentProgramService.NeglectedOrDelinquentProgramService (required)

Descriptor catalog Descriptor

NetworkPurpose #

/ed-fi/descriptors/networkPurposeDescriptors

The purpose(s) of the network, e.g. shared services, collective procurement, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.NetworkPurposeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for NetworkPurposeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Collective Procurement Collective Procurement Collective Procurement uri://ed-fi.org/NetworkPurposeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shared Services Shared Services Shared Services uri://ed-fi.org/NetworkPurposeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EducationOrganizationNetwork.NetworkPurpose (required)

UDM primitive/simple type String

Nomenclature #

dictionary-only type

Reflects the common nomenclature for an element.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 100
Used By (3)
  • Assessment.Nomenclature (optional)
  • AssessmentItem.Nomenclature (optional)
  • ObjectiveAssessment.Nomenclature (optional)

Descriptor catalog Descriptor

NonMedicalImmunizationExemption #

/ed-fi/descriptors/nonMedicalImmunizationExemptionDescriptors

The type of nonmedical exemption from vaccination claimed by the student's parent or guardian.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Health
Source
UDM Handbook entry
Physical SQL snippets
edfi.NonMedicalImmunizationExemptionDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for NonMedicalImmunizationExemptionDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Other Other Other uri://ed-fi.org/NonMedicalImmunizationExemptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Philosophical Philosophical belief Philosophical belief uri://ed-fi.org/NonMedicalImmunizationExemptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Religious Religious belief Religious belief uri://ed-fi.org/NonMedicalImmunizationExemptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentHealth.NonMedicalImmunizationExemption (optional)

UDM primitive/simple type Date

NonMedicalImmunizationExemptionDate #

dictionary-only type

The year, month and day of the nonmedical exemption from vaccination claimed by the student's parent or guardian.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentHealth.NonMedicalImmunizationExemptionDate (optional)

UDM primitive/simple type Boolean

NonTraditionalGenderStatus #

dictionary-only type

Indicator that student is from a gender group that comprises less than 25% of the individuals employed in an occupation or field of work.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentCTEProgramAssociation.NonTraditionalGenderStatus (optional)

UDM primitive/simple type Boolean

NoResponse #

dictionary-only type

Indicates there was no response to the question.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • SurveyQuestionMatrixElementResponse.NoResponse (optional)

UDM primitive/simple type Boolean

NoResponse #

dictionary-only type

Indicates there was no response to the question.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • SurveyQuestionResponse.NoResponse (optional)

UDM primitive/simple type String

Notes #

dictionary-only type

Additional notes about the prospect.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 255
Used By (1)
  • RecruitmentEventAttendance.Notes (optional)

UDM primitive/simple type Number

NumberAdministered #

dictionary-only type

Number of persons to whom this survey was administered.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Number

NumberOfDaysAbsent #

dictionary-only type

The number of days an individual is absent when school is in session during a given reporting period.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 18
  • decimal places: 4
  • min value: 0
Used By (1)
  • ReportCard.NumberOfDaysAbsent (optional)

UDM primitive/simple type Number

NumberOfDaysInAttendance #

dictionary-only type

The number of days an individual is present when school is in session during a given reporting period.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 18
  • decimal places: 4
  • min value: 0
Used By (1)
  • ReportCard.NumberOfDaysInAttendance (optional)

UDM primitive/simple type Number

NumberOfDaysTardy #

dictionary-only type

The number of days an individual is tardy during a given reporting period.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 0
Used By (1)
  • ReportCard.NumberOfDaysTardy (optional)

UDM primitive/simple type Number

NumberOfParts #

dictionary-only type

The number of parts identified for a course.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 1
  • max value: 8
Used By (1)
  • Course.NumberOfParts (required)

UDM primitive/simple type Number

NumberOfYears #

dictionary-only type

The number of years expressed as whole and fractional units.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 5
  • decimal places: 2
Used By (6)
  • StaffEducationOrganizationAssignmentAssociation.YearsOfExperienceAtCurrentEducationOrganization (optional)
  • Seniority.YearsExperience (required)
  • ApplicantProfile.YearsOfPriorProfessionalExperience (optional)
  • ApplicantProfile.YearsOfPriorTeachingExperience (optional)
  • Staff.YearsOfPriorProfessionalExperience (optional)
  • Staff.YearsOfPriorTeachingExperience (optional)

UDM primitive/simple type Number

NumericGrade #

dictionary-only type

The numeric grade expressed as whole and fractional units.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 9
  • decimal places: 2
Used By (5)
  • LearningStandardGrade.NumericGradeEarned (optional)
  • CourseTranscript.FinalNumericGradeEarned (optional)
  • Grade.NumericGradeEarned (optional)
  • StudentGradebookEntry.PointsEarned (optional)
  • StudentGradebookEntry.NumericGradeEarned (optional)

UDM primitive/simple type Number

NumericRating #

dictionary-only type

The numerical summary rating or score for an evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 6
  • decimal places: 3
Used By (20)
  • ProgramEvaluationLevel.MinNumericRating (optional)
  • ProgramEvaluationLevel.MaxNumericRating (optional)
  • RatingLevel.MinNumericRating (optional)
  • RatingLevel.MaxNumericRating (optional)
  • RatingResult.NumericRating (required)
  • StudentEvaluationElement.EvaluationElementNumericRating (optional)
  • StudentEvaluationObjective.EvaluationObjectiveNumericRating (optional)
  • Evaluation.MinNumericRating (optional)
  • Evaluation.MaxNumericRating (optional)
  • EvaluationElement.MinNumericRating (optional)
  • EvaluationElement.MaxNumericRating (optional)
  • EvaluationObjective.MinNumericRating (optional)
  • EvaluationObjective.MaxNumericRating (optional)
  • ProgramEvaluation.EvaluationMaxNumericRating (optional)
  • ProgramEvaluation.EvaluationMinNumericRating (optional)
  • ProgramEvaluationElement.ElementMaxNumericRating (optional)
  • ProgramEvaluationElement.ElementMinNumericRating (optional)
  • ProgramEvaluationObjective.ObjectiveMaxNumericRating (optional)
  • ProgramEvaluationObjective.ObjectiveMinNumericRating (optional)
  • StudentProgramEvaluation.SummaryEvaluationNumericRating (optional)

UDM primitive/simple type Number

NumericResponse #

dictionary-only type

The numeric response to the question.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 0
  • max value: 100
Used By (2)
  • SurveyQuestionMatrixElementResponse.NumericResponse (optional)
  • SurveyQuestionResponseValue.NumericResponse (optional)

UDM primitive/simple type Number

NumericValue #

dictionary-only type

The numeric choice available for the question (i.e. 0-100 or 0-10).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 0
  • max value: 100
Used By (1)
  • ResponseChoice.NumericValue (optional)

Canonical UDM resource Class

ObjectDimension #

/ed-fi/objectDimensions

The NCES object accounting dimension representing an expenditure. Per the NCES definition, this classification is used to describe the service or commodity obtained as the result of a specific expenditure, such as salaries, benefits, tuition reimbursement, and so forth.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.ObjectDimension edfi.ObjectDimensionReportingTag
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Code
Code
String
VARCHAR(16)
required
identity
ODS/API identity
The code representation of the account object dimension. max length 16 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for which the account object dimension is valid. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CodeName
CodeName
String
VARCHAR(100)
optional A description of the account object dimension. max length 100 characters; optional Ed-Fi field source pass-through
ReportingTag
ReportingTags
Reference
DescriptorProperty
Allowed values: governed ReportingTagsDescriptor values; no matching handbook descriptor entry found.
optional collection Optional tag for accountability reporting. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • ChartOfAccount.ObjectObjectDimension (optional)

UDM primitive/simple type String

Objective #

dictionary-only type

The designated title of the learning objective.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • CompetencyObjective.Objective (required)

Canonical UDM resource Class

ObjectiveAssessment #

/ed-fi/objectiveAssessments

This entity represents subtests that assess specific learning objectives.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.ObjectiveAssessment edfi.ObjectiveAssessmentAssessmentItem edfi.ObjectiveAssessmentLearningStandard edfi.ObjectiveAssessmentParentObjectiveAssessment edfi.ObjectiveAssessmentPerformanceLevel edfi.ObjectiveAssessmentScore
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (12)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
IdentificationCode
IdentificationCode
String
VARCHAR(120)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to an objective assessment by a school, school system, a state, or other agency or entity. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MaxRawScore
MaxRawScore
Number
DECIMAL(15, 5)
optional The maximum raw score achievable across all assessment items that are correct and scored at the maximum. numeric precision 15, scale 5; optional Ed-Fi field source pass-through
AssessmentPerformanceLevel
PerformanceLevels
Reference
CommonProperty
optional collection Definition of the performance levels and the associated cut scores. Three styles are supported: 1. Specification of performance level by minimum and maximum score, 2. Specification of performance level by cut score, using only minimum score, 3. Specification of performance level without any mapping to scores object reference; optional collection Ed-Fi field source pass-through
PercentOfAssessment
PercentOfAssessment
Number
DECIMAL(5, 4)
optional The percentage of the assessment that tests this objective. numeric precision 5, scale 4; optional Ed-Fi field source pass-through
Nomenclature
Nomenclature
String
VARCHAR(100)
optional Reflects the specific nomenclature used for this level of objective assessment. max length 100 characters; optional Ed-Fi field source pass-through
Description
Description
String
VARCHAR(1024)
optional The description of the objective assessment (e.g., vocabulary, measurement, or geometry). max length 1024 characters; optional Ed-Fi field source pass-through
AssessmentItem
AssessmentItems
Reference
DomainEntityProperty
optional collection References individual test items, if appropriate. object reference; optional collection Ed-Fi field source pass-through
LearningStandard
LearningStandards
Reference
DomainEntityProperty
optional collection Learning standard tested by this objective assessment. object reference; optional collection Ed-Fi field source pass-through
ParentObjectiveAssessment
ParentObjectiveAssessments
Reference
DomainEntityProperty
optional collection Provide user information to lookup and link to the parent objective assessment containing this objective assessment. object reference; optional collection Ed-Fi field source pass-through
Assessment
AssessmentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Provide user information to lookup and link to an existing assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AssessmentScore
Scores
Reference
CommonProperty
optional collection Definition of the scores to be expected from this objective assessment. object reference; optional collection Ed-Fi field source pass-through
AcademicSubject
AcademicSubjectDescriptor
Reference
DescriptorProperty
Allowed values: AcademicSubjectDescriptor (21 Ed-Fi seed values)
optional The subject area of the objective assessment. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (4)
  • StudentObjectiveAssessment.ObjectiveAssessment (required)
  • AssessmentBatteryPart.ObjectiveAssessment (optional collection)
  • AssessmentScoreRangeLearningStandard.ObjectiveAssessment (optional)
  • ObjectiveAssessment.ParentObjectiveAssessment (optional collection)

Descriptor catalog Descriptor

ObjectiveRatingLevel #

/ed-fi/descriptors/objectiveRatingLevelDescriptors

The rating levels for evaluation objectives.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.ObjectiveRatingLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ObjectiveRatingLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accomplished Accomplished Accomplished uri://ed-fi.org/ObjectiveRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Demonstrated Demonstrated Demonstrated uri://ed-fi.org/ObjectiveRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Developing Developing Developing uri://ed-fi.org/ObjectiveRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Effective Effective Effective uri://ed-fi.org/ObjectiveRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Highly Effective Highly Effective Highly Effective uri://ed-fi.org/ObjectiveRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ineffective Ineffective Ineffective uri://ed-fi.org/ObjectiveRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minimally Effective Minimally Effective Minimally Effective uri://ed-fi.org/ObjectiveRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Demonstrated Not Demonstrated Not Demonstrated uri://ed-fi.org/ObjectiveRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Skilled Skilled Skilled uri://ed-fi.org/ObjectiveRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EvaluationObjectiveRating.ObjectiveRatingLevel (optional)

UDM primitive/simple type Date

OfferDate #

dictionary-only type

Date at which the staff member was made an official offer for this employment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffEducationOrganizationEmploymentAssociation.OfferDate (optional)

UDM primitive/simple type Boolean

OfficialAttendancePeriod #

dictionary-only type

Indicator of whether this class period is used for official daily attendance. Alternatively, official daily attendance may be tied to a section.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ClassPeriod.OfficialAttendancePeriod (optional)

UDM primitive/simple type Boolean

OfficialAttendancePeriod #

dictionary-only type

Indicator of whether this section is used for official daily attendance. Alternatively, official daily attendance may be tied to a class period.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Section.OfficialAttendancePeriod (optional)

Canonical UDM resource Class

OpenStaffPosition #

/ed-fi/openStaffPositions

This entity represents an open staff position that the education organization is seeking to fill.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.OpenStaffPosition edfi.OpenStaffPositionAcademicSubject edfi.OpenStaffPositionInstructionalGradeLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (22)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EmploymentStatus
EmploymentStatusDescriptor
Reference
DescriptorProperty
Allowed values: EmploymentStatusDescriptor (10 Ed-Fi seed values)
required Reflects the type of employment or contract desired for the position. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
StaffClassification
StaffClassificationDescriptor
Reference
DescriptorProperty
Allowed values: StaffClassificationDescriptor (52 Ed-Fi seed values)
required The titles of employment, official status, or rank of education staff. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PositionTitle
PositionTitle
String
VARCHAR(100)
optional The descriptive name of an individual's position. max length 100 characters; optional Ed-Fi field source pass-through
RequisitionNumber
RequisitionNumber
String
VARCHAR(20)
required
identity
ODS/API identity
The number or identifier assigned to an open staff position, typically a requisition number assigned by Human Resources. max length 20 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramAssignment
ProgramAssignmentDescriptor
Reference
DescriptorProperty
Allowed values: ProgramAssignmentDescriptor (6 Ed-Fi seed values)
optional The name of the program for which the open staff position will be assigned. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
InstructionalGradeLevel
InstructionalGradeLevels
Reference
DescriptorProperty
Allowed values: governed InstructionalGradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The set of grade levels for which the position's assignment is responsible. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AcademicSubject
AcademicSubjects
Reference
DescriptorProperty
Allowed values: governed AcademicSubjectsDescriptor values; no matching handbook descriptor entry found.
optional collection The teaching field required for the open staff position. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DatePosted
DatePosted
Date
DATE
required Date the open staff position was posted. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
DatePostingRemoved
DatePostingRemoved
Date
DATE
optional The date the posting was removed or filled. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
PostingResult
PostingResultDescriptor
Reference
DescriptorProperty
Allowed values: PostingResultDescriptor (2 Ed-Fi seed values)
optional Indication of whether the OpenStaffPosition was filled or retired without filling. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization with the open staff position. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
optional The identifier for the school year for which the open staff position is seeking to fill. object reference; optional Ed-Fi field source pass-through
FullTimeEquivalency
FullTimeEquivalency
Number
DECIMAL(5, 4)
optional The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting. numeric precision 5, scale 4; optional Ed-Fi field source pass-through
OpenStaffPositionReason
OpenStaffPositionReasonDescriptor
Reference
DescriptorProperty
Allowed values: OpenStaffPositionReasonDescriptor (2 Ed-Fi seed values)
optional The reason for the open staff position. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
IsActive
IsActive
Boolean
BOOLEAN
optional Indicator of whether the open staff position is currently active. boolean true/false; optional Ed-Fi field source pass-through
MaxSalary
MaxSalary
Number
DECIMAL(9, 2)
optional The maximum salary or wage a person is paid before deductions (excluding differentials) but including annuities. numeric precision 9, scale 2; optional Ed-Fi field source pass-through
MinSalary
MinSalary
Number
DECIMAL(9, 2)
optional The minimum salary or wage a person is paid before deductions (excluding differentials) but including annuities. numeric precision 9, scale 2; optional Ed-Fi field source pass-through
FundingSource
FundingSourceDescriptor
Reference
DescriptorProperty
Allowed values: FundingSourceDescriptor (4 Ed-Fi seed values)
optional The funding source for the open staff position. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
HighNeedAcademicSubject
HighNeedAcademicSubject
Boolean
BOOLEAN
optional Indicator as to whether the open staff position is filling a high-need subject area designated as a teacher shortage that may be eligible for special grants, aid, or compensation. boolean true/false; optional Ed-Fi field source pass-through
PositionControlNumber
PositionControlNumber
String
VARCHAR(20)
optional Identifier assigned to the position to be filled. max length 20 characters; optional Ed-Fi field source pass-through
Term
TermDescriptor
Reference
DescriptorProperty
Allowed values: TermDescriptor (16 Ed-Fi seed values)
optional The first term for the session during the school year for which the open staff position is seeking to fill. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TotalBudgeted
TotalBudgeted
Number
DECIMAL(9, 2)
optional The fully loaded cost budgeted for this teacher, including salary. numeric precision 9, scale 2; optional Ed-Fi field source pass-through
Used By (3)
  • Application.OpenStaffPosition (optional)
  • OpenStaffPositionEvent.OpenStaffPosition (required)
  • Staff.OpenStaffPosition (optional)

Canonical UDM resource Class

OpenStaffPositionEvent #

/ed-fi/openStaffPositionEvents

Represents significant milestones related to an open staff position.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.OpenStaffPositionEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EventDate
EventDate
Date
DATE
required
identity
ODS/API identity
The date when the open staff position event occurred. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
OpenStaffPositionEventType
OpenStaffPositionEventTypeDescriptor
Reference
DescriptorProperty
Allowed values: OpenStaffPositionEventTypeDescriptor (6 Ed-Fi seed values)
required
identity
ODS/API identity
Specifies the type of milestone event. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
OpenStaffPositionEventStatus
OpenStaffPositionEventStatusDescriptor
Reference
DescriptorProperty
Allowed values: OpenStaffPositionEventStatusDescriptor (2 Ed-Fi seed values)
optional Reflects the status of the milestone event. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
OpenStaffPosition
OpenStaffPositionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The open staff position associated with the event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Descriptor catalog Descriptor

OpenStaffPositionEventStatus #

/ed-fi/descriptors/openStaffPositionEventStatusDescriptors

The status of the open staff position milestone event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.OpenStaffPositionEventStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for OpenStaffPositionEventStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Approved Approved Approved uri://ed-fi.org/OpenStaffPositionEventStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pending Pending Pending uri://ed-fi.org/OpenStaffPositionEventStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • OpenStaffPositionEvent.OpenStaffPositionEventStatus (optional)

Descriptor catalog Descriptor

OpenStaffPositionEventType #

/ed-fi/descriptors/openStaffPositionEventTypeDescriptors

The type of open staff position milestone event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.OpenStaffPositionEventTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for OpenStaffPositionEventTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Closed Closed Closed without being filled by a candidate uri://ed-fi.org/OpenStaffPositionEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Declared Declared Need has been identified but the request has not been funded and approved uri://ed-fi.org/OpenStaffPositionEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Filled - forced placement Filled - forced placement Filled by a candidate by forced placement uri://ed-fi.org/OpenStaffPositionEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Filled - mutual consent Filled - mutual consent Filled by a candidate with mutual consent uri://ed-fi.org/OpenStaffPositionEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Posted Posted The vacancy request has been funded and approved uri://ed-fi.org/OpenStaffPositionEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Withdrawn Withdrawn Withdrawn uri://ed-fi.org/OpenStaffPositionEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • OpenStaffPositionEvent.OpenStaffPositionEventType (required)

Descriptor catalog Descriptor

OpenStaffPositionReason #

/ed-fi/descriptors/openStaffPositionReasonDescriptors

The primary reason for the current vacancy or opening within a position.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.OpenStaffPositionReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for OpenStaffPositionReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
New A new position New position uri://ed-fi.org/OpenStaffPositionReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Replacement A replacement for an existing position. A replacement for an existing position. uri://ed-fi.org/OpenStaffPositionReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • OpenStaffPosition.OpenStaffPositionReason (optional)

Descriptor catalog Descriptor

OperationalStatus #

/ed-fi/descriptors/operationalStatusDescriptors

The current operational status of the education organization (e.g., active, inactive).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Education Organization, Enrollment, Finance, Graduation, Intervention, School Calendar, Special Education, Staff, Student Academic Record, Student Cohort, Student Health, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.OperationalStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for OperationalStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Active Active Active uri://ed-fi.org/OperationalStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Added Added Added uri://ed-fi.org/OperationalStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Changed Changed Changed uri://ed-fi.org/OperationalStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Closed Closed Closed uri://ed-fi.org/OperationalStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Future Future Future uri://ed-fi.org/OperationalStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Inactive Inactive Inactive uri://ed-fi.org/OperationalStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
New New New uri://ed-fi.org/OperationalStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reopened Reopened Reopened uri://ed-fi.org/OperationalStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EducationOrganization.OperationalStatus (optional)

Canonical UDM resource Class

OperationalUnitDimension #

/ed-fi/operationalUnitDimensions

The NCES operational unit accounting dimension. This dimension is used to segregate costs by school and operational unit such as physical location, department, or other method.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.OperationalUnitDimension edfi.OperationalUnitDimensionReportingTag
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Code
Code
String
VARCHAR(16)
required
identity
ODS/API identity
The code representation of the account operational unit dimension. max length 16 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for which the account operational unit dimension is valid. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CodeName
CodeName
String
VARCHAR(100)
optional A description of the account operational unit dimension. max length 100 characters; optional Ed-Fi field source pass-through
ReportingTag
ReportingTags
Reference
DescriptorProperty
Allowed values: governed ReportingTagsDescriptor values; no matching handbook descriptor entry found.
optional collection Optional tag for accountability reporting. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • ChartOfAccount.OperationalUnitOperationalUnitDimension (optional)

UDM primitive/simple type Number

OptimalNumberOfSeats #

dictionary-only type

The number of seats that is most favorable to the class.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Number

OrderOfAssignment #

dictionary-only type

Describes whether the assignment is this the staff member's primary assignment, secondary assignment, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Number

OrderOfDisability #

dictionary-only type

The order by severity of individual's disabilities: 1- Primary, 2 - Secondary, 3 - Tertiary, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Number

OrderOfPriority #

dictionary-only type

The order of priority assigned to telephone numbers to define which number to attempt first, second, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 1
Used By (1)
  • Telephone.OrderOfPriority (optional)

Canonical UDM specialization Subclass

OrganizationDepartment #

/ed-fi/organizationDepartments

An organizational unit of another education organization, often devoted to a particular academic discipline, area of study, or organization function.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.OrganizationDepartment
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
OrganizationDepartmentId
OrganizationDepartmentId
Number
INT
required
identity
ODS/API identity
The unique identification code for the organization department. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AcademicSubject
AcademicSubjectDescriptor
Reference
DescriptorProperty
Allowed values: AcademicSubjectDescriptor (21 Ed-Fi seed values)
optional The intended major subject area of the department. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ParentEducationOrganization
ParentEducationOrganizationReference
Reference
DomainEntityProperty
optional Relates the organization department to an education organization it is an organizational unit of. object reference; optional Ed-Fi field source pass-through

UDM primitive/simple type Number

OrganizationDepartmentId #

dictionary-only type

The unique identification code for the organization department. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Date

OriginalECIServicesDate #

dictionary-only type

The month, date, and year when an infant or toddler, from birth through age 2, began participating in the early childhood intervention (ECI) program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.OriginalECIServicesDate (optional)

UDM common/composite Composite Part

OtherName #

dictionary-only type

Other names (e.g., alias, nickname, previous legal name) associated with an individual.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PersonalTitlePrefix
PersonalTitlePrefix
String
VARCHAR(30)
optional A prefix used to denote the title, degree, position, or seniority of the individual. max length 30 characters; optional Ed-Fi field source pass-through
FirstName
FirstName
String
VARCHAR(75)
required A name given to an individual at birth, baptism, or during another naming ceremony, or through legal change. max length 75 characters; required Ed-Fi field source pass-through
MiddleName
MiddleName
String
VARCHAR(75)
optional A secondary name given to an individual at birth, baptism, or during another naming ceremony. max length 75 characters; optional Ed-Fi field source pass-through
LastSurname
LastSurname
String
VARCHAR(75)
required The name borne in common by members of a family. max length 75 characters; required Ed-Fi field source pass-through
GenerationCodeSuffix
GenerationCodeSuffix
String
VARCHAR(10)
optional An appendage, if any, used to denote an individual's generation in his family (e.g., Jr., Sr., III). max length 10 characters; optional Ed-Fi field source pass-through
OtherNameType
OtherNameTypeDescriptor
Reference
DescriptorProperty
Allowed values: OtherNameTypeDescriptor (4 Ed-Fi seed values)
required
identity
ODS/API identity
The types of alternate names for an individual. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (4)
  • Candidate.OtherName (optional collection)
  • Contact.OtherName (optional collection)
  • Staff.OtherName (optional collection)
  • Student.OtherName (optional collection)

Descriptor catalog Descriptor

OtherNameType #

/ed-fi/descriptors/otherNameTypeDescriptors

The types of alternate names for a person.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Discipline, Educator Preparation Program, Enrollment, Finance, Graduation, Intervention, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Student Health, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.OtherNameTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for OtherNameTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Alias Alias Alias uri://ed-fi.org/OtherNameTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nickname Nickname Nickname uri://ed-fi.org/OtherNameTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Name Other Name Other Name uri://ed-fi.org/OtherNameTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Previous Legal Name Previous Legal Name Previous Legal Name uri://ed-fi.org/OtherNameTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • OtherName.OtherNameType (required)

UDM common/composite Composite Part

PartialCourseTranscriptAwards #

dictionary-only type

A collection of partial credits and/or grades a student earned against the course over the session, used when awards of credit are incremental.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AwardDate
AwardDate
Date
DATE
required
identity
ODS/API identity
The date the partial credits and/or grades were awarded or earned. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EarnedCredits
EarnedCredits
Number
DECIMAL(9, 3)
required The number of credits a student earned for completing a given course. numeric precision 9, scale 3; required Ed-Fi field source pass-through
MethodCreditEarned
MethodCreditEarnedDescriptor
Reference
DescriptorProperty
Allowed values: MethodCreditEarnedDescriptor (8 Ed-Fi seed values)
optional The method the credits were earned. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
LetterGradeEarned
LetterGradeEarned
String
VARCHAR(20)
optional The indicator of student performance as submitted by the instructor. max length 20 characters; optional Ed-Fi field source pass-through
NumericGradeEarned
NumericGradeEarned
String
VARCHAR(20)
optional The indicator of student performance as submitted by the instructor. max length 20 characters; optional Ed-Fi field source pass-through
Used By (1)
  • CourseTranscript.PartialCourseTranscriptAwards (optional collection)

UDM primitive/simple type Number

Participants #

dictionary-only type

The number of participants observed in the study.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Descriptor catalog Descriptor

Participation #

/ed-fi/descriptors/participationDescriptors

This descriptor defines participation in a yearly English language assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.ParticipationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ParticipationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Attempted Attempted Attempted but did not complete uri://ed-fi.org/ParticipationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Completed Completed Completed uri://ed-fi.org/ParticipationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Did Not Take Did Not Take Did Not Take uri://ed-fi.org/ParticipationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unable Due To Medical Emergency Unable Due To Medical Emergency Unable Due To Medical Emergency uri://ed-fi.org/ParticipationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EnglishLanguageProficiencyAssessment.Participation (optional)

Descriptor catalog Descriptor

ParticipationStatus #

/ed-fi/descriptors/participationStatusDescriptors

The student's program participation status.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.ParticipationStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ParticipationStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Active in Program Active in Program Active in Program uri://ed-fi.org/ParticipationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible Eligible Eligible uri://ed-fi.org/ParticipationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Eligible Not Eligible Not Eligible uri://ed-fi.org/ParticipationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Referred Referred Referred uri://ed-fi.org/ParticipationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Refused Refused Refused uri://ed-fi.org/ParticipationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • ProgramParticipationStatus.ParticipationStatus (required)

Canonical UDM resource Class

Path #

/ed-fi/paths

A scheme for achieving milestones organized by phases for students to follow and be tracked against.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Path
Source
UDM Handbook entry
Physical SQL snippets
edfi.Path
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization associated with the path of study. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PathName
PathName
String
VARCHAR(60)
required
identity
ODS/API identity
The name of the path of study. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GraduationPlan
GraduationPlanReference
Reference
DomainEntityProperty
optional The graduation plan associated with the path of study. object reference; optional Ed-Fi field source pass-through
Used By (2)
  • PathPhase.Path (required)
  • StudentPath.Path (required)

Canonical UDM resource Class

PathMilestone #

/ed-fi/pathMilestones

A significant event or achievement as part of a path of study.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Path
Source
UDM Handbook entry
Physical SQL snippets
edfi.PathMilestone
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PathMilestoneName
PathMilestoneName
String
VARCHAR(60)
required
identity
ODS/API identity
The descriptive name of the path milestone. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PathMilestoneType
PathMilestoneTypeDescriptor
Reference
DescriptorProperty
Allowed values: PathMilestoneTypeDescriptor (17 Ed-Fi seed values)
required
identity
ODS/API identity
The type of milestone defined for the student's path of study. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PathMilestoneCode
PathMilestoneCode
String
VARCHAR(60)
optional The code or identifier associated with an element associated with the path milestone. max length 60 characters; optional Ed-Fi field source pass-through
PathMilestoneDescription
PathMilestoneDescription
String
VARCHAR(1024)
optional Additional information describing the path milestone to be achieved. max length 1024 characters; optional Ed-Fi field source pass-through
Used By (2)
  • PathPhase.PathMilestone (optional collection)
  • StudentPathMilestoneStatus.PathMilestone (required)

UDM primitive/simple type String

PathMilestoneCode #

dictionary-only type

The code or identifier associated with an element that is associated with the path milestone.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 60
Used By (1)
  • PathMilestone.PathMilestoneCode (optional)

UDM primitive/simple type String

PathMilestoneName #

dictionary-only type

The name of the milestone associated with the defined path of study.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 0
  • max length: 60
Used By (1)
  • PathMilestone.PathMilestoneName (required)

Descriptor catalog Descriptor

PathMilestoneStatus #

/ed-fi/descriptors/pathMilestoneStatusDescriptors

The student's status associated with the path milestone.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Path
Source
UDM Handbook entry
Physical SQL snippets
edfi.PathMilestoneStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PathMilestoneStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Attempting Student is working on the milestone The student has begun working on this milestone but has not yet completed it. uri://ed-fi.org/PathMilestoneStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Complete Student has successfully completed this milestone The student has successfully completed this milestone. uri://ed-fi.org/PathMilestoneStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fail Student did not meet the requirements for this milestone The student did not meet the requirements for this milestone. uri://ed-fi.org/PathMilestoneStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
In Remediation Student is reworking the milestone after not meeting initial requirements The student is working to meet the requirements for this milestone after not initially meeting them. uri://ed-fi.org/PathMilestoneStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pass Student has met the requirements for this milestone The student has met the requirements for this milestone. uri://ed-fi.org/PathMilestoneStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Scheduled Student is scheduled to begin working on this milestone The student is scheduled to begin working on this milestone. uri://ed-fi.org/PathMilestoneStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Waiver Student excused from milestone requirements The student has been excused from meeting the requirements for this milestone. uri://ed-fi.org/PathMilestoneStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • PathMilestoneStatusEvent.PathMilestoneStatus (required)

UDM primitive/simple type Date

PathMilestoneStatusDate #

dictionary-only type

The month, day and year associated with the change in the path milestone status. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PathMilestoneStatusEvent.PathMilestoneStatusDate (identity)

UDM common/composite Composite Part

PathMilestoneStatusEvent #

dictionary-only type

An event recongnizing the change in status for the path milestone.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PathMilestoneStatus
PathMilestoneStatusDescriptor
Reference
DescriptorProperty
Allowed values: PathMilestoneStatusDescriptor (7 Ed-Fi seed values)
required
identity
ODS/API identity
The student's status associated with the path milestone. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PathMilestoneStatusDate
PathMilestoneStatusDate
Date
DATE
required
identity
ODS/API identity
The month, day and year associated with the change in the path milestone status. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Description
Description
String
VARCHAR(1024)
optional Additional information associated with the path milestone status achieved. max length 1024 characters; optional Ed-Fi field source pass-through
Used By (1)
  • StudentPathMilestoneStatus.PathMilestoneStatusEvent (optional)

Descriptor catalog Descriptor

PathMilestoneType #

/ed-fi/descriptors/pathMilestoneTypeDescriptors

The type of milestone defined for the student's path.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Path
Source
UDM Handbook entry
Physical SQL snippets
edfi.PathMilestoneTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (17 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PathMilestoneTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Anchor Course Foundational course for the chosen field of study A core course that provides a foundation for the educator candidate's knowledge and skills in the chosen field of study. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Apprenticeship Work-based learning with an experienced educator A structured learning experience where the educator candidate works alongside an experienced educator in a real-world classroom setting, applying theoretical knowledge and developing practical teaching skills. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Assessment Assessment evaluation of knowledge and teaching skills An assessment evaluation of the educator candidate's knowledge, skills, and understanding of specific subject matter or teaching competencies, such as licensure exams, program assessments, or performance-based assessments. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Certification Professional certification in a specific area of education A credential or certification obtained by the educator candidate that demonstrates specific knowledge and skills in a particular area of education, such as special education, early childhood education, or English as a Second Language (ESL). uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Certification Exam Standardized test for licensure or certification A standardized exam administered by a state or national agency to assess the educator candidate's knowledge and skills required for licensure or certification in the field of education. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Clinical Teaching Supervised teaching experience in a classroom A supervised teaching experience in a real-world classroom setting where the educator candidate applies theoretical knowledge and skills under the guidance of a mentor teacher. This experience is a critical component of the teacher preparation program. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Course Required coursework in the education program A specific course within the educator preparation program, covering a range of topics relevant to the field of education, such as pedagogy, curriculum development, classroom management, and special education. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CPE (Continuing Professional Education) Continuing professional education course for educators Continuing professional education courses or workshops designed to enhance the educator candidate's knowledge and skills beyond the initial teacher preparation program, such as specialized training in instructional technology, differentiated instruction, or culturally responsive teaching. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Diploma Document awarded upon program completion The official document awarded to the educator candidate upon successful completion of all the requirements of the teacher preparation program, signifying their readiness to enter the teaching profession. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Documentation Required documents for the program Specific documents or files that the educator candidate must submit as part of the teacher preparation program, such as transcripts, background checks, licensure applications, or professional portfolios. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Employment Relevant work experience for educators Prior work experience in a relevant field, such as tutoring, mentoring, or working with youth, that can enhance the educator candidate's understanding of diverse learners and classroom dynamics. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Endorsement Endorsement to teach a specific subject An endorsement or authorization to teach a specific subject area or grade level, which may be added to the educator candidate's teaching license upon successful completion of additional coursework or assessments. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fieldwork Practical experience in an educational setting Practical experience in a real-world educational setting, such as observing classrooms, assisting teachers, or participating in school-based activities, providing the educator candidate with valuable insights into the teaching profession. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Honor Recognition of academic achievement Recognition of outstanding academic achievement or professional accomplishments by the educator candidate. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Project Culminating project demonstrating skills and knowledge A culminating project undertaken by the educator candidate that demonstrates their ability to apply knowledge and skills learned throughout the teacher preparation program, such as developing a curriculum unit, conducting research, or creating a professional portfolio. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Service Community service activities for educators Community service activities undertaken by the educator candidate, such as tutoring, mentoring, or volunteering in schools or community organizations, which provide valuable experience in working with diverse populations and fostering a sense of social responsibility. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Training Specialized training on teaching skills or areas Training sessions or workshops focused on specific teaching skills or areas of expertise, such as technology integration, classroom management strategies, or special education instructional methods. uri://ed-fi.org/PathMilestoneTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • PathMilestone.PathMilestoneType (required)

UDM primitive/simple type String

PathName #

dictionary-only type

The name of the defined path of study.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 0
  • max length: 60
Used By (1)
  • Path.PathName (required)

Canonical UDM resource Class

PathPhase #

/ed-fi/pathPhases

A stage in the process of a student achieving milestones.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Path
Source
UDM Handbook entry
Physical SQL snippets
edfi.PathPhase edfi.PathPhasePathMilestone
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Path
PathReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the path of study associated with the phase. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PathPhaseName
PathPhaseName
String
VARCHAR(60)
required
identity
ODS/API identity
The name of the phase associated with the path of study. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PathPhaseSequence
PathPhaseSequence
Number
INT
optional Indicates the number in order, starting with 1, that the phases are organized into. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
PhasePathDescription
PhasePathDescription
String
VARCHAR(1024)
optional Additional information describing the path's phase. max length 1024 characters; optional Ed-Fi field source pass-through
PathMilestone
PathMilestones
Reference
DomainEntityProperty
optional collection A reference to the path milestones associated with this phase. object reference; optional collection Ed-Fi field source pass-through
Used By (2)
  • StudentPathMilestoneStatus.PathPhase (optional)
  • StudentPathPhaseStatus.PathPhase (required)

UDM primitive/simple type String

PathPhaseName #

dictionary-only type

The name of the phase within a defined path of study.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 0
  • max length: 60
Used By (1)
  • PathPhase.PathPhaseName (required)

UDM primitive/simple type Number

PathPhaseSequence #

dictionary-only type

Indicates the number in order, starting with 1, that the phases are organized into.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Descriptor catalog Descriptor

PathPhaseStatus #

/ed-fi/descriptors/pathPhaseStatusDescriptors

The student's status associated with entering or completing the path phase.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Path
Source
UDM Handbook entry
Physical SQL snippets
edfi.PathPhaseStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PathPhaseStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Active Candidate is currently engaged in this path phase The educator candidate is currently engaged in this phase of the path of study. uri://ed-fi.org/PathPhaseStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Complete Candidate has successfully finished this path phase The educator candidate has successfully finished this phase of the path of study. uri://ed-fi.org/PathPhaseStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Inactive Candidate is not currently enrolled or active in this path phase The educator candidate is not currently enrolled in or actively working on this phase of the path of study. This may be due to a temporary leave of absence or withdrawal from the program. uri://ed-fi.org/PathPhaseStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • PathPhaseStatusEvent.PathPhaseStatus (required)

UDM primitive/simple type Date

PathPhaseStatusDate #

dictionary-only type

The month, day and year on which the status was achieved for the path phase. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PathPhaseStatusEvent.PathPhaseStatusDate (identity)

UDM common/composite Composite Part

PathPhaseStatusEvent #

dictionary-only type

An event recognizing the change in status for the path phase.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PathPhaseStatus
PathPhaseStatusDescriptor
Reference
DescriptorProperty
Allowed values: PathPhaseStatusDescriptor (3 Ed-Fi seed values)
required
identity
ODS/API identity
The student's status associated with entering or completing the path phase. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PathPhaseStatusDate
PathPhaseStatusDate
Date
DATE
required
identity
ODS/API identity
The month, day and year on which the status was achieved for the path phase. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Used By (1)
  • StudentPathPhaseStatus.PathPhaseStatusEvent (optional collection)

UDM primitive/simple type Boolean

PellGrantRecipient #

dictionary-only type

Indicates a person who receives Pell Grant aid.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • FinancialAid.PellGrantRecipient (optional)

UDM primitive/simple type Percent

Percent #

dictionary-only type

A proportion in relation to the whole (as measured in parts per one hundred).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (4)
  • StaffSectionAssociation.PercentageContribution (optional)
  • LocalEducationAgencyFederalFunds.SchoolImprovementReservedFundsPercentage (optional)
  • LocalEducationAgencyFederalFunds.StateAssessmentAdministrationFunding (optional)
  • ObjectiveAssessment.PercentOfAssessment (optional)

UDM primitive/simple type Number

PercentageRanking #

dictionary-only type

The academic percentage rank of a student in relation to his or her graduating class (e.g., 95%, 80%, 50%).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Descriptor catalog Descriptor

PerformanceBaseConversion #

/ed-fi/descriptors/performanceBaseConversionDescriptors

Defines standard levels of competency or performance that can be used for dashboard visualizations: advanced, proficient, basic, and below basic.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.PerformanceBaseConversionDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PerformanceBaseConversionDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Advanced Advanced Advanced uri://ed-fi.org/PerformanceBaseConversionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Basic Basic Basic uri://ed-fi.org/PerformanceBaseConversionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Below Basic Below Basic Below Basic uri://ed-fi.org/PerformanceBaseConversionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fail Fail Fail uri://ed-fi.org/PerformanceBaseConversionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pass Pass Pass uri://ed-fi.org/PerformanceBaseConversionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Proficient Proficient Proficient uri://ed-fi.org/PerformanceBaseConversionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Well Below Basic Well Below Basic Well Below Basic uri://ed-fi.org/PerformanceBaseConversionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • LearningStandardGrade.PerformanceBaseConversion (optional)
  • Grade.PerformanceBaseConversion (optional)

Canonical UDM resource Class

PerformanceEvaluation #

/ed-fi/performanceEvaluations

A performance evaluation of an educator, typically regularly scheduled and uniformly applied, composed of one or more evaluations.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.PerformanceEvaluation edfi.PerformanceEvaluationGradeLevel edfi.PerformanceEvaluationRatingLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PerformanceEvaluationTitle
PerformanceEvaluationTitle
String
VARCHAR(50)
required
identity
ODS/API identity
An assigned unique identifier for the performance evaluation. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PerformanceEvaluationDescription
PerformanceEvaluationDescription
String
VARCHAR(255)
optional The long description of the performance evaluation. max length 255 characters; optional Ed-Fi field source pass-through
Term
TermDescriptor
Reference
DescriptorProperty
Allowed values: TermDescriptor (16 Ed-Fi seed values)
required
identity
ODS/API identity
The term for the session during the school year. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PerformanceEvaluationType
PerformanceEvaluationTypeDescriptor
Reference
DescriptorProperty
Allowed values: PerformanceEvaluationTypeDescriptor (10 Ed-Fi seed values)
required
identity
ODS/API identity
The type of performance evaluation conducted. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PerformanceEvaluationRatingLevel
RatingLevels
Reference
CommonProperty
optional collection The descriptive level(s) of ratings (cut scores) for the evaluation. object reference; optional collection Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The identifier for the school year. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationPeriod
EvaluationPeriodDescriptor
Reference
DescriptorProperty
Allowed values: EvaluationPeriodDescriptor (11 Ed-Fi seed values)
required
identity
ODS/API identity
The period for the evaluation. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization for which the evaluation was developed and in which it was employed. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AcademicSubject
AcademicSubjectDescriptor
Reference
DescriptorProperty
Allowed values: AcademicSubjectDescriptor (21 Ed-Fi seed values)
optional The description of the content or subject area of the performance evaluation. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradeLevel
GradeLevels
Reference
DescriptorProperty
Allowed values: governed GradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The grade levels involved with the performance evaluation. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (2)
  • Evaluation.PerformanceEvaluation (required)
  • PerformanceEvaluationRating.PerformanceEvaluation (required)

Canonical UDM resource Class

PerformanceEvaluationRating #

/ed-fi/performanceEvaluationRatings

The summary rating for a performance evaluation across all evaluation instruments for an individual educator.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.PerformanceEvaluationRating edfi.PerformanceEvaluationRatingResult edfi.PerformanceEvaluationRatingReviewer edfi.PerformanceEvaluationRatingReviewerReceivedTraining
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (12)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Person
PersonReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The person whose performance is being evaluated. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PerformanceEvaluation
PerformanceEvaluationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The performance evaluation definition being applied. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ActualDate
ActualDate
Date
DATE
required The month, day, and year on which the performance evaluation was conducted. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
Announced
Announced
Boolean
BOOLEAN
optional An indicator of whether the performance evaluation was announced or not. boolean true/false; optional Ed-Fi field source pass-through
Comments
Comments
String
VARCHAR(1024)
optional Any comments about the performance evaluation to be captured. max length 1024 characters; optional Ed-Fi field source pass-through
CoteachingStyleObserved
CoteachingStyleObservedDescriptor
Reference
DescriptorProperty
Allowed values: CoteachingStyleObservedDescriptor (0 Ed-Fi seed values)
optional A type of co-teaching observed as part of the performance evaluation. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ActualDuration
ActualDuration
Number
INT
optional The actual or estimated number of minutes during which the performance evaluation was conducted. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
PerformanceEvaluationRatingResult
Results
Reference
CommonProperty
optional collection The numerical summary rating or score for the performance evaluation. object reference; optional collection Ed-Fi field source pass-through
PerformanceEvaluationRatingLevel
PerformanceEvaluationRatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: PerformanceEvaluationRatingLevelDescriptor (9 Ed-Fi seed values)
optional The rating level achieved based upon the rating or score. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Reviewer
Reviewers
Reference
CommonProperty
optional collection The person(s) that conducted the performance evaluation. object reference; optional collection Ed-Fi field source pass-through
ScheduleDate
ScheduleDate
Date
DATE
optional The month, day, and year on which the performance evaluation was scheduled. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ActualTime
ActualTime
Time
TIME
optional An indication of the time at which the performance evaluation was conducted. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
Used By (1)
  • EvaluationRating.PerformanceEvaluationRating (required)

Descriptor catalog Descriptor

PerformanceEvaluationRatingLevel #

/ed-fi/descriptors/performanceEvaluationRatingLevelDescriptors

The rating levels for performance evaluations.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.PerformanceEvaluationRatingLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PerformanceEvaluationRatingLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accomplished Accomplished Accomplished uri://ed-fi.org/PerformanceEvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Demonstrated Demonstrated Demonstrated uri://ed-fi.org/PerformanceEvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Developing Developing Developing uri://ed-fi.org/PerformanceEvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Effective Effective Effective uri://ed-fi.org/PerformanceEvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Highly Effective Highly Effective Highly Effective uri://ed-fi.org/PerformanceEvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ineffective Ineffective Ineffective uri://ed-fi.org/PerformanceEvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minimally Effective Minimally Effective Minimally Effective uri://ed-fi.org/PerformanceEvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Demonstrated Not Demonstrated Not Demonstrated uri://ed-fi.org/PerformanceEvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Skilled Skilled Skilled uri://ed-fi.org/PerformanceEvaluationRatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • PerformanceEvaluationRating.PerformanceEvaluationRatingLevel (optional)

Descriptor catalog Descriptor

PerformanceEvaluationType #

/ed-fi/descriptors/performanceEvaluationTypeDescriptors

The type of performance evaluation conducted.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.PerformanceEvaluationTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (10 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PerformanceEvaluationTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Formal Eval Formal Eval Formal evaluation uri://ed-fi.org/PerformanceEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Formal Obs Formal Obs Formal Observation uri://ed-fi.org/PerformanceEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Informal Obs Informal Obs Informal Observation uri://ed-fi.org/PerformanceEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Self Eval Self Eval Formal evaluation self-rating uri://ed-fi.org/PerformanceEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Self Formal Obs Self Formal Obs Formal Observation self-rating uri://ed-fi.org/PerformanceEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Self Informal Obs Self Informal Obs Informal Observation self-rating uri://ed-fi.org/PerformanceEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Growth Student Growth Student Growth Measures uri://ed-fi.org/PerformanceEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Survey Student Survey Student Survey uri://ed-fi.org/PerformanceEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Work Student Work Student Work uri://ed-fi.org/PerformanceEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Walkthrough Walkthrough Walkthrough uri://ed-fi.org/PerformanceEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • PerformanceEvaluation.PerformanceEvaluationType (required)

UDM common/composite Composite Part

PerformanceLevel #

dictionary-only type

A performance level value that describes student proficiency, generally a cut score.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PerformanceLevel
PerformanceLevelDescriptor
Reference
DescriptorProperty
Allowed values: PerformanceLevelDescriptor (14 Ed-Fi seed values)
required
identity
ODS/API identity
A specification of which performance level value describes the student proficiency. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssessmentReportingMethod
AssessmentReportingMethodDescriptor
Reference
DescriptorProperty
Allowed values: AssessmentReportingMethodDescriptor (44 Ed-Fi seed values)
required
identity
ODS/API identity
The method that the instructor of the class uses to report the performance and achievement. It may be a qualitative method such as individualized teacher comments or a quantitative method such as a letter or numerical grade. In some cases, more than one type of reporting method may be used. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PerformanceLevelIndicatorName
PerformanceLevelIndicatorName
String
VARCHAR(60)
optional The name of the indicator being measured for a collection of performance level values. max length 60 characters; optional Ed-Fi field source pass-through
Used By (2)
  • StudentObjectiveAssessment.PerformanceLevel (optional collection)
  • StudentAssessment.PerformanceLevel (optional collection)

Descriptor catalog Descriptor

PerformanceLevel #

/ed-fi/descriptors/performanceLevelDescriptors

This descriptor defines various levels or thresholds for performance on the assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment, Enrollment, Graduation
Source
UDM Handbook entry
Physical SQL snippets
edfi.PerformanceLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (14 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PerformanceLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Above Benchmark DEPRECATED: Above Benchmark DEPRECATED: Above Benchmark uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Advanced Advanced Advanced uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Basic Basic Basic uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Below Basic Below Basic Below Basic uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Commended Performance DEPRECATED: Commended Performance DEPRECATED: Commended Performance uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Did Not Meet Standard Did Not Meet Standard Did Not Meet Standard uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fail Fail Fail uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Met Standard Met Standard Met Standard uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minimum DEPRECATED: Minimum DEPRECATED: Minimum uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pass Pass Pass uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Proficient DEPRECATED: Proficient DEPRECATED: Proficient uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Satisfactory DEPRECATED: Satisfactory DEPRECATED: Satisfactory uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unsatisfactory DEPRECATED: Unsatisfactory DEPRECATED: Unsatisfactory uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Well Below Basic Well Below Basic Well Below Basic uri://ed-fi.org/PerformanceLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • AssessmentPerformanceLevel.PerformanceLevel (required)
  • PerformanceLevel.PerformanceLevel (required)

UDM primitive/simple type String

PerformanceLevelIndicatorName #

dictionary-only type

The name of the indicator being measured for a collection of performance level values.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (2)
  • AssessmentPerformanceLevel.PerformanceLevelIndicatorName (optional)
  • PerformanceLevel.PerformanceLevelIndicatorName (optional)

UDM common/composite Composite Part

Period #

dictionary-only type

The time period for which the information is applicable or effective.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year for the start of the period. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year for the end of the period. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (8)
  • Address.Period (optional collection)
  • EducationOrganizationIndicator.Period (optional collection)
  • StudentCharacteristic.Period (optional collection)
  • StudentIndicator.Period (optional collection)
  • AssessmentAdministration.AssessmentAdministrationPeriod (optional collection)
  • StudentIEPGoal.GoalAchievementPeriod (optional)
  • StudentPath.Period (optional collection)
  • StudentPathPhaseStatus.Period (optional collection)

UDM primitive/simple type Number

PeriodSequence #

dictionary-only type

The sequential order of this period relative to other periods.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Canonical UDM resource Class

Person #

/ed-fi/persons

This entity represents a human being.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.Person
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PersonId
PersonId
String
VARCHAR(32)
required
identity
ODS/API identity
A unique alphanumeric code assigned to a person. max length 32 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SourceSystem
SourceSystemDescriptor
Reference
DescriptorProperty
Allowed values: SourceSystemDescriptor (4 Ed-Fi seed values)
required
identity
ODS/API identity
This descriptor defines the originating record source system for the person. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (13)
  • SurveyResponsePersonTargetAssociation.Person (required)
  • SurveySectionResponsePersonTargetAssociation.Person (required)
  • Reviewer.ReviewerPerson (optional)
  • Candidate.Person (optional)
  • CertificationExamResult.Person (required)
  • Contact.Person (optional)
  • Credential.Person (optional)
  • Goal.Person (required)
  • PerformanceEvaluationRating.Person (required)
  • ProfessionalDevelopmentEventAttendance.Person (required)
  • Staff.Person (optional)
  • Student.Person (optional)
  • SurveyResponse.Person (optional)

Descriptor catalog Descriptor

PersonalInformationVerification #

/ed-fi/descriptors/personalInformationVerificationDescriptors

The evidence presented to verify one's personal identity; for example: driver's license, passport, birth certificate, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Assessment Registration, Discipline, Educator Preparation Program, Enrollment, Finance, Graduation, Intervention, Recruiting and Staffing, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Student Health, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.PersonalInformationVerificationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PersonalInformationVerificationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Baptismal or church certificate Baptismal or church certificate Baptismal or church certificate uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Birth certificate Birth certificate Birth certificate uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Drivers license Drivers license Drivers license uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Entry in family Bible Entry in family Bible Entry in family Bible uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hospital certificate Hospital certificate Hospital certificate uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Immigration document/visa Immigration document/visa Immigration document/visa uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Life insurance policy Life insurance policy Life insurance policy uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other non-official document Other non-official document Other non-official document uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other official document Other official document Other official document uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parents affidavit Parents affidavit Parents affidavit uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Passport Passport Passport uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physicians certificate Physicians certificate Physicians certificate uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Previously verified school records Previously verified school records Previously verified school records uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State-issued ID State-issued ID State-issued ID uri://ed-fi.org/PersonalInformationVerificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • IdentificationDocument.PersonalInformationVerification (required)

UDM primitive/simple type String

PersonalTitlePrefix #

dictionary-only type

A prefix used to denote the title, degree, position, or seniority of the person.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 30
Used By (2)
  • OtherName.PersonalTitlePrefix (optional)
  • Name.PersonalTitlePrefix (optional)

Descriptor catalog Descriptor

PlatformType #

/ed-fi/descriptors/platformTypeDescriptors

The platforms with which an assessment may be delivered.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment, Assessment Registration
Source
UDM Handbook entry
Physical SQL snippets
edfi.PlatformTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PlatformTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Computer-based Computer-based Computer-based uri://ed-fi.org/PlatformTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Paper-based Paper-based Paper-based uri://ed-fi.org/PlatformTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • Assessment.PlatformType (optional collection)
  • StudentAssessment.PlatformType (optional)
  • StudentAssessmentRegistration.PlatformType (optional)

Descriptor catalog Descriptor

PopulationServed #

/ed-fi/descriptors/populationServedDescriptors

The type of students the Section is offered and tailored to.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Bell Schedule, Credential, Intervention, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.PopulationServedDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PopulationServedDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adult Basic Education Students Adult Basic Education Students Adult Basic Education Students uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bilingual Students Bilingual Students Bilingual Students uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career and Technical Education Students Career and Technical Education Students Career and Technical Education Students uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Compensatory/Remedial Education Students Compensatory/Remedial Education Students Compensatory/Remedial Education Students uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Economic Disadvantaged Economic Disadvantaged Economic Disadvantaged uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ESL Students ESL Students ESL Students uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Gifted and Talented Students Gifted and Talented Students Gifted and Talented Students uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Honors Students Honors Students Honors Students uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Migrant Students Migrant Students Migrant Students uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regular Students Regular Students Regular Students uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Students Special Education Students Special Education Students uri://ed-fi.org/PopulationServedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (6)
  • InterventionEffectiveness.PopulationServed (required)
  • Certification.PopulationServed (optional)
  • Intervention.PopulationServed (optional collection)
  • InterventionPrescription.PopulationServed (optional collection)
  • InterventionStudy.PopulationServed (optional collection)
  • Section.PopulationServed (optional)

UDM primitive/simple type String

PositionControlNumber #

dictionary-only type

Identifier assigned to the position to be filled.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 20
Used By (1)
  • OpenStaffPosition.PositionControlNumber (optional)

UDM primitive/simple type String

PositionTitle #

dictionary-only type

The descriptive name of an individual's position.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 100
Used By (3)
  • StaffEducationOrganizationAssignmentAssociation.PositionTitle (optional)
  • CurrentPosition.PositionTitle (required)
  • OpenStaffPosition.PositionTitle (optional)

UDM common/composite Composite Part

PossibleResponse #

dictionary-only type

A possible response to an assessment item.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ResponseValue
ResponseValue
String
VARCHAR(60)
required
identity
ODS/API identity
The response value, often an option number or code value (e.g., 1, 2, A, B, true, false). max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ResponseDescription
ResponseDescription
String
VARCHAR(1024)
optional Additional text provided to define the response value. max length 1024 characters; optional Ed-Fi field source pass-through
CorrectResponse
CorrectResponse
Boolean
BOOLEAN
optional Indicates the response is correct. boolean true/false; optional Ed-Fi field source pass-through
Used By (1)
  • AssessmentItem.PossibleResponse (optional collection)

UDM primitive/simple type String

PostalCode #

dictionary-only type

The five or nine digit zip code or overseas postal code portion of an address.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 17
Used By (1)
  • Address.PostalCode (required)

Descriptor catalog Descriptor

PostingResult #

/ed-fi/descriptors/postingResultDescriptors

Indication of whether the position was filled or retired without filling.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.PostingResultDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PostingResultDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Position Filled Position Filled Position Filled uri://ed-fi.org/PostingResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Posting Cancelled Posting Cancelled Posting Cancelled uri://ed-fi.org/PostingResultDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • OpenStaffPosition.PostingResult (optional)

Canonical UDM resource Class

PostSecondaryEvent #

/ed-fi/postSecondaryEvents

This entity captures significant post-secondary events during a student's high school tenure (e.g., FAFSA application or college application, acceptance, and enrollment) or during a student's enrollment at a post-secondary institution.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Graduation
Source
UDM Handbook entry
Physical SQL snippets
edfi.PostSecondaryEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EventDate
EventDate
Date
DATE
required
identity
ODS/API identity
The date the event occurred or was recorded. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PostSecondaryEventCategory
PostSecondaryEventCategoryDescriptor
Reference
DescriptorProperty
Allowed values: PostSecondaryEventCategoryDescriptor (11 Ed-Fi seed values)
required
identity
ODS/API identity
The post secondary event that is logged. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PostSecondaryInstitution
PostSecondaryInstitutionReference
Reference
DomainEntityProperty
optional An organization that provides educational programs for individuals who have completed or otherwise left educational programs in secondary school(s). object reference; optional Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student associated with the post secondary event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Descriptor catalog Descriptor

PostSecondaryEventCategory #

/ed-fi/descriptors/postSecondaryEventCategoryDescriptors

A code describing the type of post-secondary event (e.g., college application or acceptance).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Graduation
Source
UDM Handbook entry
Physical SQL snippets
edfi.PostSecondaryEventCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PostSecondaryEventCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Certification Received Certification Received Certification Received uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College Acceptance College Acceptance College Acceptance uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College Application College Application College Application uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College Degree Received College Degree Received College Degree Received uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College Enrollment College Enrollment College Enrollment uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College Exit Date College Exit Date College Exit Date uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College Selection College Selection College Selection uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FAFSA Application FAFSA Application FAFSA Application uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Remedial Enrollment - ELA Remedial Enrollment - ELA Remedial Enrollment - ELA uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Remedial Enrollment - Math Remedial Enrollment - Math Remedial Enrollment - Math uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Interest Student Interest Student Interest uri://ed-fi.org/PostSecondaryEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • PostSecondaryEvent.PostSecondaryEventCategory (required)

Canonical UDM specialization Subclass

PostSecondaryInstitution #

/ed-fi/postSecondaryInstitutions

An organization that provides educational programs for individuals who have completed or otherwise left educational programs in secondary school(s).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization, Graduation
Source
UDM Handbook entry
Physical SQL snippets
edfi.PostSecondaryInstitution edfi.PostSecondaryInstitutionMediumOfInstruction
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PostSecondaryInstitutionId
PostSecondaryInstitutionId
Number
INT
required
identity
ODS/API identity
The ID of the post secondary institution. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MediumOfInstruction
MediumOfInstructions
Reference
DescriptorProperty
Allowed values: governed MediumOfInstructionsDescriptor values; no matching handbook descriptor entry found.
optional collection The categories in which an institution serves the students. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PostSecondaryInstitutionLevel
PostSecondaryInstitutionLevelDescriptor
Reference
DescriptorProperty
Allowed values: PostSecondaryInstitutionLevelDescriptor (11 Ed-Fi seed values)
optional A classification of whether a post secondary institution's highest level of offering is a program of 4-years or higher (4 year), 2-but-less-than 4-years (2 year), or less than 2-years. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AdministrativeFundingControl
AdministrativeFundingControlDescriptor
Reference
DescriptorProperty
Allowed values: AdministrativeFundingControlDescriptor (3 Ed-Fi seed values)
optional A classification of whether a postsecondary institution is operated by publicly elected or appointed officials (public control) or by privately elected or appointed officials and derives its major source of funds from private sources (private control). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
FederalLocaleCode
FederalLocaleCodeDescriptor
Reference
DescriptorProperty
Allowed values: FederalLocaleCodeDescriptor (4 Ed-Fi seed values)
optional The federal locale code associated with an education organization. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (2)
  • PostSecondaryEvent.PostSecondaryInstitution (optional)
  • School.PostSecondaryInstitution (optional)

UDM primitive/simple type Number

PostSecondaryInstitutionId #

dictionary-only type

The ID of the post secondary institution. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Descriptor catalog Descriptor

PostSecondaryInstitutionLevel #

/ed-fi/descriptors/postSecondaryInstitutionLevelDescriptors

A classification of a postsecondary institution's highest level of offering. Default values are based on the Carnegie Classifications.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization, Graduation
Source
UDM Handbook entry
Physical SQL snippets
edfi.PostSecondaryInstitutionLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PostSecondaryInstitutionLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Associate's College Associate's College Institutions at which the highest level degree awarded is an associate's degree. The institutions are sorted into nine categories based on the intersection of two factors: disciplinary focus (transfer, career and technical or mixed) and dominant student type (traditional, nontraditional or mixed). Excludes Special Focus Institutions and Tribal Colleges. uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
At least 2 but less than 4 years DEPRECATED: At least 2 but less than 4 years DEPRECATED: At least 2 but less than 4 years uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Baccalaureate College Baccalaureate College Includes institutions where baccalaureate or higher degrees represent at least 50 percent of all degrees but where fewer than 50 master's degrees or 20 doctoral degrees were awarded during the update year. (Some institutions above the master's degree threshold are also included.) Excludes Special Focus Institutions and Tribal Colleges. uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Baccalaureate/Associate's College Baccalaureate/Associate's College Includes four-year colleges (by virtue of having at least one baccalaureate degree program) that conferred more than 50 percent of degrees at the associate's level . Excludes Special Focus Institutions, Tribal Colleges, and institutions that have sufficient master's or doctoral degrees to fall into those categories. uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Doctoral University Doctoral University Includes institutions that awarded at least 20 research/scholarship doctoral degrees during the update year and also institutions with below 20 research/scholarship doctoral degrees that awarded at least 30 professional practice doctoral degrees in at least 2 programs. Excludes Special Focus Institutions and Tribal Colleges. uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Four or more years DEPRECATED: Four or more years DEPRECATED: Four or more years uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Less than 2 years (below associate) DEPRECATED: Less than 2 years (below associate) DEPRECATED: Less than 2 years (below associate) uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master's College or University Master's College or University Generally includes institutions that awarded at least 50 master's degrees and fewer than 20 doctoral degrees during the update year (with occasional exceptions). Excludes Special Focus Institutions and Tribal Colleges. uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Focus Institution/Four-Year Special Focus Institution/Four-Year Four-year institutions where a high concentration of degrees is in a single field or set of related fields. Excludes Tribal Colleges. uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Focus Institution/Two-Year Special Focus Institution/Two-Year Two-year institutions where a high concentration of degrees is in a single field or set of related fields. Excludes Tribal Colleges. uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tribal College Tribal College Colleges and universities that are members of the American Indian Higher Education Consortium, as identified in IPEDS Institutional Characteristics. uri://ed-fi.org/PostSecondaryInstitutionLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • PostSecondaryInstitution.PostSecondaryInstitutionLevel (optional)

UDM primitive/simple type Number

PreScreeningRating #

dictionary-only type

The rating initially assigned to the prospect prior to an official screening.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Descriptor catalog Descriptor

PreviousCareer #

/ed-fi/descriptors/previousCareerDescriptors

The previous career(s) of an individual.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.PreviousCareerDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PreviousCareerDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accounting Accounting Accounting uri://ed-fi.org/PreviousCareerDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Consulting Consulting Consulting uri://ed-fi.org/PreviousCareerDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Education Education Education uri://ed-fi.org/PreviousCareerDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Maintenance Maintenance Maintenance uri://ed-fi.org/PreviousCareerDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medical Medical Medical uri://ed-fi.org/PreviousCareerDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/PreviousCareerDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Science and Technology Science and Technology Science and Technology uri://ed-fi.org/PreviousCareerDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Candidate.PreviousCareer (optional)

UDM primitive/simple type Boolean

PrimaryContactStatus #

dictionary-only type

Indicator of whether the person is a primary contact for the student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentContactAssociation.PrimaryContactStatus (optional)

UDM primitive/simple type Boolean

PrimaryEmailAddressIndicator #

dictionary-only type

An indication that the electronic mail address should be used as the principal electronic mail address for an individual or organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ElectronicMail.PrimaryEmailAddressIndicator (optional)

UDM primitive/simple type Boolean

PrimaryIndicator #

dictionary-only type

True if service is a primary service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CTEProgramService.PrimaryIndicator (optional)

UDM primitive/simple type Boolean

PrimaryIndicator #

dictionary-only type

True if service is a primary service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • HomelessProgramService.PrimaryIndicator (optional)

UDM primitive/simple type Boolean

PrimaryIndicator #

dictionary-only type

True if service is a primary service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • LanguageInstructionProgramService.PrimaryIndicator (optional)

UDM primitive/simple type Boolean

PrimaryIndicator #

dictionary-only type

True if service is a primary service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • MigrantEducationProgramService.PrimaryIndicator (optional)

UDM primitive/simple type Boolean

PrimaryIndicator #

dictionary-only type

True if service is a primary service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • NeglectedOrDelinquentProgramService.PrimaryIndicator (optional)

UDM primitive/simple type Boolean

PrimaryIndicator #

dictionary-only type

True if service is a primary service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • SchoolFoodServiceProgramService.PrimaryIndicator (optional)

UDM primitive/simple type Boolean

PrimaryIndicator #

dictionary-only type

True if service is a primary service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Service.PrimaryIndicator (optional)

UDM primitive/simple type Boolean

PrimaryIndicator #

dictionary-only type

True if service is a primary service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • SpecialEducationProgramService.PrimaryIndicator (optional)

UDM primitive/simple type Boolean

PrimaryIndicator #

dictionary-only type

True if service is a primary service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • TitleIPartAProgramService.PrimaryIndicator (optional)

Descriptor catalog Descriptor

PrimaryLearningDeviceAccess #

/ed-fi/descriptors/primaryLearningDeviceAccessDescriptors

An indication of whether the primary learning device is shared or not shared with another individual.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.PrimaryLearningDeviceAccessDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PrimaryLearningDeviceAccessDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Not Shared Not Shared The primary learning device is not shared with another individual. uri://ed-fi.org/PrimaryLearningDeviceAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shared Shared The primary learning device is shared with another individual. uri://ed-fi.org/PrimaryLearningDeviceAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown It is not known whether the primary learning device is shared with another individual. uri://ed-fi.org/PrimaryLearningDeviceAccessDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentEducationOrganizationAssociation.PrimaryLearningDeviceAccess (optional)

Descriptor catalog Descriptor

PrimaryLearningDeviceAwayFromSchool #

/ed-fi/descriptors/primaryLearningDeviceAwayFromSchoolDescriptors

The type of device the student uses most often to complete learning activities away from school.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.PrimaryLearningDeviceAwayFromSchoolDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PrimaryLearningDeviceAwayFromSchoolDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Chromebook Chromebook A Chromebook is the type of device the student uses most often to complete learning activities away from school. uri://ed-fi.org/PrimaryLearningDeviceAwayFromSchoolDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Desktop Computer Desktop Computer A desktop computer is the type of device the student uses most often to complete learning activities away from school. uri://ed-fi.org/PrimaryLearningDeviceAwayFromSchoolDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Laptop Computer Laptop Computer A Laptop Computer is the type of device the student uses most often to complete learning activities away from school. uri://ed-fi.org/PrimaryLearningDeviceAwayFromSchoolDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
None None There is not a device the student uses to complete learning activities away from school. uri://ed-fi.org/PrimaryLearningDeviceAwayFromSchoolDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other The type of device the student uses most often to complete learning activities away from school is not yet defined. uri://ed-fi.org/PrimaryLearningDeviceAwayFromSchoolDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Smartphone Smartphone A Smartphone is the type of device the student uses most often to complete learning activities away from school. uri://ed-fi.org/PrimaryLearningDeviceAwayFromSchoolDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tablet Tablet A Tablet is the type of device the student uses most often to complete learning activities away from school. uri://ed-fi.org/PrimaryLearningDeviceAwayFromSchoolDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentEducationOrganizationAssociation.PrimaryLearningDeviceAwayFromSchool (optional)

Descriptor catalog Descriptor

PrimaryLearningDeviceProvider #

/ed-fi/descriptors/primaryLearningDeviceProviderDescriptors

The provider of the primary learning device.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.PrimaryLearningDeviceProviderDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PrimaryLearningDeviceProviderDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Other Other The provider of the primary learning device is not yet defined. uri://ed-fi.org/PrimaryLearningDeviceProviderDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Personal Personal The provider of the primary learning device is the student or guardian. uri://ed-fi.org/PrimaryLearningDeviceProviderDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School The provider of the primary learning device is the school. uri://ed-fi.org/PrimaryLearningDeviceProviderDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentEducationOrganizationAssociation.PrimaryLearningDeviceProvider (optional)

UDM primitive/simple type Boolean

PrimaryProvider #

dictionary-only type

Indicates that this provider was the Primary Service Provider.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Provider.PrimaryProvider (optional)

UDM primitive/simple type Boolean

PrimaryProvider #

dictionary-only type

Primary ServiceProvider.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ServiceProvider.PrimaryProvider (optional)

UDM primitive/simple type Boolean

PrimarySchool #

dictionary-only type

Indicates if a given enrollment record should be considered the primary record for a student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolAssociation.PrimarySchool (optional)

UDM primitive/simple type Boolean

PriorityForServices #

dictionary-only type

Report migratory children who are classified as having "priority for services" because they are failing, or most at risk of failing to meet the state's challenging state academic content standards and challenging state student academic achievement standards, and their education has been interrupted during the regular school year.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentMigrantEducationProgramAssociation.PriorityForServices (required)

UDM primitive/simple type Boolean

PrivateCTEProgram #

dictionary-only type

Indicator that student participated in career and technical education at private agencies or institutions that are reported by the state for purposes of the Elementary and Secondary Education Act (ESEA). Students in private institutions which do not receive Perkins funding are reported only in the state file.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentCTEProgramAssociation.PrivateCTEProgram (optional)

UDM primitive/simple type Date

ProbationCompleteDate #

dictionary-only type

The date the probation period ended or is scheduled to end.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffEducationOrganizationEmploymentAssociation.ProbationCompleteDate (optional)

Canonical UDM resource Class

ProfessionalDevelopmentEvent #

/ed-fi/professionalDevelopmentEvents

Information about a professional development event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProfessionalDevelopmentEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ProfessionalDevelopmentTitle
ProfessionalDevelopmentTitle
String
VARCHAR(60)
required
identity
ODS/API identity
The title or name for a professional development. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required
identity
ODS/API identity
Namespace for the event, typically associated with the issuing authority. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProfessionalDevelopmentOfferedBy
ProfessionalDevelopmentOfferedByDescriptor
Reference
DescriptorProperty
Allowed values: ProfessionalDevelopmentOfferedByDescriptor (4 Ed-Fi seed values)
required A code describing an organization that is offering a specific professional development. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TotalHours
TotalHours
Number
INT
optional The number of total hours the professional development contains. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Required
Required
Boolean
BOOLEAN
optional An indication of whether a teacher candidate is active in a professional development. boolean true/false; optional Ed-Fi field source pass-through
MultipleSession
MultipleSession
Boolean
BOOLEAN
optional An indication of whether a professional development event is comprised of multiple sessions. boolean true/false; optional Ed-Fi field source pass-through
ProfessionalDevelopmentReason
ProfessionalDevelopmentReason
String
VARCHAR(60)
optional The reported reason for a teacher candidate's professional development. max length 60 characters; optional Ed-Fi field source pass-through
Used By (1)
  • ProfessionalDevelopmentEventAttendance.ProfessionalDevelopmentEvent (required)

Canonical UDM resource Class

ProfessionalDevelopmentEventAttendance #

/ed-fi/professionalDevelopmentEventAttendances

This event entity represents the recording of whether a staff is in attendance for professional development.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProfessionalDevelopmentEventAttendance
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Person
PersonReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The person associated with the professional development attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProfessionalDevelopmentEvent
ProfessionalDevelopmentEventReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The professional development event the attendance event is associated to. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AttendanceDate
AttendanceDate
Date
DATE
required
identity
ODS/API identity
Date for this attendance event. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AttendanceEventCategory
AttendanceEventCategoryDescriptor
Reference
DescriptorProperty
Allowed values: AttendanceEventCategoryDescriptor (7 Ed-Fi seed values)
required A code describing the attendance event. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AttendanceEventReason
AttendanceEventReason
String
VARCHAR(255)
optional The reported reason for a teacher candidate's absence. max length 255 characters; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

ProfessionalDevelopmentOfferedBy #

/ed-fi/descriptors/professionalDevelopmentOfferedByDescriptors

The descriptor holds the organization that a professional development is offered by.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProfessionalDevelopmentOfferedByDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProfessionalDevelopmentOfferedByDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
District District District uri://ed-fi.org/ProfessionalDevelopmentOfferedByDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Educator Preparation Provider Educator Preparation Provider Educator Preparation Provider uri://ed-fi.org/ProfessionalDevelopmentOfferedByDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/ProfessionalDevelopmentOfferedByDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State State uri://ed-fi.org/ProfessionalDevelopmentOfferedByDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • ProfessionalDevelopmentEvent.ProfessionalDevelopmentOfferedBy (required)

UDM primitive/simple type String

ProfessionalDevelopmentReason #

dictionary-only type

The reported reason for a teacher candidate's professional development.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 60
Used By (1)
  • ProfessionalDevelopmentEvent.ProfessionalDevelopmentReason (optional)

UDM primitive/simple type String

ProfessionalDevelopmentTitle #

dictionary-only type

The title or name for a professional development.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 60
Used By (1)
  • ProfessionalDevelopmentEvent.ProfessionalDevelopmentTitle (required)

Descriptor catalog Descriptor

Proficiency #

/ed-fi/descriptors/proficiencyDescriptors

This descriptor defines proficiency levels for a yearly English language assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProficiencyDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProficiencyDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Not Proficient Not Proficient Not Proficient uri://ed-fi.org/ProficiencyDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Proficient Proficient Proficient uri://ed-fi.org/ProficiencyDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EnglishLanguageProficiencyAssessment.Proficiency (optional)

UDM primitive/simple type String

ProfileThumbnail #

dictionary-only type

Locator reference for the student photo. The specification for that reference is left to local definition.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (2)
  • StudentEducationOrganizationAssociation.ProfileThumbnail (optional)
  • Candidate.ProfileThumbnail (optional)

Canonical UDM resource Class

Program #

/ed-fi/programs

This entity represents any program designed to work in conjunction with, or as a supplement to, the main academic program. Programs may provide instruction, training, services, or benefits through federal, state, or local agencies. Programs may also include organized extracurricular activities for students.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.Program edfi.ProgramCharacteristic edfi.ProgramLearningStandard edfi.ProgramSponsor
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the program to an education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramId
ProgramId
String
VARCHAR(20)
optional A unique number or alphanumeric code assigned to a program by a school, school system, a state, or other agency or entity. max length 20 characters; optional Ed-Fi field source pass-through
ProgramName
ProgramName
String
VARCHAR(60)
required
identity
ODS/API identity
The formal name of the program of instruction, training, services, or benefits available through federal, state, or local agencies. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramType
ProgramTypeDescriptor
Reference
DescriptorProperty
Allowed values: ProgramTypeDescriptor (61 Ed-Fi seed values)
required
identity
ODS/API identity
The type of program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ProgramCharacteristic
Characteristics
Reference
DescriptorProperty
Allowed values: governed CharacteristicsDescriptor values; no matching handbook descriptor entry found.
optional collection Reflects important characteristics of the program, such as categories or particular indications. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ProgramSponsor
Sponsors
Reference
DescriptorProperty
Allowed values: governed SponsorsDescriptor values; no matching handbook descriptor entry found.
optional collection Ultimate and intermediate providers of funds for a particular educational or service program or activity, or for an individual's participation in the program or activity (e.g., Federal, State, ESC, District, School, Private Organization). object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
LearningStandard
LearningStandards
Reference
DomainEntityProperty
optional collection Learning standard followed by this program. object reference; optional collection Ed-Fi field source pass-through
Used By (12)
  • GeneralStudentProgramAssociation.Program (required)
  • StaffProgramAssociation.Program (required)
  • StudentSectionAssociation.Program (optional collection)
  • StudentSpecialEducationProgramEligibilityAssociation.Program (required)
  • SurveyProgramAssociation.Program (required)
  • SectionOrProgramChoice.Program (required collection)
  • Cohort.Program (optional collection)
  • CourseTranscript.CourseProgram (optional collection)
  • ProgramEvaluation.Program (required)
  • RestraintEvent.Program (optional collection)
  • Section.Program (optional collection)
  • StudentProgramAttendanceEvent.Program (required)

Descriptor catalog Descriptor

ProgramAssignment #

/ed-fi/descriptors/programAssignmentDescriptors

This descriptor defines the name of the education program for which a teacher is assigned to a school.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgramAssignmentDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProgramAssignmentDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Bilingual/English as a Second Language Bilingual/English as a Second Language Bilingual/English as a Second Language uri://ed-fi.org/ProgramAssignmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ProgramAssignmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regular Education Regular Education Regular Education uri://ed-fi.org/ProgramAssignmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Special Education Special Education uri://ed-fi.org/ProgramAssignmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Title I-Academic Title I-Academic Title I-Academic uri://ed-fi.org/ProgramAssignmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Title I-Non-Academic Title I-Non-Academic Title I-Non-Academic uri://ed-fi.org/ProgramAssignmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • StaffSchoolAssociation.ProgramAssignment (required)
  • OpenStaffPosition.ProgramAssignment (optional)

Descriptor catalog Descriptor

ProgramCharacteristic #

/ed-fi/descriptors/programCharacteristicDescriptors

This descriptor defines important characteristics of the Program, such as categories or particular indications.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgramCharacteristicDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/ProgramCharacteristicDescriptor.xml ยท status missing_404
Used By (1)
  • Program.ProgramCharacteristic (optional collection)

Canonical UDM resource Class

ProgramDimension #

/ed-fi/programDimensions

The NCES program accounting dimension. A program is defined by the NCES as a plan of activities and procedures designed to accomplish a predetermined objective or set of objectives. These are often categorized into broad program areas such as regular education, special education, vocational education, other PK-12 instructional, nonpublic school, adult and continuing education, community and junior college education, community services, and co-curricular or extracurricular activities.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgramDimension edfi.ProgramDimensionReportingTag
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Code
Code
String
VARCHAR(16)
required
identity
ODS/API identity
The code representation of the account program dimension. max length 16 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for which the account program dimension is valid. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CodeName
CodeName
String
VARCHAR(100)
optional A description of the account program dimension. max length 100 characters; optional Ed-Fi field source pass-through
ReportingTag
ReportingTags
Reference
DescriptorProperty
Allowed values: governed ReportingTagsDescriptor values; no matching handbook descriptor entry found.
optional collection Optional tag for accountability reporting. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • ChartOfAccount.ProgramProgramDimension (optional)

Canonical UDM resource Class

ProgramEvaluation #

/ed-fi/programEvaluations

An evaluation instrument applied to evaluate a student in the context of a program. Student evaluations are typically applied by a staff member based upon a rubric.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgramEvaluation edfi.ProgramEvaluationLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Program
ProgramReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program associated with the student program evaluation. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramEvaluationTitle
ProgramEvaluationTitle
String
VARCHAR(50)
required
identity
ODS/API identity
An assigned unique identifier for the student program evaluation. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramEvaluationType
ProgramEvaluationTypeDescriptor
Reference
DescriptorProperty
Allowed values: ProgramEvaluationTypeDescriptor (6 Ed-Fi seed values)
required
identity
ODS/API identity
The type of program evaluation conducted. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ProgramEvaluationPeriod
ProgramEvaluationPeriodDescriptor
Reference
DescriptorProperty
Allowed values: ProgramEvaluationPeriodDescriptor (11 Ed-Fi seed values)
required
identity
ODS/API identity
The name of the period for the program evaluation. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ProgramEvaluationDescription
ProgramEvaluationDescription
String
VARCHAR(255)
optional The long description of the program evaluation. max length 255 characters; optional Ed-Fi field source pass-through
ProgramEvaluationLevel
Levels
Reference
CommonProperty
optional collection The descriptive level(s) of ratings (cut scores) for the program evaluation. object reference; optional collection Ed-Fi field source pass-through
EvaluationMaxNumericRating
EvaluationMaxNumericRating
Number
DECIMAL(6, 3)
optional The maximum summary numerical rating or score for the program evaluation. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
EvaluationMinNumericRating
EvaluationMinNumericRating
Number
DECIMAL(6, 3)
optional The minimum summary numerical rating or score for the program evaluation. If omitted, assumed to be 0.0 numeric precision 6, scale 3; optional Ed-Fi field source pass-through
Used By (3)
  • ProgramEvaluationElement.ProgramEvaluation (required)
  • ProgramEvaluationObjective.ProgramEvaluation (required)
  • StudentProgramEvaluation.ProgramEvaluation (required)

UDM primitive/simple type String

ProgramEvaluationDescription #

dictionary-only type

The long description of the Evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (3)
  • ProgramEvaluation.ProgramEvaluationDescription (optional)
  • ProgramEvaluationElement.ProgramEvaluationElementDescription (optional)
  • ProgramEvaluationObjective.ProgramEvaluationObjectiveDescription (optional)

Canonical UDM resource Class

ProgramEvaluationElement #

/ed-fi/programEvaluationElements

The lowest level elements or criterion of a students's performance that is being evaluated, typically by a rubric.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgramEvaluationElement edfi.ProgramEvaluationElementProgramEvaluationLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ProgramEvaluation
ProgramEvaluationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program evaluation associated with this program evaluation element. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramEvaluationObjective
ProgramEvaluationObjectiveReference
Reference
DomainEntityProperty
optional The program evaluation objective associated with this program evaluation element, if applicable. object reference; optional Ed-Fi field source pass-through
ProgramEvaluationElementTitle
ProgramEvaluationElementTitle
String
VARCHAR(50)
required
identity
ODS/API identity
The name or title of the program evaluation element. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramEvaluationElementDescription
ProgramEvaluationElementDescription
String
VARCHAR(255)
optional The long description of the program evaluation element. max length 255 characters; optional Ed-Fi field source pass-through
ElementProgramEvaluationLevel
ProgramEvaluationLevels
Reference
CommonProperty
optional collection The descriptive level(s) of ratings (cut scores) for the program evaluation element. object reference; optional collection Ed-Fi field source pass-through
ElementMaxNumericRating
ElementMaxNumericRating
Number
DECIMAL(6, 3)
optional The maximum summary numerical rating or score for the program evaluation element. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
ElementMinNumericRating
ElementMinNumericRating
Number
DECIMAL(6, 3)
optional The minimum summary numerical rating or score for the program evaluation element. If omitted, assumed to be 0.0. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
ElementSortOrder
ElementSortOrder
Number
INT
optional The sort order of this program evaluation element. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (2)
  • StudentEvaluationElement.ProgramEvaluationElement (required)
  • EvaluationRubricDimension.ProgramEvaluationElement (required)

UDM primitive/simple type String

ProgramEvaluationElementTitle #

dictionary-only type

The name or title of the program evaluation element

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 50
Used By (1)
  • ProgramEvaluationElement.ProgramEvaluationElementTitle (required)

UDM common/composite Composite Part

ProgramEvaluationLevel #

dictionary-only type

The descriptive level(s) of ratings (cut scores) for evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
RatingLevel
RatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: RatingLevelDescriptor (9 Ed-Fi seed values)
required
identity
ODS/API identity
The title for a level of rating or evaluation band (e.g., Excellent, Acceptable, Needs Improvement, Unacceptable). object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MinNumericRating
MinNumericRating
Number
DECIMAL(6, 3)
optional The minimum numerical rating or score to achieve the evaluation rating level. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
MaxNumericRating
MaxNumericRating
Number
DECIMAL(6, 3)
optional The maximum numerical rating or score to achieve the evaluation rating level. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
Used By (3)
  • ProgramEvaluation.ProgramEvaluationLevel (optional collection)
  • ProgramEvaluationElement.ElementProgramEvaluationLevel (optional collection)
  • ProgramEvaluationObjective.ObjectiveProgramEvaluationLevel (optional collection)

Canonical UDM resource Class

ProgramEvaluationObjective #

/ed-fi/programEvaluationObjectives

A subcomponent of a ProgramEvaluation, a specific student objective or domain of performance that is being evaluated.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgramEvaluationObjective edfi.ProgramEvaluationObjectiveProgramEvaluationLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ProgramEvaluation
ProgramEvaluationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program evaluation associated with this program evaluation objective. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramEvaluationObjectiveTitle
ProgramEvaluationObjectiveTitle
String
VARCHAR(50)
required
identity
ODS/API identity
The name or title of the program evaluation objective. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramEvaluationObjectiveDescription
ProgramEvaluationObjectiveDescription
String
VARCHAR(255)
optional The long description of the program evaluation objective. max length 255 characters; optional Ed-Fi field source pass-through
ObjectiveProgramEvaluationLevel
ProgramEvaluationLevels
Reference
CommonProperty
optional collection The descriptive level(s) of ratings (cut scores) for the program evaluation objective. object reference; optional collection Ed-Fi field source pass-through
ObjectiveMaxNumericRating
ObjectiveMaxNumericRating
Number
DECIMAL(6, 3)
optional The maximum summary numerical rating or score for the program evaluation objective. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
ObjectiveMinNumericRating
ObjectiveMinNumericRating
Number
DECIMAL(6, 3)
optional The minimum summary numerical rating or score for the program evaluation objective. If omitted, assumed to be 0.0 numeric precision 6, scale 3; optional Ed-Fi field source pass-through
ObjectiveSortOrder
ObjectiveSortOrder
Number
INT
optional The sort order of this program evaluation objective. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (2)
  • StudentEvaluationObjective.ProgramEvaluationObjective (required)
  • ProgramEvaluationElement.ProgramEvaluationObjective (optional)

UDM primitive/simple type String

ProgramEvaluationObjectiveTitle #

dictionary-only type

The name or title of the program evaluation objective.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 50
Used By (1)
  • ProgramEvaluationObjective.ProgramEvaluationObjectiveTitle (required)

Descriptor catalog Descriptor

ProgramEvaluationPeriod #

/ed-fi/descriptors/programEvaluationPeriodDescriptors

The period for the evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgramEvaluationPeriodDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProgramEvaluationPeriodDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Beginning of year Beginning of year Beginning of year uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
End of Year End of Year End of Year uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fall Semester Fall Fall uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First Quarter First Quarter First Quarter uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fourth Quarter Fourth Quarter Fourth Quarter uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mid-Year Mid-Year Mid-Year uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second Quarter Second Quarter Second Quarter uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Spring Semester Spring Semester Spring Semester uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Summer Semester Summer Semester Summer Semester uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Third Quarter Third Quarter Third Quarter uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Winter Semester Winter Semester Winter Semester uri://ed-fi.org/ProgramEvaluationPeriodDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • ProgramEvaluation.ProgramEvaluationPeriod (required)

UDM primitive/simple type String

ProgramEvaluationTitle #

dictionary-only type

An assigned unique identifier for the program evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 50
Used By (1)
  • ProgramEvaluation.ProgramEvaluationTitle (required)

Descriptor catalog Descriptor

ProgramEvaluationType #

/ed-fi/descriptors/programEvaluationTypeDescriptors

The type of the evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgramEvaluationTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProgramEvaluationTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Observation Observation Observation uri://ed-fi.org/ProgramEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Peer Peer Peer uri://ed-fi.org/ProgramEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Principal Principal Principal uri://ed-fi.org/ProgramEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Growth Student Growth Student Growth Measures uri://ed-fi.org/ProgramEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student survey Student survey Student survey uri://ed-fi.org/ProgramEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher survey Teacher survey Teacher survey uri://ed-fi.org/ProgramEvaluationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • ProgramEvaluation.ProgramEvaluationType (required)

UDM primitive/simple type String

ProgramId #

dictionary-only type

A unique number or alphanumeric code assigned to a program by a school, school system, a state, or other agency or entity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 20
Used By (2)
  • EducatorPreparationProgram.ProgramId (optional)
  • Program.ProgramId (optional)

UDM primitive/simple type String

ProgramName #

dictionary-only type

The formal name of the program of instruction, training, services, or benefits available through federal, state, or local agencies.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • Program.ProgramName (required)

UDM common/composite Composite Part

ProgramParticipationStatus #

dictionary-only type

The status of the student's program participation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ParticipationStatus
ParticipationStatusDescriptor
Reference
DescriptorProperty
Allowed values: ParticipationStatusDescriptor (5 Ed-Fi seed values)
required
identity
ODS/API identity
The student's program participation status. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
StatusBeginDate
StatusBeginDate
Date
DATE
required
identity
ODS/API identity
The date the student's program participation status began. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StatusEndDate
StatusEndDate
Date
DATE
optional The date the student's program participation status ended. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
DesignatedBy
DesignatedBy
String
VARCHAR(60)
optional The person, organization, or department that designated the participation status. max length 60 characters; optional Ed-Fi field source pass-through
Used By (1)
  • GeneralStudentProgramAssociation.ProgramParticipationStatus (optional collection)

Descriptor catalog Descriptor

ProgramSponsor #

/ed-fi/descriptors/programSponsorDescriptors

Ultimate and intermediate providers of funds for a particular educational or service program or activity or for an individual's participation in the program or activity (e.g., Federal, State, ESC, District, School, Private Org).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgramSponsorDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (12 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProgramSponsorDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Business Business Business uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Education organization network Education organization network Education organization network uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Education Service Center Education Service Center Education Service Center uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal government Federal government Federal government uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Local Education Agency Local Education Agency Local Education Agency uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-profit organization Non-profit organization Non-profit organization uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Postsecondary institution Postsecondary institution Postsecondary institution uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Private organization Private organization Private organization uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Religious organization Religious organization Religious organization uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State Education Agency State Education Agency State Education Agency uri://ed-fi.org/ProgramSponsorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Program.ProgramSponsor (optional collection)

Descriptor catalog Descriptor

ProgramType #

/ed-fi/descriptors/programTypeDescriptors

The formal name of the program of instruction, training, services, or benefits available through federal, state, or local agencies.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Educator Preparation Program, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgramTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (61 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProgramTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adult/Continuing Education Adult/Continuing Education Adult/Continuing Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alternative Education Alternative Education Alternative Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Athletics Athletics Athletics uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bilingual Bilingual Bilingual uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bilingual Summer Bilingual Summer Bilingual Summer uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career and Technical Education Career and Technical Education Career and Technical Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cocurricular Programs Cocurricular Programs Cocurricular Programs uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
College Preparatory College Preparatory College Preparatory uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Community Service Program Community Service Program Community Service Program uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Community/Junior College Education Program Community/Junior College Education Program Community/Junior College Education Program uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Compensatory Services for Disadvantaged Students Compensatory Services for Disadvantaged Students Compensatory Services for Disadvantaged Students uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Counseling Services Counseling Services Counseling Services uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
District-Funded GED District-Funded GED District-Funded GED uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Head Start Early Head Start Early Head Start uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Intervention Services Part C Early Intervention Services Part C Early Intervention Services Part C uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
English as a Second Language (ESL) English as a Second Language (ESL) English as a Second Language (ESL) uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Even Start Even Start Even Start uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Expelled Education Expelled Education Expelled Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Extended Day/Child Care Services Extended Day/Child Care Services Extended Day/Child Care Services uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fee For Service Fee For Service Fee For Service uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Foreign Exchange Foreign Exchange Foreign Exchange uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Gifted and Talented Gifted and Talented Gifted and Talented uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Head Start Head Start Head Start uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health Services Program Health Services Program Health Services Program uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High School Equivalency Program (HSEP) High School Equivalency Program (HSEP) High School Equivalency Program (HSEP) uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Home Visiting Home Visiting Home Visiting uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Homeless Homeless Homeless uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IDEA IDEA IDEA uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Immigrant Education Immigrant Education Immigrant Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Independent Study Independent Study Independent Study uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Indian Education Indian Education Indian Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
International Baccalaureate International Baccalaureate International Baccalaureate uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kindergarten - Extended Day Kindergarten - Extended Day Kindergarten - Extended Day uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kindergarten - Full Day Kindergarten - Full Day Kindergarten - Full Day uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kindergarten - Half Day Kindergarten - Half Day Kindergarten - Half Day uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Library/Media Services Program Library/Media Services Program Library/Media Services Program uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Magnet/Special Program Emphasis Magnet/Special Program Emphasis Magnet/Special Program Emphasis uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Migrant Education Migrant Education Migrant Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Neglected and Delinquent Program Neglected and Delinquent Program Neglected and Delinquent Program uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Optional Flexible School Day Program (OFSDP) Optional Flexible School Day Program (OFSDP) Optional Flexible School Day Program (OFSDP) uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Prekindergarten - Extended Day Prekindergarten - Extended Day Prekindergarten - Extended Day uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Prekindergarten - Full Day Prekindergarten - Full Day Prekindergarten - Full Day uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Prekindergarten - Half Day Prekindergarten - Half Day Prekindergarten - Half Day uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Preschool Special Education Preschool Special Education Preschool Special Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Public Preschool Public Preschool Public Preschool uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regular Education Regular Education Regular Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Remedial Education Remedial Education Remedial Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Section 504 Placement Section 504 Placement Section 504 Placement uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Service Learning Service Learning Service Learning uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Special Education Special Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Retention/Dropout Prevention Student Retention/Dropout Prevention Student Retention/Dropout Prevention uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student School Food Service Student School Food Service Student School Food Service uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Substance Abuse Education/Prevention Substance Abuse Education/Prevention Substance Abuse Education/Prevention uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Support Support Support uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher Professional Development/Mentoring Teacher Professional Development/Mentoring Teacher Professional Development/Mentoring uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Technical Preparatory Technical Preparatory Technical Preparatory uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Title I Part A Title I Part A Title I Part A uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Title I Part D Subpart 1 Title I Part D Subpart 1 Title I Part D Subpart 1 uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Title I Part D Subpart 2 Title I Part D Subpart 2 Title I Part D Subpart 2 uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vocational Education Vocational Education Vocational Education uri://ed-fi.org/ProgramTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • EducatorPreparationProgram.ProgramType (required)
  • Program.ProgramType (required)

Descriptor catalog Descriptor

Progress #

/ed-fi/descriptors/progressDescriptors

This descriptor defines yearly progress or growth from last year's assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgressDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProgressDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
No Progress No Progress No Progress uri://ed-fi.org/ProgressDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Proficient Proficient Proficient uri://ed-fi.org/ProgressDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Progress Progress Progress uri://ed-fi.org/ProgressDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EnglishLanguageProficiencyAssessment.Progress (optional)

Descriptor catalog Descriptor

ProgressLevel #

/ed-fi/descriptors/progressLevelDescriptors

This descriptor defines progress measured from pre- to post-test.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProgressLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProgressLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Negative Grade Negative Grade Negative Grade uri://ed-fi.org/ProgressLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No Change No Change No Change uri://ed-fi.org/ProgressLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Up More Than One Grade Up More Than One Grade Up More Than One Grade uri://ed-fi.org/ProgressLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Up One Grade Up One Grade Up One Grade uri://ed-fi.org/ProgressLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • StudentNeglectedOrDelinquentProgramAssociation.ELAProgressLevel (optional)
  • StudentNeglectedOrDelinquentProgramAssociation.MathematicsProgressLevel (optional)

Canonical UDM resource Class

ProjectDimension #

/ed-fi/projectDimensions

The NCES project accounting dimension. The project dimension reporting code permits school districts to accumulate expenditures to meet a variety of specialized reporting requirements at the local, state, and federal levels.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProjectDimension edfi.ProjectDimensionReportingTag
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Code
Code
String
VARCHAR(16)
required
identity
ODS/API identity
The code representation of the account project dimension. max length 16 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for which the account project dimension is valid. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CodeName
CodeName
String
VARCHAR(100)
optional A description of the account project dimension. max length 100 characters; optional Ed-Fi field source pass-through
ReportingTag
ReportingTags
Reference
DescriptorProperty
Allowed values: governed ReportingTagsDescriptor values; no matching handbook descriptor entry found.
optional collection Optional tag for accountability reporting. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • ChartOfAccount.ProjectProjectDimension (optional)

UDM primitive/simple type Date

ProjectedGraduationDate #

dictionary-only type

The month and year the student is projected to graduate.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentAcademicRecord.ProjectedGraduationDate (optional)

UDM common/composite Composite Part

Provider #

dictionary-only type

The student's special education service provider, either internal or external.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
FirstName
FirstName
String
VARCHAR(75)
required
identity
ODS/API identity
A name given to an individual at birth, baptism, or during another naming ceremony, or through legal change. max length 75 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LastSurname
LastSurname
String
VARCHAR(75)
required
identity
ODS/API identity
The name borne in common by members of a family. max length 75 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
MiddleName
MiddleName
String
VARCHAR(75)
optional A secondary name given to an individual at birth, baptism, or during another naming ceremony. max length 75 characters; optional Ed-Fi field source pass-through
PrimaryProvider
PrimaryProvider
Boolean
BOOLEAN
optional Indicates that this provider was the Primary Service Provider. boolean true/false; optional Ed-Fi field source pass-through
ProviderCode
ProviderCode
String
VARCHAR(16)
optional A code assigned to the service provider. max length 16 characters; optional Ed-Fi field source pass-through
ServiceProviderType
ServiceProviderTypeDescriptor
Reference
DescriptorProperty
Allowed values: ServiceProviderTypeDescriptor (16 Ed-Fi seed values)
optional Indicates service provider type, including specialist, internal staff, external staff, etc. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Staff
StaffReference
Reference
DomainEntityProperty
optional The staff member providing the service, if applicable. object reference; optional Ed-Fi field source pass-through
Used By (1)
  • StudentIEPServiceDelivery.Provider (optional collection)

Descriptor catalog Descriptor

ProviderCategory #

/ed-fi/descriptors/providerCategoryDescriptors

This descriptor holds the category of the provider.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProviderCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (21 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProviderCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Care in your own home Care in your own home Care in your own home uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Center-EC DEPRECATED: Center-EC DEPRECATED: Center-EC uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Center-EC with SA DEPRECATED: Center-EC with SA DEPRECATED: Center-EC with SA uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Center-SA Only DEPRECATED: Center-SA Only DEPRECATED: Center-SA Only uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Child care center Child care center Child care center uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Community care Community care Community care uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Family child care home Family child care home Family child care home uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Family child care home - large Family child care home - large Family child care home - large uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Head Start and Early Head Start Head Start and Early Head Start Head Start and Early Head Start uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Licensed Day Care Center DEPRECATED: Licensed Day Care Center DEPRECATED: Licensed Day Care Center uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Licensed Family Child Care DEPRECATED: Licensed Family Child Care DEPRECATED: Licensed Family Child Care uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Licensed Large Family Child Care DEPRECATED: Licensed Large Family Child Care DEPRECATED: Licensed Large Family Child Care uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ministry care Ministry care Ministry care uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Applicable DEPRECATED: Not Applicable DEPRECATED: Not Applicable uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
On-premise child care On-premise child care On-premise child care uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Preschool Preschool Preschool uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Resident camps Resident camps Resident camps uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Residential treatment care Residential treatment care Residential treatment care uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School-age child care School-age child care School-age child care uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School-based child care School-based child care School-based child care uri://ed-fi.org/ProviderCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CommunityProvider.ProviderCategory (required)

Descriptor catalog Descriptor

ProviderProfitability #

/ed-fi/descriptors/providerProfitabilityDescriptors

This descriptor indicates the profitability status of the provider.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProviderProfitabilityDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProviderProfitabilityDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
ForProfit ForProfit ForProfit uri://ed-fi.org/ProviderProfitabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Government Run Government Run Government Run uri://ed-fi.org/ProviderProfitabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nonprofit Nonprofit Nonprofit uri://ed-fi.org/ProviderProfitabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CommunityProvider.ProviderProfitability (optional)

Descriptor catalog Descriptor

ProviderStatus #

/ed-fi/descriptors/providerStatusDescriptors

This descriptor defines the status of the provider.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization
Source
UDM Handbook entry
Physical SQL snippets
edfi.ProviderStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ProviderStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Active Active Active uri://ed-fi.org/ProviderStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Inactive Inactive Inactive uri://ed-fi.org/ProviderStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown Unknown uri://ed-fi.org/ProviderStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CommunityProvider.ProviderStatus (required)

UDM primitive/simple type Date

PublicationDate #

dictionary-only type

The date on which this content was first published.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PublicationDateChoice.PublicationDate (required)

UDM common/composite Composite Part

PublicationDateChoice #

dictionary-only type

This choice type allows for the recording of a content publication date or, if the full date is unknown, the year of publication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PublicationDate
PublicationDate
Date
DATE
required The date on which this content was first published. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
PublicationYear
PublicationYear
Number
SMALLINT
required The year at which this content was first published. integer range -32,768 to 32,767; required Ed-Fi field source pass-through
Used By (2)
  • ContentStandard.PublicationDateChoice (optional)
  • LearningResource.PublicationDateChoice (optional)

Descriptor catalog Descriptor

PublicationStatus #

/ed-fi/descriptors/publicationStatusDescriptors

The publication status of the document (i.e., Adopted, Draft, Published, Deprecated, Unknown).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment, Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.PublicationStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for PublicationStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adopted Adopted Adopted uri://ed-fi.org/PublicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Deprecated Deprecated Deprecated uri://ed-fi.org/PublicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Draft Draft Draft uri://ed-fi.org/PublicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Published Published Published uri://ed-fi.org/PublicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown Unknown uri://ed-fi.org/PublicationStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • ContentStandard.PublicationStatus (optional)

UDM primitive/simple type Year

PublicationYear #

dictionary-only type

The year at which this content was first published.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PublicationDateChoice.PublicationYear (required)

UDM primitive/simple type String

Publisher #

dictionary-only type

The organization credited with publishing the resource.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 50
Used By (1)
  • LearningResource.Publisher (optional)

UDM primitive/simple type Date

QualifyingArrivalDate #

dictionary-only type

The qualifying arrival date (QAD) is the date the child joins the worker who has already moved, or the date when the worker joins the child who has already moved. The QAD is the date that the child's eligibility for the MEP begins. The QAD is not affected by subsequent non-qualifying moves.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentMigrantEducationProgramAssociation.QualifyingArrivalDate (optional)

Canonical UDM resource Class

QuantitativeMeasure #

/ed-fi/quantitativeMeasures

A quantitative measure of the educator performance associated with an evaluation element.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.QuantitativeMeasure
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EvaluationElement
EvaluationElementReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The evaluation element associated with the quantitative measure. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
QuantitativeMeasureIdentifier
QuantitativeMeasureIdentifier
String
VARCHAR(64)
required
identity
ODS/API identity
An assigned unique identifier for the quantitative measure. max length 64 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
QuantitativeMeasureType
QuantitativeMeasureTypeDescriptor
Reference
DescriptorProperty
Allowed values: QuantitativeMeasureTypeDescriptor (5 Ed-Fi seed values)
optional The type of the quantitative measure. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
QuantitativeMeasureDatatype
QuantitativeMeasureDatatypeDescriptor
Reference
DescriptorProperty
Allowed values: QuantitativeMeasureDatatypeDescriptor (0 Ed-Fi seed values)
optional The datatype of the result. The results can be expressed as a number, percentile, range, level, etc. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • QuantitativeMeasureScore.QuantitativeMeasure (required)

Descriptor catalog Descriptor

QuantitativeMeasureDatatype #

/ed-fi/descriptors/quantitativeMeasureDatatypeDescriptors

The datatype of the result. The results can be expressed as a number, percentile, range, level, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.QuantitativeMeasureDatatypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/QuantitativeMeasureDatatypeDescriptor.xml ยท status missing_404
Used By (1)
  • QuantitativeMeasure.QuantitativeMeasureDatatype (optional)

UDM primitive/simple type String

QuantitativeMeasureIdentifier #

dictionary-only type

An assigned unique identifier for the quantitative measure.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 64
Used By (1)
  • QuantitativeMeasure.QuantitativeMeasureIdentifier (required)

Canonical UDM resource Class

QuantitativeMeasureScore #

/ed-fi/quantitativeMeasureScores

The score or value for a quantitative measure achieved by an individual educator.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.QuantitativeMeasureScore
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EvaluationElementRating
EvaluationElementRatingReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the person's evaluation element rating. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
QuantitativeMeasure
QuantitativeMeasureReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the quantitative measure. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ScoreValue
ScoreValue
Number
DECIMAL(6, 3)
required The score value for the quantitive measure. numeric precision 6, scale 3; required Ed-Fi field source pass-through
StandardError
StandardError
Number
DECIMAL(6, 3)
optional The standard error for the quantitative measure. numeric precision 6, scale 3; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

QuantitativeMeasureType #

/ed-fi/descriptors/quantitativeMeasureTypeDescriptors

The type of the quantitative measure.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.QuantitativeMeasureTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for QuantitativeMeasureTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Attendance Attendance Attendance uri://ed-fi.org/QuantitativeMeasureTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Content Assessment Content Assessment Content Assessment uri://ed-fi.org/QuantitativeMeasureTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pedagogy Assessment Pedagogy Assessment Pedagogy Assessment uri://ed-fi.org/QuantitativeMeasureTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Achievement Student Achievement Student Achievement uri://ed-fi.org/QuantitativeMeasureTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Growth Student Growth Student Growth uri://ed-fi.org/QuantitativeMeasureTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • QuantitativeMeasure.QuantitativeMeasureType (optional)

Descriptor catalog Descriptor

QuestionForm #

/ed-fi/descriptors/questionFormDescriptors

The form or type of question.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.QuestionFormDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for QuestionFormDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Checkbox Checkbox Checkbox uri://ed-fi.org/QuestionFormDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dropdown Dropdown Dropdown uri://ed-fi.org/QuestionFormDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Matrix of dropdowns Matrix of dropdowns Matrix of dropdowns uri://ed-fi.org/QuestionFormDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Matrix of numeric ratings Matrix of numeric ratings Matrix of numeric ratings uri://ed-fi.org/QuestionFormDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Matrix of textboxes Matrix of textboxes Matrix of textboxes uri://ed-fi.org/QuestionFormDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Radio box Radio box Radio box uri://ed-fi.org/QuestionFormDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ranking Ranking Ranking uri://ed-fi.org/QuestionFormDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Textbox Textbox Textbox uri://ed-fi.org/QuestionFormDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • SurveyQuestion.QuestionForm (required)

Descriptor catalog Descriptor

Race #

/ed-fi/descriptors/raceDescriptors

The enumeration items defining the racial categories which most clearly reflects the individual's recognition of his or her community or with which the individual most identifies.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Educator Preparation Program, Enrollment, Recruiting and Staffing, Staff, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.RaceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for RaceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
American Indian or Alaska Native American Indian or Alaska Native American Indian or Alaska Native uri://ed-fi.org/RaceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Asian Asian Asian uri://ed-fi.org/RaceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Black or African American Black or African American Black or African American uri://ed-fi.org/RaceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Choose Not to Respond Choose Not to Respond Choose Not to Respond uri://ed-fi.org/RaceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hispanic or Latino Hispanic or Latino Hispanic or Latino uri://ed-fi.org/RaceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Middle Eastern or North African Middle Eastern or North African Middle Eastern or North African uri://ed-fi.org/RaceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Native Hawaiian or Pacific Islander Native Hawaiian or Pacific Islander Native Hawaiian or Pacific Islander uri://ed-fi.org/RaceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/RaceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
White White White uri://ed-fi.org/RaceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (5)
  • ApplicantProfile.Race (optional collection)
  • Candidate.Race (optional collection)
  • RecruitmentEventAttendance.Race (optional collection)
  • StaffDemographic.Race (optional collection)
  • StudentDemographic.Race (optional collection)

UDM primitive/simple type String

Rating #

dictionary-only type

An accountability rating level, designation, or assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 35
Used By (1)
  • AccountabilityRating.Rating (required)

UDM primitive/simple type Date

RatingDate #

dictionary-only type

The date the rating was awarded.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • AccountabilityRating.RatingDate (optional)

UDM common/composite Composite Part

RatingLevel #

dictionary-only type

The descriptive level(s) of ratings (cut scores) for evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EvaluationRatingLevel
EvaluationRatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: EvaluationRatingLevelDescriptor (9 Ed-Fi seed values)
required
identity
ODS/API identity
The title for a level of rating or evaluation band. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MinNumericRating
MinNumericRating
Number
DECIMAL(6, 3)
optional The minimum numerical rating or score to achieve the evaluation rating level. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
MaxNumericRating
MaxNumericRating
Number
DECIMAL(6, 3)
optional The maximum numerical rating or score to achieve the evaluation rating level. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
Used By (4)
  • Evaluation.EvaluationRatingLevel (optional collection)
  • EvaluationElement.ElementRatingLevel (optional collection)
  • EvaluationObjective.ObjectiveRatingLevel (optional collection)
  • PerformanceEvaluation.PerformanceEvaluationRatingLevel (optional collection)

Descriptor catalog Descriptor

RatingLevel #

/ed-fi/descriptors/ratingLevelDescriptors

The descriptive level(s) of ratings (cut scores) for evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.RatingLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for RatingLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accomplished Accomplished Accomplished uri://ed-fi.org/RatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Demonstrated Demonstrated Demonstrated uri://ed-fi.org/RatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Developing Developing Developing uri://ed-fi.org/RatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Effective Effective Effective uri://ed-fi.org/RatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Highly Effective Highly Effective Highly Effective uri://ed-fi.org/RatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ineffective Ineffective Ineffective uri://ed-fi.org/RatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minimally Effective Minimally Effective Minimally Effective uri://ed-fi.org/RatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Demonstrated Not Demonstrated Not Demonstrated uri://ed-fi.org/RatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Skilled Skilled Skilled uri://ed-fi.org/RatingLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (5)
  • ProgramEvaluationLevel.RatingLevel (required)
  • StudentEvaluationElement.EvaluationElementRatingLevel (optional)
  • StudentEvaluationObjective.EvaluationObjectiveRatingLevel (optional)
  • EvaluationRubricDimension.EvaluationRubricRatingLevel (optional)
  • StudentProgramEvaluation.SummaryEvaluationRatingLevel (optional)

UDM primitive/simple type String

RatingOrganization #

dictionary-only type

The organization assigning the accountability rating.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 35
Used By (1)
  • AccountabilityRating.RatingOrganization (optional)

UDM primitive/simple type String

RatingProgram #

dictionary-only type

The rating program (e.g., NCLB).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 30
Used By (1)
  • AccountabilityRating.RatingProgram (optional)

UDM common/composite Composite Part

RatingResult #

dictionary-only type

A rating or score for a level or topic of an evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
RatingResultTitle
RatingResultTitle
String
VARCHAR(50)
required
identity
ODS/API identity
The title of the rating result. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
NumericRating
NumericRating
Number
DECIMAL(6, 3)
required
identity
ODS/API identity
The numerical summary rating or score for the evaluation. numeric precision 6, scale 3; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ResultDatatypeType
ResultDatatypeTypeDescriptor
Reference
DescriptorProperty
Allowed values: ResultDatatypeTypeDescriptor (6 Ed-Fi seed values)
required The datatype of the rating result. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (4)
  • EvaluationElementRating.ElementRatingResult (optional collection)
  • EvaluationObjectiveRating.ObjectiveRatingResult (optional collection)
  • EvaluationRating.EvaluationRatingResult (optional collection)
  • PerformanceEvaluationRating.PerformanceEvaluationRatingResult (optional collection)

UDM primitive/simple type String

RatingResultTitle #

dictionary-only type

The title of a rating result.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 50
Used By (1)
  • RatingResult.RatingResultTitle (required)

UDM primitive/simple type String

RatingTitleType #

dictionary-only type

The title of the rating (e.g., School Rating, Safety Score).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • AccountabilityRating.RatingTitle (required)

UDM primitive/simple type Number

RawScoreResult #

dictionary-only type

A meaningful raw score of the performance of a student on an assessment item.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 15
  • decimal places: 5

UDM primitive/simple type String

Reason #

dictionary-only type

Expanded reason for the staff leave.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 40
Used By (2)
  • StaffAbsenceEvent.AbsenceEventReason (optional)
  • StaffLeave.Reason (optional)

Descriptor catalog Descriptor

ReasonExited #

/ed-fi/descriptors/reasonExitedDescriptors

This descriptor defines the reason a student exited a program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Educator Preparation Program, Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.ReasonExitedDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (13 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ReasonExitedDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Died or is permanently incapacitated Died or is permanently incapacitated Died or is permanently incapacitated uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Discontinued schooling Discontinued schooling Discontinued schooling uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graduated with a high school diploma Graduated with a high school diploma Graduated with a high school diploma uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graduated with an alternate diploma Graduated with an alternate diploma Graduated with an alternate diploma uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Moved out of state Moved out of state Moved out of state uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reached maximum age Reached maximum age Reached maximum age uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Received certificate of completion or equivalent Received completion certificate, modified diploma, or met IEP requirements Received certificate of completion, modified diploma, or finished IEP requirements uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suspended or expelled from school Suspended or expelled from school Suspended or expelled from school uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transferred to another district or school Transferred to another district or school Transferred to another district or school uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transferred to regular education Transferred to regular education Transferred to regular education uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown reason Unknown reason Unknown reason uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Withdrawal by a parent (or guardian) Withdrawal by a parent (or guardian) Withdrawal by a parent (or guardian) uri://ed-fi.org/ReasonExitedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (3)
  • CandidateEducatorPreparationProgramAssociation.ReasonExited (optional)
  • GeneralStudentProgramAssociation.ReasonExited (optional)
  • StudentIEP.ReasonExited (optional)

Descriptor catalog Descriptor

ReasonNotTested #

/ed-fi/descriptors/reasonNotTestedDescriptors

The primary reason student is not tested.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.ReasonNotTestedDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ReasonNotTestedDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Absent Absent Absent uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alternate assessment administered Alternate assessment administered Alternate assessment administered uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Disruptive behavior Disruptive behavior Disruptive behavior uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Foreign exchange student waiver Foreign exchange student waiver Foreign exchange student waiver uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LEP exempt LEP exempt LEP exempt uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LEP postponement LEP postponement LEP postponement uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medical waiver Medical waiver Medical waiver uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Moved Moved as primary reason for not testing Moved is specified as the primary reason a participant did not complete an assessment. uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not appropriate (ARD decision) Not appropriate (ARD decision) Not appropriate (ARD decision) uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not tested (ARD decision) Not tested (ARD decision) Not tested (ARD decision) uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parental waiver Parental waiver Parental waiver uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Previously passed the examination Previously passed the examination Previously passed the examination uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Refusal by parent Refusal by parent Refusal by parent uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Refusal by student Refusal by student Refusal by student uri://ed-fi.org/ReasonNotTestedDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentAssessment.ReasonNotTested (optional)

UDM common/composite Composite Part

ReceivedTraining #

dictionary-only type

An indication that the person administering the performance measure has or has not received training on conducting performance measures.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ReceivedTrainingDate
ReceivedTrainingDate
Date
DATE
optional The date on which the person administering the performance measure received training on how to conduct performance measures. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
InterRaterReliabilityScore
InterRaterReliabilityScore
Number
INT
optional A score indicating how much homogeneity, or consensus, there is in the ratings given by judges. Most commonly a percentage scale (1-100). integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (1)
  • Reviewer.ReceivedTraining (optional)

UDM primitive/simple type Date

ReceivedTrainingDate #

dictionary-only type

The date on which the person administering the performance measure received training on how to conduct performance measures.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ReceivedTraining.ReceivedTrainingDate (optional)

UDM common/composite Composite Part

Recognition #

dictionary-only type

Recognition given to the individual for accomplishments in a co-curricular, or extra-curricular activity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Achievement
Achievement
Reference
InlineCommonProperty
required An entity that includes information about achievement earned by an individual upon fulfilling a specified criteria. object reference; required Ed-Fi field source pass-through
RecognitionType
RecognitionTypeDescriptor
Reference
DescriptorProperty
Allowed values: RecognitionTypeDescriptor (12 Ed-Fi seed values)
required
identity
ODS/API identity
The nature of recognition given to the individual for accomplishments in a co-curricular, or extra-curricular activity. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
RecognitionDescription
RecognitionDescription
String
VARCHAR(80)
optional A description of the type of recognition earned by or awarded to the individual. max length 80 characters; optional Ed-Fi field source pass-through
RecognitionAwardDate
RecognitionAwardDate
Date
DATE
optional The date the recognition was awarded or earned. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
RecognitionAwardExpiresDate
RecognitionAwardExpiresDate
Date
DATE
optional Date on which the recognition expires. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (2)
  • Staff.Recognition (optional collection)
  • StudentAcademicRecord.Recognition (optional collection)

UDM primitive/simple type Date

RecognitionAwardDate #

dictionary-only type

The date the recognition was awarded or earned. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Recognition.RecognitionAwardDate (optional)

UDM primitive/simple type Date

RecognitionAwardExpiresDate #

dictionary-only type

Date on which the recognition expires. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Recognition.RecognitionAwardExpiresDate (optional)

UDM primitive/simple type String

RecognitionDescription #

dictionary-only type

The description of recognition given to the student for accomplishments in a co-curricular or extra-curricular activity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 80
Used By (1)
  • Recognition.RecognitionDescription (optional)

Descriptor catalog Descriptor

RecognitionType #

/ed-fi/descriptors/recognitionTypeDescriptors

The nature of recognition given to the student for accomplishments in a co-curricular, or extra-curricular activity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Discipline, Finance, Graduation, Intervention, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.RecognitionTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (12 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for RecognitionTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Athletic awards Athletic awards Athletic awards uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Awarding of units of value Awarding of units of value Awarding of units of value uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Certificate Certificate Certificate uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Citizenship award/recognition Citizenship award/recognition Citizenship award/recognition uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Completion of requirement, but no units awarded Completion of requirement, but no units of value awarded Completion of requirement, but no units of value awarded uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Honor award Honor award Honor award uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Letter of commendation Letter of commendation Letter of commendation uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medals Medals Medals uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Monogram/letter Monogram/letter Monogram/letter uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Points Points Points uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Promotion or advancement Promotion or advancement Promotion or advancement uri://ed-fi.org/RecognitionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Recognition.RecognitionType (required)

Canonical UDM resource Class

RecruitmentEvent #

/ed-fi/recruitmentEvents

Events associated with the recruitment process.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.RecruitmentEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EventDate
EventDate
Date
DATE
required
identity
ODS/API identity
The date of the event. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EventDescription
EventDescription
String
VARCHAR(255)
optional The long description of the event. max length 255 characters; optional Ed-Fi field source pass-through
EventTitle
EventTitle
String
VARCHAR(50)
required
identity
ODS/API identity
The title of the event. max length 50 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
RecruitmentEventType
RecruitmentEventTypeDescriptor
Reference
DescriptorProperty
Allowed values: RecruitmentEventTypeDescriptor (7 Ed-Fi seed values)
required The type of event. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EventLocation
EventLocation
String
VARCHAR(255)
optional The location of the event. max length 255 characters; optional Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the recruiting event to an education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Used By (1)
  • RecruitmentEventAttendance.RecruitmentEvent (required)

Canonical UDM resource Class deprecated source element

RecruitmentEventAttendance #

/ed-fi/recruitmentEventAttendances

A prospect for employment or acceptance that has not yet made a formal application but has attended a recruitment event, such as a job fair or university recruiting visit.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.RecruitmentEventAttendance edfi.RecruitmentEventAttendanceCurrentPosition edfi.RecruitmentEventAttendanceCurrentPositionGradeLevel edfi.RecruitmentEventAttendanceDisability edfi.RecruitmentEventAttendanceDisabilityDesignation edfi.RecruitmentEventAttendancePersonalIdentificationDocument edfi.RecruitmentEventAttendanceRace edfi.RecruitmentEventAttendanceRecruitmentEventAttendeeQualifications edfi.RecruitmentEventAttendanceTelephone edfi.RecruitmentEventAttendanceTouchpoint
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (22)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
RecruitmentEventAttendeeIdentifier
RecruitmentEventAttendeeIdentifier
String
VARCHAR(32)
required
identity
ODS/API identity
The identifier for the attendee to a recruitment event. max length 32 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Applied
Applied
Boolean
BOOLEAN
optional Indicator of whether the prospect applied for a position. boolean true/false; optional Ed-Fi field source pass-through
CurrentPosition
CurrentPosition
Reference
CommonProperty
optional The current position of the prospect. object reference; optional Ed-Fi field source pass-through
Disability
Disabilities
Reference
CommonProperty
optional collection The disability condition(s) that best describes an individual's impairment. object reference; optional collection Ed-Fi field source pass-through
ElectronicMailAddress
ElectronicMailAddress
String
VARCHAR(128)
required The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the individual or organization belongs. max length 128 characters; required Ed-Fi field source pass-through
HispanicLatinoEthnicity
HispanicLatinoEthnicity
Boolean
BOOLEAN
optional An indication that the individual traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central, and South America, and other Spanish cultures, regardless of race. The term, "Spanish origin," can be used in addition to "Hispanic or Latino". boolean true/false; optional; deprecated: see deprecation reason
Deprecated: This element is scheduled for removal by 2029. Users of this element are advised to use Race instead.
Ed-Fi field source pass-through
Met
Met
Boolean
BOOLEAN
optional Indicator whether the person was met by a representative of the education organization. boolean true/false; optional Ed-Fi field source pass-through
Name
Name
Reference
InlineCommonProperty
required Full legal name of the person. object reference; required Ed-Fi field source pass-through
Notes
Notes
String
VARCHAR(255)
optional Additional notes about the prospect. max length 255 characters; optional Ed-Fi field source pass-through
PreScreeningRating
PreScreeningRating
Number
INT
optional The rating initially assigned to the prospect prior to an official screening. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
RecruitmentEventAttendeeQualifications
RecruitmentEventAttendeeQualifications
Reference
CommonProperty
optional The qualifications of a prospective educator. object reference; optional Ed-Fi field source pass-through
RecruitmentEventAttendeeType
RecruitmentEventAttendeeTypeDescriptor
Reference
DescriptorProperty
Allowed values: RecruitmentEventAttendeeTypeDescriptor (0 Ed-Fi seed values)
optional Reflects the type of prospect, such as EPP Applicant, Hire, or Mentor Teacher. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Race
Races
Reference
DescriptorProperty
Allowed values: governed RacesDescriptor values; no matching handbook descriptor entry found.
optional collection The general racial category which most clearly reflects the individual's recognition of his or her community or with which the individual most identifies. The way this data element is listed, it must allow for multiple entries so that each individual can specify all appropriate races. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
RecruitmentEvent
RecruitmentEventReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to event associated with the recruitment process. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Referral
Referral
Boolean
BOOLEAN
optional Indicator of whether the prospect was a referral. boolean true/false; optional Ed-Fi field source pass-through
ReferredBy
ReferredBy
String
VARCHAR(50)
optional The person making the referral. max length 50 characters; optional Ed-Fi field source pass-through
Sex
SexDescriptor
Reference
DescriptorProperty
Allowed values: SexDescriptor (4 Ed-Fi seed values)
optional A person's birth sex. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GenderIdentity
GenderIdentity
String
VARCHAR(60)
optional The gender the person identifies themselves as. max length 60 characters; optional Ed-Fi field source pass-through
SocialMediaNetworkName
SocialMediaNetworkName
String
VARCHAR(50)
optional The social media network name associated with the social media user name. max length 50 characters; optional Ed-Fi field source pass-through
SocialMediaUserName
SocialMediaUserName
String
VARCHAR(50)
optional The user name of the person on social media. max length 50 characters; optional Ed-Fi field source pass-through
Telephone
Telephones
Reference
CommonProperty
optional collection The 10-digit telephone number, including the area code, for the person. object reference; optional collection Ed-Fi field source pass-through
Touchpoint
Touchpoints
Reference
CommonProperty
optional collection Content associated with different touchpoints with the prospect. object reference; optional collection Ed-Fi field source pass-through
Used By (1)
  • Application.RecruitmentEventAttendance (optional collection)

UDM primitive/simple type String

RecruitmentEventAttendeeIdentifier #

dictionary-only type

The identifier for the attendee to a recruitment event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 32
Used By (1)
  • RecruitmentEventAttendance.RecruitmentEventAttendeeIdentifier (required)

UDM common/composite Composite Part

RecruitmentEventAttendeeQualifications #

dictionary-only type

The qualifications of a prospective mentor teacher.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Eligible
Eligible
Boolean
BOOLEAN
required An indication of whether the prospect is eligible for the position. boolean true/false; required Ed-Fi field source pass-through
CapacityToServe
CapacityToServe
Boolean
BOOLEAN
optional An indication of whether or not a prospect mentor teacher has capacity to serve. boolean true/false; optional Ed-Fi field source pass-through
YearsOfServiceCurrentPlacement
YearsOfServiceCurrentPlacement
Number
DECIMAL(5, 2)
optional The total number of years of service at the current school. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
YearsOfServiceTotal
YearsOfServiceTotal
Number
DECIMAL(5, 2)
required The total number of years of service as a teacher. numeric precision 5, scale 2; required Ed-Fi field source pass-through
Used By (1)
  • RecruitmentEventAttendance.RecruitmentEventAttendeeQualifications (optional)

Descriptor catalog Descriptor

RecruitmentEventAttendeeType #

/ed-fi/descriptors/recruitmentEventAttendeeTypeDescriptors

Reflects the type of prospect.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.RecruitmentEventAttendeeTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/RecruitmentEventAttendeeTypeDescriptor.xml ยท status missing_404
Used By (1)
  • RecruitmentEventAttendance.RecruitmentEventAttendeeType (optional)

Descriptor catalog Descriptor

RecruitmentEventType #

/ed-fi/descriptors/recruitmentEventTypeDescriptors

The type of event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.RecruitmentEventTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for RecruitmentEventTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Career Fair Career Fair Career Fair uri://ed-fi.org/RecruitmentEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Community College Recruitment Community College Recruitment Community College Recruitment uri://ed-fi.org/RecruitmentEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Community Service Event Community Service Event Community Service Event uri://ed-fi.org/RecruitmentEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Conference Conference Conference uri://ed-fi.org/RecruitmentEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High School Recruitment High School Recruitment High School Recruitment uri://ed-fi.org/RecruitmentEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/RecruitmentEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
University Event University Event University Event uri://ed-fi.org/RecruitmentEventTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • RecruitmentEvent.RecruitmentEventType (required)

UDM primitive/simple type Boolean

Referral #

dictionary-only type

Indicator of whether the prospect was a referral.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • RecruitmentEventAttendance.Referral (optional)

UDM primitive/simple type String

ReferredBy #

dictionary-only type

The person making the referral.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 50
Used By (1)
  • RecruitmentEventAttendance.ReferredBy (optional)

UDM primitive/simple type Boolean

RelatedToZeroTolerancePolicy #

dictionary-only type

An indication of whether or not this disciplinary action taken against a student was imposed as a consequence of state or local zero tolerance policies.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DisciplineAction.RelatedToZeroTolerancePolicy (optional)

Descriptor catalog Descriptor

Relation #

/ed-fi/descriptors/relationDescriptors

The nature of an individual's relationship to a student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.RelationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (50 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for RelationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Aunt Aunt Aunt uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Brother Brother Brother uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
BrotherInLaw BrotherInLaw BrotherInLaw uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CourtAppointedGuardian CourtAppointedGuardian CourtAppointedGuardian uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cousin Cousin Cousin uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Daughter Daughter Daughter uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DaughterInLaw DaughterInLaw DaughterInLaw uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Emergency DEPRECATED: Emergency DEPRECATED: Emergency uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Employer Employer Employer uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Father Father Father uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Father, step Father, step Father, step uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FatherInLaw FatherInLaw FatherInLaw uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FathersCivilPartner FathersCivilPartner FathersCivilPartner uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FathersSignificantOther FathersSignificantOther FathersSignificantOther uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fiance Fiance Fiance uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fiancee Fiancee Fiancee uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Foster parent Foster parent Foster parent uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Friend Friend Friend uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Godparent Godparent Godparent uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grandfather Grandfather Grandfather uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grandmother Grandmother Grandmother uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grandparent Grandparent Grandparent uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Great aunt Great aunt Great aunt uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Great Grandparent Great Grandparent Great Grandparent uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Great uncle Great uncle Great uncle uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Guardian DEPRECATED: Guardian DEPRECATED: Guardian uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Husband Husband Husband uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mother Mother Mother uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mother, step Mother, step Mother, step uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MotherInLaw MotherInLaw MotherInLaw uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MothersCivilPartner MothersCivilPartner MothersCivilPartner uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MothersSignificantOther MothersSignificantOther MothersSignificantOther uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Neighbor Neighbor Neighbor uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nephew Nephew Nephew uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Niece Niece Niece uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent Parent Parent uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent, step Parent, step Parent, step uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Relative Relative Relative uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sibling Sibling Sibling uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SignificantOther SignificantOther SignificantOther uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sister Sister Sister uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SisterInLaw SisterInLaw SisterInLaw uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Son Son Son uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SonInLaw SonInLaw SonInLaw uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Spouse Spouse Spouse uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Uncle Uncle Uncle uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown Unknown uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ward Ward Ward uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wife Wife Wife uri://ed-fi.org/RelationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentContactAssociation.Relation (optional)

UDM primitive/simple type Boolean

RepeatGradeIndicator #

dictionary-only type

An indicator of whether the student is enrolling to repeat a grade level, either by failure or an agreement to hold the student back.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolAssociation.RepeatGradeIndicator (optional)

Descriptor catalog Descriptor

RepeatIdentifier #

/ed-fi/descriptors/repeatIdentifierDescriptors

An indication as to whether a student has previously taken a given course.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Student Academic Record, Student Attendance, Student Cohort, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.RepeatIdentifierDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for RepeatIdentifierDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Not repeated Not repeated Not repeated uri://ed-fi.org/RepeatIdentifierDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/RepeatIdentifierDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other, not counted in GPA Other, not counted in GPA Other, not counted in GPA uri://ed-fi.org/RepeatIdentifierDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Repeated, counted in grade point average Repeated, counted in grade point average Repeated, counted in grade point average uri://ed-fi.org/RepeatIdentifierDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Repeated, not counted in grade point average Repeated, not counted in grade point average Repeated, not counted in grade point average uri://ed-fi.org/RepeatIdentifierDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Repeated, other institution Repeated, other institution Repeated, other institution uri://ed-fi.org/RepeatIdentifierDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Replacement counted Replacement counted Replacement counted uri://ed-fi.org/RepeatIdentifierDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Replacement not counted Replacement not counted Replacement not counted uri://ed-fi.org/RepeatIdentifierDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSectionAssociation.RepeatIdentifier (optional)

Canonical UDM resource Class

ReportCard #

/ed-fi/reportCards

This educational entity represents the collection of student grades for courses taken during a grading period.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.ReportCard edfi.ReportCardGrade edfi.ReportCardGradePointAverage edfi.ReportCardStudentCompetencyObjective
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Grade
Grades
Reference
DomainEntityProperty
optional collection Grades for the classes attended by the student for this grading period. object reference; optional collection Ed-Fi field source pass-through
StudentCompetencyObjective
StudentCompetencyObjectives
Reference
DomainEntityProperty
optional collection The student competency evaluations associated for this grading period. object reference; optional collection Ed-Fi field source pass-through
GradePointAverage
GradePointAverages
Reference
CommonProperty
optional collection A measure of average performance for courses taken by an individual. object reference; optional collection Ed-Fi field source pass-through
NumberOfDaysAbsent
NumberOfDaysAbsent
Number
DECIMAL(18, 4)
optional The number of days an individual is absent when school is in session during a given reporting period. numeric precision 18, scale 4; optional Ed-Fi field source pass-through
NumberOfDaysInAttendance
NumberOfDaysInAttendance
Number
DECIMAL(18, 4)
optional The number of days an individual is present when school is in session during a given reporting period. numeric precision 18, scale 4; optional Ed-Fi field source pass-through
NumberOfDaysTardy
NumberOfDaysTardy
Number
INT
optional The number of days an individual is tardy during a given reporting period. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Identifies the student that is associated with the report card. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Identifies the education organization that issued the report card. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GradingPeriod
GradingPeriodReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Identifies the grading period for this report card. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Used By (1)
  • StudentAcademicRecord.ReportCard (optional collection)

UDM primitive/simple type Boolean

ReportedToLawEnforcement #

dictionary-only type

Indicator of whether the incident was reported to law enforcement.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • DisciplineIncident.ReportedToLawEnforcement (optional)

Descriptor catalog Descriptor

ReporterDescription #

/ed-fi/descriptors/reporterDescriptionDescriptors

This descriptor defines the type of individual who reported an incident.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.ReporterDescriptionDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ReporterDescriptionDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Law enforcement officer Law enforcement officer Law enforcement officer uri://ed-fi.org/ReporterDescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-school personnel Non-school personnel Non-school personnel uri://ed-fi.org/ReporterDescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/ReporterDescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent/guardian Parent/guardian Parent/guardian uri://ed-fi.org/ReporterDescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Staff Staff Staff uri://ed-fi.org/ReporterDescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Student Student uri://ed-fi.org/ReporterDescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • DisciplineIncident.ReporterDescription (optional)

UDM primitive/simple type String

ReporterName #

dictionary-only type

Identifies the reporter of the incident by name.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 75
Used By (1)
  • DisciplineIncident.ReporterName (optional)

UDM common/composite Composite Part

ReportingTag #

dictionary-only type

Optional tag for accountability reporting.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
TagValue
TagValue
String
VARCHAR(100)
optional The value associated with the reporting tag. max length 100 characters; optional Ed-Fi field source pass-through
ReportingTag
ReportingTagDescriptor
Reference
DescriptorProperty
Allowed values: ReportingTagDescriptor (5 Ed-Fi seed values)
required
identity
ODS/API identity
A descriptor used at the dimension and/or chart of account levels to demote specific state needs for reporting. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (2)
  • ChartOfAccount.ReportingTag (optional collection)
  • LocalAccount.ReportingTag (optional collection)

Descriptor catalog Descriptor

ReportingTag #

/ed-fi/descriptors/reportingTagDescriptors

A descriptor used at the dimension and/or chart of account levels to demote specific state needs for reporting.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.ReportingTagDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ReportingTagDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
CMO Charter Management Organization Charter Management Organization uri://ed-fi.org/ReportingTagDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ESSA Every Student Succeeds Act Every Student Succeeds Act uri://ed-fi.org/ReportingTagDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Federal Federal uri://ed-fi.org/ReportingTagDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LEA Local Education Agency Local Education Agency uri://ed-fi.org/ReportingTagDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SEA State Education Agency State Education Agency uri://ed-fi.org/ReportingTagDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (9)
  • ReportingTag.ReportingTag (required)
  • BalanceSheetDimension.ReportingTag (optional collection)
  • FunctionDimension.ReportingTag (optional collection)
  • FundDimension.ReportingTag (optional collection)
  • ObjectDimension.ReportingTag (optional collection)
  • OperationalUnitDimension.ReportingTag (optional collection)
  • ProgramDimension.ReportingTag (optional collection)
  • ProjectDimension.ReportingTag (optional collection)
  • SourceDimension.ReportingTag (optional collection)

UDM primitive/simple type Boolean

Required #

dictionary-only type

An indication of whether a teacher candidate is active in a professional development.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ProfessionalDevelopmentEvent.Required (optional)

UDM common/composite Composite Part

RequiredAssessment #

dictionary-only type

The assessments and associated required score and performance level.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Assessment
AssessmentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Provide user information to lookup and link to an existing assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
RequiredAssessmentScore
Scores
Reference
CommonProperty
optional collection Score required to be met or exceeded. object reference; optional collection Ed-Fi field source pass-through
RequiredAssessmentPerformanceLevel
PerformanceLevel
Reference
CommonProperty
optional Performance level required to be met or exceeded. object reference; optional Ed-Fi field source pass-through
Used By (1)
  • GraduationPlan.RequiredAssessment (optional collection)

UDM common/composite Composite Part

RequiredCertification #

dictionary-only type

The title or reference to the certifiation(s) required for graduation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CertificationTitle
CertificationTitle
String
VARCHAR(64)
required
identity
ODS/API identity
The title of the certification required for graduation. max length 64 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Certification
CertificationReference
Reference
DomainEntityProperty
optional Reference to the certification associated with a person's graduation plan. object reference; optional Ed-Fi field source pass-through
CertificationRoute
CertificationRouteDescriptor
Reference
DescriptorProperty
Allowed values: CertificationRouteDescriptor (11 Ed-Fi seed values)
optional The process, program, or pathway used to obtain a certification. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • GraduationPlan.RequiredCertification (optional collection)

UDM common/composite Composite Part

RequiredImmunization #

dictionary-only type

Stores student's mandatory vaccination or immunization history.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ImmunizationType
ImmunizationTypeDescriptor
Reference
DescriptorProperty
Allowed values: ImmunizationTypeDescriptor (18 Ed-Fi seed values)
required
identity
ODS/API identity
An indication of the type of immunization that the student has received. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ImmunizationDate
Dates
Date
DATE
optional collection The year, month and day of the related required immunization. calendar date in ISO 8601 full-date form; optional collection Ed-Fi field source pass-through
MedicalExemption
MedicalExemption
String
VARCHAR(1024)
optional The medical condition identified by a physician that contraindicates the vaccine. max length 1024 characters; optional Ed-Fi field source pass-through
MedicalExemptionDate
MedicalExemptionDate
Date
DATE
optional The year, month, and day of the medical exemption by a physician. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentHealth.RequiredImmunization (optional collection)

UDM primitive/simple type String

RequisitionNumber #

dictionary-only type

The number or identifier assigned to an open staff position, typically a requisition number assigned by Human Resources.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 20
Used By (1)
  • OpenStaffPosition.RequisitionNumber (required)

UDM primitive/simple type Date

ResearchExperienceDate #

dictionary-only type

The month, day, and year of the start or effective date of a staff member's teacher educator position for an education organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • EducatorResearch.ResearchExperienceDate (required)

UDM primitive/simple type String

ResearchExperienceTitle #

dictionary-only type

The title of the research experience.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 60
Used By (1)
  • EducatorResearch.ResearchExperienceTitle (optional)

Descriptor catalog Descriptor

ResidencyStatus #

/ed-fi/descriptors/residencyStatusDescriptors

This descriptor defines indications of the location of a person's legal residence relative to (within or outside of) the boundaries of the public school attended and its administrative unit.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation, School Calendar, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ResidencyStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ResidencyStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Resident of admin unit and school area Resident of administrative unit and usual school attendance area Resident of administrative unit and usual school attendance area uri://ed-fi.org/ResidencyStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Resident of admin unit that crosses states Resident of an administrative unit that crosses state boundaries Resident of an administrative unit that crosses state boundaries uri://ed-fi.org/ResidencyStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Resident of admin unit, but other school area Resident of administrative unit, but of other school attendance area Resident of administrative unit, but of other school attendance area uri://ed-fi.org/ResidencyStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Resident of another state Resident of another state Resident of another state uri://ed-fi.org/ResidencyStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Resident of this state, but not of this admin unit Resident of this state, but not of this administrative unit Resident of this state, but not of this administrative unit uri://ed-fi.org/ResidencyStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSchoolAssociation.ResidencyStatus (optional)

UDM common/composite Composite Part

ResponseChoice #

dictionary-only type

An individual choice within a list of possible responses to a survey question.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SortOrder
SortOrder
Number
INT
required
identity
ODS/API identity
Sort order of this ResponseChoice within the complete list of choices attached to a SurveyQuestion. If sort order doesn't apply, the value of NumericValue or a unique, possibly sequential numeric value. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
NumericValue
NumericValue
Number
INT
optional A valid numeric response. If paired with a TextValue, the numeric equivalent of the TextValue. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
TextValue
TextValue
String
VARCHAR(255)
optional A valid text response. If paired with a NumericValue, the text equivalent of the NumericValue. max length 255 characters; optional Ed-Fi field source pass-through
Used By (1)
  • SurveyQuestion.ResponseChoice (optional collection)

UDM primitive/simple type Date

ResponseDate #

dictionary-only type

Date of the survey response.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • SurveyResponse.ResponseDate (required)

UDM primitive/simple type String

ResponseDescription #

dictionary-only type

Text provided to define a response value.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 1024
Used By (1)
  • PossibleResponse.ResponseDescription (optional)

Descriptor catalog Descriptor

ResponseIndicator #

/ed-fi/descriptors/responseIndicatorDescriptors

Indicator of the response.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.ResponseIndicatorDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ResponseIndicatorDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Effective response Effective response Effective response uri://ed-fi.org/ResponseIndicatorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ineffective response Ineffective response Ineffective response uri://ed-fi.org/ResponseIndicatorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nonscorable response Nonscorable response Nonscorable response uri://ed-fi.org/ResponseIndicatorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Partial response Partial response Partial response uri://ed-fi.org/ResponseIndicatorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentAssessmentItem.ResponseIndicator (optional)

UDM primitive/simple type Number

ResponseTime #

dictionary-only type

The amount of time in seconds it took for the respondent to complete the survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type String

ResponseValue #

dictionary-only type

The response value, often an option number or code value (e.g., 1, 2, A, B, true, false).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • PossibleResponse.ResponseValue (required)

Descriptor catalog Descriptor

Responsibility #

/ed-fi/descriptors/responsibilityDescriptors

This descriptor defines types of responsibility an education organization may have for a student (e.g., accountability, attendance, funding).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.ResponsibilityDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ResponsibilityDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Accountability Accountability Accountability uri://ed-fi.org/ResponsibilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Attendance Attendance Attendance uri://ed-fi.org/ResponsibilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Discipline Discipline Discipline uri://ed-fi.org/ResponsibilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Funding Funding Funding uri://ed-fi.org/ResponsibilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graduation Graduation Graduation uri://ed-fi.org/ResponsibilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Individualized Education Program Individualized Education Program Individualized Education Program uri://ed-fi.org/ResponsibilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Residency Residency Residency uri://ed-fi.org/ResponsibilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transportation Transportation Transportation uri://ed-fi.org/ResponsibilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentEducationOrganizationResponsibilityAssociation.Responsibility (required)

Canonical UDM resource Class

RestraintEvent #

/ed-fi/restraintEvents

This event entity represents the instances where a special education student was physically or mechanically restrained due to imminent serious physical harm to themselves or others, imminent serious property destruction or a combination of both imminent serious physical harm to themselves or others and imminent serious property destruction.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education
Source
UDM Handbook entry
Physical SQL snippets
edfi.RestraintEvent edfi.RestraintEventProgram edfi.RestraintEventReason
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
RestraintEventIdentifier
RestraintEventIdentifier
String
VARCHAR(36)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to a restraint event by a school, school system, state, or other agency or entity. max length 36 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EventDate
EventDate
Date
DATE
required Month, day, and year of the restraint event. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
EducationalEnvironment
EducationalEnvironmentDescriptor
Reference
DescriptorProperty
Allowed values: EducationalEnvironmentDescriptor (13 Ed-Fi seed values)
optional The setting where the RestraintEvent was exercised. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
RestraintEventReason
Reasons
Reference
DescriptorProperty
Allowed values: governed ReasonsDescriptor values; no matching handbook descriptor entry found.
optional collection A categorization of the circumstances or reason for the RestraintEvent. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to student that was restrained. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Program
Programs
Reference
DomainEntityProperty
optional collection The special education program associated with the restraint event. object reference; optional collection Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The school where the restraint event occurred. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DisciplineIncident
DisciplineIncidentReference
Reference
DomainEntityProperty
optional The discipline incident associated with the restraint event. object reference; optional Ed-Fi field source pass-through

UDM primitive/simple type String

RestraintEventIdentifier #

dictionary-only type

A unique number or alphanumeric code assigned to a restraint event by a school, school system, a state, or other agency or entity.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 36
Used By (1)
  • RestraintEvent.RestraintEventIdentifier (required)

Descriptor catalog Descriptor

RestraintEventReason #

/ed-fi/descriptors/restraintEventReasonDescriptors

The items of categorization of the circumstances or reason for the restraint.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education
Source
UDM Handbook entry
Physical SQL snippets
edfi.RestraintEventReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for RestraintEventReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Imminent Serious Physical Harm To Others Imminent Serious Physical Harm To Others Imminent Serious Physical Harm To Others uri://ed-fi.org/RestraintEventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Imminent Serious Physical Harm To Themselves Imminent Serious Physical Harm To Themselves Imminent Serious Physical Harm To Themselves uri://ed-fi.org/RestraintEventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Imminent Serious Property Destruction Imminent Serious Property Destruction Imminent Serious Property Destruction uri://ed-fi.org/RestraintEventReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • RestraintEvent.RestraintEventReason (optional collection)

UDM primitive/simple type String

Result #

dictionary-only type

A meaningful raw score or statistical expression of the performance of an individual. The results can be expressed as a number, percentile, range, level, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 35
Used By (7)
  • AssessmentPerformanceLevel.MinimumScore (optional)
  • AssessmentPerformanceLevel.MaximumScore (optional)
  • AssessmentScore.MinimumScore (optional)
  • AssessmentScore.MaximumScore (optional)
  • ScoreResult.Result (required)
  • AssessmentScoreRangeLearningStandard.MinimumScore (required)
  • AssessmentScoreRangeLearningStandard.MaximumScore (required)

Descriptor catalog Descriptor

ResultDatatypeType #

/ed-fi/descriptors/resultDatatypeTypeDescriptors

The results can be expressed as a number, percentile, range, level, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment, Enrollment, Graduation, Performance Evaluation, Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.ResultDatatypeTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ResultDatatypeTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Decimal Decimal Decimal uri://ed-fi.org/ResultDatatypeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Integer Integer Integer uri://ed-fi.org/ResultDatatypeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Level Level Level uri://ed-fi.org/ResultDatatypeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Percentage Percentage Percentage uri://ed-fi.org/ResultDatatypeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Percentile Percentile Percentile uri://ed-fi.org/ResultDatatypeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Range Range Range uri://ed-fi.org/ResultDatatypeTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (4)
  • AssessmentPerformanceLevel.ResultDatatypeType (optional)
  • AssessmentScore.ResultDatatypeType (optional)
  • RatingResult.ResultDatatypeType (required)
  • ScoreResult.ResultDatatypeType (required)

Descriptor catalog Descriptor

RetestIndicator #

/ed-fi/descriptors/retestIndicatorDescriptors

Indicator if the test was retaken.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.RetestIndicatorDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for RetestIndicatorDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
1st Retest 1st Retest 1st Retest uri://ed-fi.org/RetestIndicatorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
2nd Retest 2nd Retest 2nd Retest uri://ed-fi.org/RetestIndicatorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
3rd or more Retest 3rd or more Retest 3rd or more Retest uri://ed-fi.org/RetestIndicatorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Primary Administration Primary Administration Primary Administration uri://ed-fi.org/RetestIndicatorDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentAssessment.RetestIndicator (optional)

UDM common/composite Composite Part

Reviewer #

dictionary-only type

The person who conducted the performance measure.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
FirstName
FirstName
String
VARCHAR(75)
required
identity
ODS/API identity
A name given to an individual at birth, baptism, or during another naming ceremony, or through legal change. max length 75 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LastSurname
LastSurname
String
VARCHAR(75)
required
identity
ODS/API identity
The name borne in common by members of a family. max length 75 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ReceivedTraining
ReceivedTraining
Reference
CommonProperty
optional An indication that the person administering the performance evaluation has or has not received training on conducting performance measures. object reference; optional Ed-Fi field source pass-through
ReviewerPerson
ReviewerPersonReference
Reference
DomainEntityProperty
optional The person associated with the performance measure. object reference; optional Ed-Fi field source pass-through
Used By (2)
  • EvaluationRating.Reviewer (optional collection)
  • PerformanceEvaluationRating.Reviewer (optional collection)

UDM primitive/simple type Date

RevisionDate #

dictionary-only type

The month, day, and year that the conceptual design for the assessment was most recently revised substantially.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Assessment.RevisionDate (optional)

Canonical UDM resource Class

RubricDimension #

/ed-fi/rubricDimensions

The cells of a rubric, consisting of a qualitative decription, definition, or exemplar with the associated rubric rating and rating level.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.RubricDimension
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EvaluationElement
EvaluationElementReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The evaluation element associated with the rubric dimension. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
RubricRating
RubricRating
Number
INT
required
identity
ODS/API identity
The rating achieved for the rubric dimension. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
RubricRatingLevel
RubricRatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: RubricRatingLevelDescriptor (0 Ed-Fi seed values)
optional The rating level achieved for the rubric dimension. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CriterionDescription
CriterionDescription
String
VARCHAR(1024)
required The criterion description for the rubric dimension. max length 1024 characters; required Ed-Fi field source pass-through
DimensionOrder
DimensionOrder
Number
INT
optional The order for the rubric dimension. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through

UDM primitive/simple type Number

RubricRating #

dictionary-only type

The rating achieved for the rubric dimension.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Descriptor catalog Descriptor

RubricRatingLevel #

/ed-fi/descriptors/rubricRatingLevelDescriptors

The rating levels for rubric dimensions.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.RubricRatingLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (0 Ed-Fi seed values)
No Ed-Fi default seed rows were found for this descriptor in the v6.1 descriptor bundle. The descriptor remains a governed code list under GAP-A4: tenant-local values must be created through edfi.edfi_descriptor_code, carry standard_status, and stay scoped by namespace.
Source checked: https://raw.githubusercontent.com/Ed-Fi-Alliance-OSS/Ed-Fi-Data-Standard/v6.1.0/Descriptors/RubricRatingLevelDescriptor.xml ยท status missing_404
Used By (1)
  • RubricDimension.RubricRatingLevel (optional)

UDM common/composite Composite Part

Salary #

dictionary-only type

Information regarding the salary of a staff member.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SalaryMinRange
SalaryMinRange
Number
INT
optional The minimum salary range for a staff. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
SalaryMaxRange
SalaryMaxRange
Number
INT
optional The maximum salary range for a staff. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
SalaryType
SalaryTypeDescriptor
Reference
DescriptorProperty
Allowed values: SalaryTypeDescriptor (5 Ed-Fi seed values)
optional The type of salary that a staff member is receiving. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SalaryAmount
SalaryAmount
Number
DECIMAL(19, 4)
optional The salary of a staff member. numeric precision 19, scale 4; optional Ed-Fi field source pass-through
Used By (1)
  • StaffEducationOrganizationEmploymentAssociation.Salary (optional)

UDM primitive/simple type Number

SalaryAmount #

dictionary-only type

The salary of a staff member.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 19
  • decimal places: 4

UDM primitive/simple type Number

SalaryMaxRange #

dictionary-only type

The maximum salary range for a staff.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Number

SalaryMinRange #

dictionary-only type

The minimum salary range for a staff.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

Descriptor catalog Descriptor

SalaryType #

/ed-fi/descriptors/salaryTypeDescriptors

The type of salary that a staff member is receiving.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.SalaryTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SalaryTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Contract Staff salary is based on a contract. Staff salary is based on a contract. uri://ed-fi.org/SalaryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Full Time Staff salary is based on a full-time employment. Staff salary is based on a full-time employment. uri://ed-fi.org/SalaryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hourly Staff salary is based on a hourly work. Staff salary is based on a hourly work. uri://ed-fi.org/SalaryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Staff salary is based on an other option. Staff salary is based on an other option. uri://ed-fi.org/SalaryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Part Time Staff salary is based on a part-time employment. Staff salary is based on a part-time employment. uri://ed-fi.org/SalaryTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Salary.SalaryType (optional)

UDM primitive/simple type Date

ScheduleDate #

dictionary-only type

The month, day, and year on which the performance evaluation was scheduled.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • PerformanceEvaluationRating.ScheduleDate (optional)

Canonical UDM specialization Subclass

School #

/ed-fi/schools

This entity represents an educational organization that includes staff, students and candidates who participate in classes and educational activity groups, inclusive of school in a post secondary institution.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.School edfi.SchoolCategory edfi.SchoolGradeLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (16)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SchoolId
SchoolId
Number
INT
required
identity
ODS/API identity
The identifier assigned to a school. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GradeLevel
GradeLevels
Reference
DescriptorProperty
Allowed values: governed GradeLevelsDescriptor values; no matching handbook descriptor entry found.
required collection The grade levels served at the school. object reference; required collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SchoolCategory
SchoolCategories
Reference
DescriptorProperty
Allowed values: governed SchoolCategoriesDescriptor values; no matching handbook descriptor entry found.
optional collection The one or more categories of school. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SchoolType
SchoolTypeDescriptor
Reference
DescriptorProperty
Allowed values: SchoolTypeDescriptor (5 Ed-Fi seed values)
optional The type of education institution as classified by its primary focus. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CharterStatus
CharterStatusDescriptor
Reference
DescriptorProperty
Allowed values: CharterStatusDescriptor (4 Ed-Fi seed values)
optional A school or agency providing free public elementary or secondary education to eligible students under a specific charter granted by the state legislature or other appropriate authority and designated by such authority to be a charter school. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TitleIPartASchoolDesignation
TitleIPartASchoolDesignationDescriptor
Reference
DescriptorProperty
Allowed values: TitleIPartASchoolDesignationDescriptor (7 Ed-Fi seed values)
optional Denotes the Title I Part A designation for the school. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MagnetSpecialProgramEmphasisSchool
MagnetSpecialProgramEmphasisSchoolDescriptor
Reference
DescriptorProperty
Allowed values: MagnetSpecialProgramEmphasisSchoolDescriptor (3 Ed-Fi seed values)
optional A school that has been designed: 1) to attract students of different racial/ethnic backgrounds for the purpose of reducing, preventing, or eliminating racial isolation; and/or 2) to provide an academic or social focus on a particular theme (e.g., science/math, performing arts, gifted/talented, or foreign language). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AdministrativeFundingControl
AdministrativeFundingControlDescriptor
Reference
DescriptorProperty
Allowed values: AdministrativeFundingControlDescriptor (3 Ed-Fi seed values)
optional The type of education institution as classified by its funding source, for example public or private. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
InternetAccess
InternetAccessDescriptor
Reference
DescriptorProperty
Allowed values: InternetAccessDescriptor (13 Ed-Fi seed values)
optional The type of Internet access available. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
LocalEducationAgency
LocalEducationAgencyReference
Reference
DomainEntityProperty
optional LEA of which the School is an organizational component. object reference; optional Ed-Fi field source pass-through
CharterApprovalAgencyType
CharterApprovalAgencyTypeDescriptor
Reference
DescriptorProperty
Allowed values: CharterApprovalAgencyTypeDescriptor (9 Ed-Fi seed values)
optional The type of agency that approved the establishment or continuation of a charter school. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CharterApprovalSchoolYear
CharterApprovalSchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
optional The school year in which a charter school was initially approved. object reference; optional Ed-Fi field source pass-through
FederalLocaleCode
FederalLocaleCodeDescriptor
Reference
DescriptorProperty
Allowed values: FederalLocaleCodeDescriptor (4 Ed-Fi seed values)
optional The federal locale code associated with an education organization. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PostSecondaryInstitution
PostSecondaryInstitutionReference
Reference
DomainEntityProperty
optional The postsecondary institution or university associated as an organization component for the school, if applicable object reference; optional Ed-Fi field source pass-through
ImprovingSchool
ImprovingSchool
Boolean
BOOLEAN
optional An indication of whether a school is identified as an improving school. boolean true/false; optional Ed-Fi field source pass-through
AccreditationStatus
AccreditationStatusDescriptor
Reference
DescriptorProperty
Allowed values: AccreditationStatusDescriptor (5 Ed-Fi seed values)
optional The accreditation status for an education preparation provider. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (21)
  • FeederSchoolAssociation.FeederSchool (required)
  • FeederSchoolAssociation.School (required)
  • StaffSchoolAssociation.School (required)
  • StudentSchoolAssociation.School (required)
  • StudentSchoolAssociation.NextYearSchool (optional)
  • AcademicWeek.School (required)
  • BellSchedule.School (required)
  • Calendar.School (required)
  • ClassPeriod.School (required)
  • CourseOffering.School (required)
  • DisciplineAction.ResponsibilitySchool (required)
  • DisciplineAction.AssignmentSchool (optional)
  • DisciplineIncident.School (required)
  • FieldworkExperience.School (optional)
  • GradingPeriod.School (required)
  • Location.School (required)
  • RestraintEvent.School (required)
  • Section.LocationSchool (optional)
  • Session.School (required)
  • StudentAssessment.ReportedSchool (optional)
  • StudentSchoolAttendanceEvent.School (required)

Descriptor catalog Descriptor

SchoolCategory #

/ed-fi/descriptors/schoolCategoryDescriptors

The category of school. For example: High School, Middle School, Elementary School.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.SchoolCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (16 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SchoolCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adult School Adult School Adult School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
All Levels All Levels All Levels uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Elementary School Elementary School Elementary School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Elementary/Secondary School DEPRECATED: Elementary/Secondary School DEPRECATED: Elementary/Secondary School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
High School High School High School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Infant/toddler School Infant/toddler School Infant/toddler School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Intermediate School Intermediate School Intermediate School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Joint Secondary and Postsecondary School Joint Secondary and Postsecondary School Joint Secondary and Postsecondary School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Junior High School Junior High School Junior High School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Middle School Middle School Middle School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Combination Other Combination Other Combination uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Secondary Other Secondary Other Secondary uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Preschool/early childhood Preschool/early childhood Preschool/early childhood uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Primary School Primary School Primary School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Secondary School Secondary School Secondary School uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ungraded Ungraded Ungraded uri://ed-fi.org/SchoolCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • School.SchoolCategory (optional collection)

UDM primitive/simple type Boolean

SchoolChoice #

dictionary-only type

An indication of whether the student enrolled in this school under the provisions for public school choice

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolAssociation.SchoolChoice (optional)

Descriptor catalog Descriptor

SchoolChoiceBasis #

/ed-fi/descriptors/schoolChoiceBasisDescriptors

The legal basis for the school choice enrollment according to local, state or federal policy or regulation. (The descriptor provides the list of available bases specific to the state).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation, School Calendar, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.SchoolChoiceBasisDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SchoolChoiceBasisDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Federal Federal Federal uri://ed-fi.org/SchoolChoiceBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Local Local Local uri://ed-fi.org/SchoolChoiceBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NCLB choice NCLB choice NCLB choice uri://ed-fi.org/SchoolChoiceBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State State uri://ed-fi.org/SchoolChoiceBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Victim of a Violent Felony Victim of a Violent Felony Victim of a Violent Felony uri://ed-fi.org/SchoolChoiceBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSchoolAssociation.SchoolChoiceBasis (optional)

Descriptor catalog Descriptor

SchoolChoiceImplementStatus #

/ed-fi/descriptors/schoolChoiceImplementStatusDescriptors

An indication of whether the LEA was able to implement the provisions for public school choice under Title I, Part A, Section 1116 of ESEA, as amended.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization, Enrollment, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.SchoolChoiceImplementStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SchoolChoiceImplementStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Implemented at all grade levels Implemented at all grade levels Implemented at all grade levels uri://ed-fi.org/SchoolChoiceImplementStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Implemented at some but not all grade levels Implemented at some but not all grade levels Implemented at some but not all grade levels uri://ed-fi.org/SchoolChoiceImplementStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not required to implement public school choice Not required to implement public school choice Not required to implement public school choice uri://ed-fi.org/SchoolChoiceImplementStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unable to implement at any grades levels Unable to implement at any grades levels Unable to implement at any grades levels uri://ed-fi.org/SchoolChoiceImplementStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • LocalEducationAgencyAccountability.SchoolChoiceImplementStatus (optional)

UDM primitive/simple type Boolean

SchoolChoiceTransfer #

dictionary-only type

An indication of whether students transferred in or out of the school did so during the school year under the provisions for public school choice in accordance with Title I, Part A, Section 1116.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolAssociation.SchoolChoiceTransfer (optional)

UDM common/composite Composite Part

SchoolFoodServiceProgramService #

dictionary-only type

Indicates the service(s) being provided to the student by the school food service program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SchoolFoodServiceProgramService
SchoolFoodServiceProgramServiceDescriptor
Reference
DescriptorProperty
Allowed values: SchoolFoodServiceProgramServiceDescriptor (15 Ed-Fi seed values)
required
identity
ODS/API identity
Indicates the service being provided to the student by the school food service program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryIndicator
PrimaryIndicator
Boolean
BOOLEAN
optional True if service is a primary service. boolean true/false; optional Ed-Fi field source pass-through
ServiceBeginDate
ServiceBeginDate
Date
DATE
optional First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ServiceEndDate
ServiceEndDate
Date
DATE
optional Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentSchoolFoodServiceProgramAssociation.SchoolFoodServiceProgramService (optional collection)

Descriptor catalog Descriptor

SchoolFoodServiceProgramService #

/ed-fi/descriptors/schoolFoodServiceProgramServiceDescriptors

This descriptor defines the services provided by an education organization to populations of students associated with a school food service program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.SchoolFoodServiceProgramServiceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SchoolFoodServiceProgramServiceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Free Breakfast Free Breakfast Free Breakfast uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Free Lunch Free Lunch Free Lunch uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Free Milk Free Milk Free Milk uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Free Snack Free Snack Free Snack uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Free Supper Free Supper Free Supper uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Full Price Breakfast Full Price Breakfast Full Price Breakfast uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Full Price Lunch Full Price Lunch Full Price Lunch uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Full Price Milk Full Price Milk Full Price Milk uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Full Price Snack Full Price Snack Full Price Snack uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Full Price Supper Full Price Supper Full Price Supper uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reduced Price Breakfast Reduced Price Breakfast Reduced Price Breakfast uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reduced Price Lunch Reduced Price Lunch Reduced Price Lunch uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reduced Price Snack Reduced Price Snack Reduced Price Snack uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reduced Price Supper Reduced Price Supper Reduced Price Supper uri://ed-fi.org/SchoolFoodServiceProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • SchoolFoodServiceProgramService.SchoolFoodServiceProgramService (required)

UDM primitive/simple type Number

SchoolId #

dictionary-only type

The identifier assigned to a school. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type String

SchoolIdentifier #

dictionary-only type

The alphanumeric string that identifies the school.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 60
Used By (1)
  • StudentAssessment.ReportedSchoolIdentifier (optional)

UDM primitive/simple type Boolean

SchoolIndicator #

dictionary-only type

An indication of whether the community provider is a school.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CommunityProvider.SchoolIndicator (optional)

Descriptor catalog Descriptor

SchoolType #

/ed-fi/descriptors/schoolTypeDescriptors

The type of education institution as classified by its primary focus such as Alternative, Career and Technical Education, Regular, or Special Education schools.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.SchoolTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SchoolTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Alternative Alternative Alternative uri://ed-fi.org/SchoolTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Career and Technical Education Career and Technical Education Career and Technical Education uri://ed-fi.org/SchoolTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regular Regular Regular uri://ed-fi.org/SchoolTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reportable Program Reportable Program Reportable Program uri://ed-fi.org/SchoolTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Special Education Special Education uri://ed-fi.org/SchoolTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • School.SchoolType (optional)

UDM common/composite Composite Part

ScoreResult #

dictionary-only type

A meaningful raw score or statistical expression of the performance of an individual. The results can be expressed as a number, percentile, range, level, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Result
Result
String
VARCHAR(35)
required The value of a meaningful raw score or statistical expression of the performance of an individual. The results can be expressed as a number, percentile, range, level, etc. max length 35 characters; required Ed-Fi field source pass-through
ResultDatatypeType
ResultDatatypeTypeDescriptor
Reference
DescriptorProperty
Allowed values: ResultDatatypeTypeDescriptor (6 Ed-Fi seed values)
required The datatype of the result. The results can be expressed as a number, percentile, range, level, etc. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssessmentReportingMethod
AssessmentReportingMethodDescriptor
Reference
DescriptorProperty
Allowed values: AssessmentReportingMethodDescriptor (44 Ed-Fi seed values)
required
identity
ODS/API identity
The method that the administrator of the assessment uses to report the performance and achievement of all students. It may be a qualitative method such as performance level descriptors or a quantitative method such as a numerical grade or cut score. More than one type of reporting method may be used. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (3)
  • StudentObjectiveAssessment.ScoreResult (optional collection)
  • Application.ScoreResult (optional collection)
  • StudentAssessment.ScoreResult (optional collection)

UDM primitive/simple type Number

ScoreValue #

dictionary-only type

The score value for a performance evaluation metric.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 6
  • decimal places: 3
Used By (3)
  • CertificationExamResult.CertificationExamScore (optional)
  • QuantitativeMeasureScore.ScoreValue (required)
  • SurveySectionAggregateResponse.ScoreValue (required)

Canonical UDM resource Class

Section #

/ed-fi/sections

This entity represents a setting in which organized instruction of course content is provided, in-person or otherwise, to one or more students for a given period of time. A course offering may be offered to more than one section.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Bell Schedule, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.Section edfi.SectionCharacteristic edfi.SectionClassPeriod edfi.SectionCourseLevelCharacteristic edfi.SectionOfferedGradeLevel edfi.SectionProgram
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (18)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SectionIdentifier
SectionIdentifier
String
VARCHAR(255)
required
identity
ODS/API identity
The local identifier assigned to a section. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SectionType
SectionTypeDescriptor
Reference
DescriptorProperty
Allowed values: SectionTypeDescriptor (3 Ed-Fi seed values)
optional Specifies whether the section is for attendance only, credit only, or both. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SequenceOfCourse
SequenceOfCourse
Number
INT
optional When a section is part of a sequence of parts for a course, the number of the sequence. If the course has only one part, the value of this section attribute should be 1. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
EducationalEnvironment
EducationalEnvironmentDescriptor
Reference
DescriptorProperty
Allowed values: EducationalEnvironmentDescriptor (13 Ed-Fi seed values)
optional The setting in which a student receives education and related services. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MediumOfInstruction
MediumOfInstructionDescriptor
Reference
DescriptorProperty
Allowed values: MediumOfInstructionDescriptor (13 Ed-Fi seed values)
optional The media through which teachers provide instruction to students and students and teachers communicate about instructional matters. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PopulationServed
PopulationServedDescriptor
Reference
DescriptorProperty
Allowed values: PopulationServedDescriptor (11 Ed-Fi seed values)
optional The type of students the section is offered and tailored to. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AvailableCredits
AvailableCredits
Reference
InlineCommonProperty
optional The amount of credit available to a student who successfully meets the objectives of the course. Available credits are measured in Carnegie units, A course meeting every day for one period of the school day over the span of a school year offers one Carnegie unit. See publication: U.S. Department of Education, NCES, 2007-341, Secondary School Course Classification System: School Codes for the Exchange of Data (SCED). object reference; optional Ed-Fi field source pass-through
SectionCharacteristic
Characteristics
Reference
DescriptorProperty
Allowed values: governed CharacteristicsDescriptor values; no matching handbook descriptor entry found.
optional collection Reflects important characteristics of the section, such as whether or not attendance is taken and the section is graded. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
InstructionLanguage
InstructionLanguageDescriptor
Reference
DescriptorProperty
Allowed values: governed InstructionLanguageDescriptor values; no matching handbook descriptor entry found.
optional The primary language of instruction. If omitted, English is assumed. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CourseOffering
CourseOfferingReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The course offering taught in the section. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
LocationSchool
LocationSchoolReference
Reference
DomainEntityProperty
optional The physical school location in which the section is taught. object reference; optional Ed-Fi field source pass-through
Location
LocationReference
Reference
DomainEntityProperty
optional The location, typically a classroom, where the section meets. object reference; optional Ed-Fi field source pass-through
ClassPeriod
ClassPeriods
Reference
DomainEntityProperty
optional collection The class period during which the section meets. object reference; optional collection Ed-Fi field source pass-through
Program
Programs
Reference
DomainEntityProperty
optional collection Optional reference to program to which the section is associated. object reference; optional collection Ed-Fi field source pass-through
CourseLevelCharacteristic
CourseLevelCharacteristics
Reference
DescriptorProperty
Allowed values: governed CourseLevelCharacteristicsDescriptor values; no matching handbook descriptor entry found.
optional collection The type of specific program or designation with which the section is associated. This collection should only be populated if it differs from the course level characteristics identified at the course offering level. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
OfferedGradeLevel
OfferedGradeLevels
Reference
DescriptorProperty
Allowed values: governed OfferedGradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The grade levels in which the section is offered. This collection should only be populated if it differs from the Offered Grade Levels identified at the course offering level. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
OfficialAttendancePeriod
OfficialAttendancePeriod
Boolean
BOOLEAN
optional Indicator of whether this section is used for official daily attendance. Alternatively, official daily attendance may be tied to a class period. boolean true/false; optional Ed-Fi field source pass-through
SectionName
SectionName
String
VARCHAR(100)
optional A locally-defined name for the section, generally created to make the section more recognizable in informal contexts and generally distinct from the section identifier. max length 100 characters; optional Ed-Fi field source pass-through
Used By (11)
  • FieldworkExperienceSectionAssociation.Section (required)
  • StaffSectionAssociation.Section (required)
  • StudentCohortAssociation.Section (optional collection)
  • StudentSectionAssociation.Section (required)
  • SurveySectionAssociation.Section (required)
  • SectionOrProgramChoice.Section (required collection)
  • CourseTranscript.Section (optional collection)
  • EvaluationRating.Section (optional)
  • GradebookEntry.Section (optional)
  • SectionAttendanceTakenEvent.Section (required)
  • StudentSectionAttendanceEvent.Section (required)

Descriptor catalog Descriptor

Section504Disability #

/ed-fi/descriptors/section504DisabilityDescriptors

This descriptor defines the reason(s) why student qualifies for Section 504 consideration.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.Section504DisabilityDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (22 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for Section504DisabilityDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Any Rare Disease A condition that affects a small number of people. A condition that affects a small number of people, often with limited information or treatment options. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Attention Deficit Hyperactivity Disorder A condition characterized by inattention, hyperactivity, and impulsivity. A neurodevelopmental disorder characterized by inattention, hyperactivity, and impulsivity, which can make it difficult to focus, control impulses, and stay organized. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Autism Spectrum Disorder A condition affecting communication, behavior, and social interaction. A developmental disorder affecting communication, behavior, and social interaction, often resulting in challenges with social skills, repetitive behaviors, and sensory sensitivities. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bipolar Disorder A mental health condition characterized by extreme mood swings. A mental health condition characterized by extreme mood swings, including periods of mania and depression, which can significantly impact daily life. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cancer A disease caused by abnormal cell growth. A disease caused by abnormal cell growth, which can lead to tumors and other health problems. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cerebral Palsy A physical disability affecting movement and coordination. A physical disability affecting movement and coordination, often caused by damage to the brain during development, resulting in varying levels of muscle weakness, spasticity, and difficulty with motor skills. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cystic Fibrosis A genetic condition affecting the lungs and other organs. A genetic disorder affecting the lungs and other organs, causing thick mucus buildup and leading to respiratory problems, digestive issues, and other health challenges. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Deafness A complete or partial loss of hearing. A complete or partial loss of hearing, which can significantly impact communication and social interactions. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Down Syndrome A genetic condition causing intellectual and physical challenges. A genetic condition causing intellectual and physical challenges, including delayed development, cognitive impairments, and physical features such as a flat face, slanted eyes, and a small head. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Drug or Alcohol Abuse The harmful use of substances. The harmful use of substances, which can lead to addiction, health problems, and social consequences. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dual Sensory Impairment Having both hearing and vision impairments. Having both hearing and vision impairments, which can present unique challenges in communication, mobility, and daily living. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dyslexia A learning disability that affects reading and writing. A learning disability that affects reading and writing, often characterized by difficulty recognizing words, decoding sounds, and understanding written language. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Emotional or Behavorial Disorder A mental health condition affecting emotions and behavior. A mental health condition affecting emotions and behavior, which can include anxiety, depression, conduct disorders, and other emotional or behavioral difficulties. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Epilepsy A neurological condition characterized by seizures. A neurological disorder characterized by seizures, which are sudden, uncontrolled electrical activity in the brain. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hearing Impairment A partial loss of hearing. A partial loss of hearing, which can affect communication and social interactions, particularly in noisy environments or when speaking at a distance. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Intellectual Disability A cognitive impairment that affects learning and problem-solving. A cognitive impairment that affects learning and problem-solving, often characterized by limitations in intellectual functioning and adaptive behavior. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Muscular Distrophy A group of genetic conditions that cause muscle weakness. A group of genetic disorders that cause muscle weakness and wasting, leading to progressive loss of muscle function and mobility. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Reason A disability not listed. A disability not listed, which may include a variety of conditions that affect an individual's abilities or functioning. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Specific Learning Disability A learning condition affecting a specific academic skill. A learning disorder affecting a specific academic skill, such as reading, writing, or math, which can make it difficult to learn and achieve academic success. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Spina Bifida A birth condition affecting the spinal cord. A birth defect affecting the spinal cord, which can cause paralysis, sensory loss, and other health problems. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Traumatic Brain Injury An injury to the brain caused by a sudden blow to the head. An injury to the brain caused by a sudden blow to the head, which can result in a wide range of physical, cognitive, emotional, and behavioral impairments. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Visual Impairment A partial or complete loss of vision. A partial or complete loss of vision, which can affect daily activities, communication, and mobility. uri://ed-fi.org/Section504DisabilityDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSection504ProgramAssociation.Section504Disability (optional)

UDM primitive/simple type Boolean

Section504Eligibility #

dictionary-only type

Indicates whether student has a disability, either temporary or permenant, that qualifies student for Section 504 consideration. Selection of FALSE for this boolean is equivalent to marking student as 'Did Not Qualify'.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSection504ProgramAssociation.Section504Eligibility (required)

UDM primitive/simple type Date

Section504EligibilityDecisionDate #

dictionary-only type

The month, day, and year on which the Section 504 eligibility decision is made.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSection504ProgramAssociation.Section504EligibilityDecisionDate (optional)

UDM primitive/simple type Date

Section504MeetingDate #

dictionary-only type

The month, day, and year on which the meeting with student's parent/guardian held to discuss the 504 eligibility of the student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSection504ProgramAssociation.Section504MeetingDate (optional)

Canonical UDM resource Class

SectionAttendanceTakenEvent #

/ed-fi/sectionAttendanceTakenEvents

Captures attendance taken event for given section.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Attendance
Source
UDM Handbook entry
Physical SQL snippets
edfi.SectionAttendanceTakenEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Section
SectionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The section for which attendance was taken. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CalendarDate
CalendarDateReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the instructional day associated with section attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EventDate
EventDate
Date
DATE
required The date the section attendance taken event was submitted, which could be a different date than the instructional day. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
Staff
StaffReference
Reference
DomainEntityProperty
optional The staff responsible for taking attendance. object reference; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

SectionCharacteristic #

/ed-fi/descriptors/sectionCharacteristicDescriptors

This descriptor defines characteristics of a Section, such as whether attendance is taken and the Section is graded.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Bell Schedule, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.SectionCharacteristicDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (2 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SectionCharacteristicDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Attendance Tracked Attendance Tracked Attendance Tracked uri://ed-fi.org/SectionCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graded Credit Available Graded Credit Available Graded Credit Available uri://ed-fi.org/SectionCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Section.SectionCharacteristic (optional collection)

UDM primitive/simple type String

SectionIdentifier #

dictionary-only type

A unique identifier for the section, that is defined by the classroom, the subjects taught, and the instructors that are assigned.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (2)
  • GradebookEntry.SourceSectionIdentifier (required)
  • Section.SectionIdentifier (required)

UDM primitive/simple type String

SectionName #

dictionary-only type

A locally-defined name for the section, generally created to make the section more recognizable in informal contexts and generally distinct from the SectionIdentifier.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 100
Used By (1)
  • Section.SectionName (optional)

UDM common/composite Composite Part

SectionOrProgramChoice #

dictionary-only type

This choice type allows an assessment to be associated with either one or more sections or one or more programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Section
Sections
Reference
DomainEntityProperty
required collection The Section(s) to which the assessment is associated. object reference; required collection Ed-Fi field source pass-through
Program
Programs
Reference
DomainEntityProperty
required collection The programs associated with the assessment. object reference; required collection Ed-Fi field source pass-through
Used By (1)
  • Assessment.SectionOrProgramChoice (optional)

UDM primitive/simple type Number

SectionRating #

dictionary-only type

The type for survey section ratings.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 9
  • decimal places: 3
  • min value: 0
Used By (1)
  • SurveySectionResponse.SectionRating (optional)

Descriptor catalog Descriptor

SectionType #

/ed-fi/descriptors/sectionTypeDescriptors

Specifies whether the section is for attendance only, credit only, or both.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Bell Schedule, Special Education, Student Academic Record, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.SectionTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SectionTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Attendance and Credit Attendance and Credit Attendance and Credit uri://ed-fi.org/SectionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Attendance Only Attendance Only Attendance Only uri://ed-fi.org/SectionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Credit Only Credit Only Credit Only uri://ed-fi.org/SectionTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Section.SectionType (optional)

UDM common/composite Composite Part

Seniority #

dictionary-only type

Entries of job experience contributing to computations of seniority.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CredentialField
CredentialFieldDescriptor
Reference
DescriptorProperty
Allowed values: CredentialFieldDescriptor (15 Ed-Fi seed values)
required
identity
ODS/API identity
The field of the credential being applied. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
NameOfInstitution
NameOfInstitution
String
VARCHAR(75)
required
identity
ODS/API identity
The name of the education organization where a person has worked. max length 75 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
YearsExperience
YearsExperience
Number
DECIMAL(5, 2)
required The number of years of experience. numeric precision 5, scale 2; required Ed-Fi field source pass-through
Used By (1)
  • StaffEducationOrganizationEmploymentAssociation.Seniority (optional collection)

Descriptor catalog Descriptor

Separation #

/ed-fi/descriptors/separationDescriptors

Type of employment separation; for example: Voluntary separation, Involuntary separation, Mutual agreement. Other, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.SeparationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SeparationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Involuntary separation Involuntary separation Involuntary separation uri://ed-fi.org/SeparationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mutual agreement Mutual agreement Mutual agreement uri://ed-fi.org/SeparationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/SeparationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Voluntary separation Voluntary separation Voluntary separation uri://ed-fi.org/SeparationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EmploymentPeriod.Separation (optional)

Descriptor catalog Descriptor

SeparationReason #

/ed-fi/descriptors/separationReasonDescriptors

This descriptor defines the reasons for terminating the employment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.SeparationReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SeparationReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Change of assignment Change of assignment Change of assignment uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Discharge Discharge Discharge uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Employment elsewhere Employment elsewhere Employment elsewhere uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Family/personal relocation Family/personal relocation Family/personal relocation uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Formal study or research Formal study or research Formal study or research uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Illness/disability/death Illness/disability/death Illness/disability/death uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Layoff Layoff Layoff uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Personal reason Personal reason Personal reason uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Retirement Retirement Retirement uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown Unknown uri://ed-fi.org/SeparationReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • EmploymentPeriod.SeparationReason (optional)

UDM primitive/simple type Number

SequenceNumber #

dictionary-only type

The sequence number of the application events. This is used to discriminate between multiple events of the same type on the same day.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 0
Used By (1)
  • ApplicationEvent.SequenceNumber (required)

UDM primitive/simple type Number

SequenceOfCourse #

dictionary-only type

When a Section is part of a sequence of parts for a course, the number if the sequence. If the course has only one part, the value of this Section attribute should be 1.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 1
  • max value: 8
Used By (1)
  • Section.SequenceOfCourse (optional)

UDM primitive/simple type Boolean

ServedOutsideOfRegularSession #

dictionary-only type

Indicates whether the student received services during the summer session or between sessions.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • GeneralStudentProgramAssociation.ServedOutsideOfRegularSession (optional)

UDM common/composite Composite Part

Service #

dictionary-only type

The student's program service information.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Service
ServiceDescriptor
Reference
DescriptorProperty
Allowed values: ServiceDescriptor (15 Ed-Fi seed values)
required
identity
ODS/API identity
Indicates the service being provided to the student by the program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryIndicator
PrimaryIndicator
Boolean
BOOLEAN
optional True if service is a primary service. boolean true/false; optional Ed-Fi field source pass-through
ServiceBeginDate
ServiceBeginDate
Date
DATE
optional First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ServiceEndDate
ServiceEndDate
Date
DATE
optional Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentProgramAssociation.Service (optional collection)

Descriptor catalog Descriptor

Service #

/ed-fi/descriptors/serviceDescriptors

This descriptor defines the services provided by an education organization to populations of students associated with a program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.ServiceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ServiceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Assistive technology device or service Assistive technology device or service Assistive technology device or service uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Audiological Impairment Audiological Impairment Audiological Impairment uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Audiological services Audiological services Audiological services uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Counseling services Counseling services Counseling services uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Disgraphia Disgraphia Disgraphia uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dyslexia Dyslexia Dyslexia uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Interpreting services Interpreting services Interpreting services uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medical diagnostic services Medical diagnostic services Medical diagnostic services uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Occupational therapy Occupational therapy Occupational therapy uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Orientation and mobility training services Orientation and mobility training services Orientation and mobility training services uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical therapy Physical therapy Physical therapy uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Preschool children with disabilites program Preschool children with disabilites program Preschool children with disabilites program uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Psychological services Psychological services Psychological services uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Recreational services Recreational services Recreational services uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech therapy Speech therapy Speech therapy uri://ed-fi.org/ServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Service.Service (required)

UDM primitive/simple type Date

ServiceBeginDate #

dictionary-only type

First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CTEProgramService.ServiceBeginDate (optional)

UDM primitive/simple type Date

ServiceBeginDate #

dictionary-only type

First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • HomelessProgramService.ServiceBeginDate (optional)

UDM primitive/simple type Date

ServiceBeginDate #

dictionary-only type

First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • LanguageInstructionProgramService.ServiceBeginDate (optional)

UDM primitive/simple type Date

ServiceBeginDate #

dictionary-only type

First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • MigrantEducationProgramService.ServiceBeginDate (optional)

UDM primitive/simple type Date

ServiceBeginDate #

dictionary-only type

First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • NeglectedOrDelinquentProgramService.ServiceBeginDate (optional)

UDM primitive/simple type Date

ServiceBeginDate #

dictionary-only type

First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • SchoolFoodServiceProgramService.ServiceBeginDate (optional)

UDM primitive/simple type Date

ServiceBeginDate #

dictionary-only type

First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Service.ServiceBeginDate (optional)

UDM primitive/simple type Date

ServiceBeginDate #

dictionary-only type

First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • SpecialEducationProgramService.ServiceBeginDate (optional)

UDM primitive/simple type Date

ServiceBeginDate #

dictionary-only type

First date the Student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • TitleIPartAProgramService.ServiceBeginDate (optional)

Descriptor catalog Descriptor

ServiceDelivery #

/ed-fi/descriptors/serviceDeliveryDescriptors

The type of service provided to a student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.ServiceDeliveryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (45 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ServiceDeliveryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adapted Physical Education Adapted Physical Education Adapted Physical Education uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Adaptive Physical Adaptive Physical Adaptive Physical uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Assistive Technology Assistive Technology Assistive Technology uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Audiological Services Audiological Services Audiological Services uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Audiological Services (Special Education) Audiological Services (Special Education) Audiological Services (Special Education) uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Behavior Behavior Behavior uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Behavior Services Behavior Services Behavior Services uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Counseling Counseling Counseling uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Daily Living Daily Living Daily Living uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Day Day Day uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Day Day Day uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Day Day Day uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Day Day Day uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Enrichment Enrichment Enrichment uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fine Motor Fine Motor Fine Motor uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Functional Academics Functional Academics Functional Academics uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Functional Communication Functional Communication Functional Communication uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Gross Motor DGross Motoray Gross Motor uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hearing Hearing Hearing uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hearing Services Hearing Services Hearing Services uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Interpreter Interpreter Interpreter uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Math Math Math uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medication Administration Medication Administration Medication Administration uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-Emergency Transportation Services - Daily Non-Emergency Transportation Services - Daily Non-Emergency Transportation Services - Daily uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-Emergency Transportation Services - Weekly Non-Emergency Transportation Services - Weekly Non-Emergency Transportation Services - Weekly uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nursing Nursing Nursing uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nursing Services Nursing Services Nursing Services uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Occupational Therapy Occupational Therapy Occupational Therapy uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Occupational Therapy Services Occupational Therapy Services Occupational Therapy Services uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Organization/Study Skills Organization/Study Skills Organization/Study Skills uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Orientation and Mobility Orientation and Mobility Orientation and Mobility uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Orientation and Mobility Services Orientation and Mobility Services Orientation and Mobility Services uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical Therapy Physical Therapy Physical Therapy uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical Therapy Services Physical Therapy Services Physical Therapy Services uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pre-Academic Readiness Pre-Academic Readiness Pre-Academic Readiness uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reading Reading Reading uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sensory Sensory Sensory uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Social/Emotional Social/Emotional Social/Emotional uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech and Language (Related Service) Speech and Language (Related Service) Speech and Language (Related Service) uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech and Language (Special Education) Speech and Language (Special Education) Speech and Language (Special Education) uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech and Language Services Speech and Language Services Speech and Language Services uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transition Transition Transition uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transportation Transportation Transportation uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vision (Special Education) Vision (Special Education) Vision (Special Education) uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Written Expression Written Expression Written Expression uri://ed-fi.org/ServiceDeliveryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentIEPServiceDelivery.ServiceDelivery (required)

UDM primitive/simple type Date

ServiceDeliveryDate #

dictionary-only type

The date when prescribed services were delivered for a student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentIEPServiceDelivery.ServiceDeliveryDate (identity)

UDM primitive/simple type Date

ServiceEndDate #

dictionary-only type

Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • CTEProgramService.ServiceEndDate (optional)

UDM primitive/simple type Date

ServiceEndDate #

dictionary-only type

Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • HomelessProgramService.ServiceEndDate (optional)

UDM primitive/simple type Date

ServiceEndDate #

dictionary-only type

Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • LanguageInstructionProgramService.ServiceEndDate (optional)

UDM primitive/simple type Date

ServiceEndDate #

dictionary-only type

Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • MigrantEducationProgramService.ServiceEndDate (optional)

UDM primitive/simple type Date

ServiceEndDate #

dictionary-only type

Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • NeglectedOrDelinquentProgramService.ServiceEndDate (optional)

UDM primitive/simple type Date

ServiceEndDate #

dictionary-only type

Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • SchoolFoodServiceProgramService.ServiceEndDate (optional)

UDM primitive/simple type Date

ServiceEndDate #

dictionary-only type

Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Service.ServiceEndDate (optional)

UDM primitive/simple type Date

ServiceEndDate #

dictionary-only type

Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • SpecialEducationProgramService.ServiceEndDate (optional)

UDM primitive/simple type Date

ServiceEndDate #

dictionary-only type

Last date the Student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • TitleIPartAProgramService.ServiceEndDate (optional)

Descriptor catalog Descriptor

ServiceLocationType #

/ed-fi/descriptors/serviceLocationTypeDescriptors

The location type where the prescribed service is to be provided. Examples include: Home, Hospital, School.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.ServiceLocationTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (24 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ServiceLocationTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Bus/District Transportation Bus/District Transportation Bus/District Transportation uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Community Community Community uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
General Education Cafeteria General Education Cafeteria General Education Cafeteria uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
General Education Classroom General Education Classroom General Education Classroom uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
General Education Classroom (Virtual) General Education Classroom (Virtual) General Education Classroom (Virtual) uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Home Home Home uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nurse's Office Nurse's Office Nurse's Office uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Occupational Therapy Room (Individual) Occupational Therapy Room (Individual) Occupational Therapy Room (Individual) uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical Therapy Room (Individual) Physical Therapy Room (Individual) Physical Therapy Room (Individual) uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Counselor's Office School Counselor's Office School Counselor's Office uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Environment School Environment School Environment uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education (Home) Special Education (Home) Special Education (Home) uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Classroom Special Education Classroom Special Education Classroom uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Classroom (Virtual) Special Education Classroom (Virtual) Special Education Classroom (Virtual) uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Community Special Education Community Special Education Community uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Hospital/Medical Homebound Special Education Hospital/Medical Homebound Special Education Hospital/Medical Homebound uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Nurse's Office Special Education Nurse's Office Special Education Nurse's Office uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education School Counselor's Office Special Education School Counselor's Office Special Education School Counselor's Office uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Support Room Special Education Support Room Special Education Support Room uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Teletherapy (Individual Virtual) Special Education Teletherapy (Individual Virtual) Special Education Teletherapy (Individual Virtual) uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Teletherapy(Small Group Virtual) Special Education Teletherapy(Small Group Virtual) Special Education Teletherapy(Small Group Virtual) uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Therapy Room (Individual) Special Education Therapy Room (Individual) Special Education Therapy Room (Individual) uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Therapy Room (Small Group) Special Education Therapy Room (Small Group) Special Education Therapy Room (Small Group) uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech Therapy Room (Small Group) Speech Therapy Room (Small Group) Speech Therapy Room (Small Group) uri://ed-fi.org/ServiceLocationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentIEPServicePrescription.ServiceLocationType (required)

Descriptor catalog Descriptor

ServicePrescription #

/ed-fi/descriptors/servicePrescriptionDescriptors

The type of service prescribed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.ServicePrescriptionDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (42 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ServicePrescriptionDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adapted Physical Education Adapted Physical Education Adapted Physical Education uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Adaptive Physical Adaptive Physical Adaptive Physical uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Assistive Technology Assistive Technology Assistive Technology uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Audiological Services Audiological Services Audiological Services uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Audiological Services (Special Education) Audiological Services (Special Education) Audiological Services (Special Education) uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Behavior Behavior Behavior uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Behavior Services Behavior Services Behavior Services uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Counseling Counseling Counseling uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Daily Living Daily Living Daily Living uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Day Day Day uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Enrichment Enrichment Enrichment uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fine Motor Fine Motor Fine Motor uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Functional Academics Functional Academics Functional Academics uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Functional Communication Functional Communication Functional Communication uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Gross Motor Gross Motor Gross Motor uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hearing Hearing Hearing uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hearing Services Hearing Services Hearing Services uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Interpreter Interpreter Interpreter uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Math Math Math uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medication Administration Medication Administration Medication Administration uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-Emergency Transportation Services - Daily Non-Emergency Transportation Services - Daily Non-Emergency Transportation Services - Daily uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-Emergency Transportation Services - Weekly Non-Emergency Transportation Services - Weekly Non-Emergency Transportation Services - Weekly uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nursing Nursing Nursing uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nursing Services Nursing Services Nursing Services uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Occupational Therapy Occupational Therapy Occupational Therapy uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Occupational Therapy Services Occupational Therapy Services Occupational Therapy Services uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Organization/Study Skills Organization/Study Skills Organization/Study Skills uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Orientation and Mobility Orientation and Mobility Orientation and Mobility uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Orientation and Mobility Services Orientation and Mobility Services Orientation and Mobility Services uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical Therapy Physical Therapy Physical Therapy uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical Therapy Services Physical Therapy Services Physical Therapy Services uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pre-Academic Readiness Pre-Academic Readiness Pre-Academic Readiness uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reading Reading Reading uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sensory Sensory Sensory uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Social/Emotional Social/Emotional Social/Emotional uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech and Language (Related Service) Speech and Language (Related Service) Speech and Language (Related Service) uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech and Language (Special Education) Speech and Language (Special Education) Speech and Language (Special Education) uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech and Language Services Speech and Language Services Speech and Language Services uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transition Transition Transition uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transportation Transportation Transportation uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vision (Special Education) Vision (Special Education) Vision (Special Education) uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Written Expression Written Expression Written Expression uri://ed-fi.org/ServicePrescriptionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentIEPServicePrescription.ServicePrescription (required)

UDM primitive/simple type Date

ServicePrescriptionDate #

dictionary-only type

The date the service was prescribed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentIEPServicePrescription.ServicePrescriptionDate (identity)

UDM common/composite Composite Part

ServiceProvider #

dictionary-only type

The student's special education ServiceProvider.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the ServiceProvider to the Staff. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PrimaryProvider
PrimaryProvider
Boolean
BOOLEAN
optional Primary ServiceProvider. boolean true/false; optional Ed-Fi field source pass-through
Used By (2)
  • StudentSpecialEducationProgramAssociation.ServiceProvider (optional collection)
  • SpecialEducationProgramService.ServiceProvider (optional collection)

Descriptor catalog Descriptor

ServiceProviderType #

/ed-fi/descriptors/serviceProviderTypeDescriptors

Indicates service provider type, including specialist, internal staff, external staff, etc.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.ServiceProviderTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (16 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for ServiceProviderTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Audiologist Audiologist Audiologist uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Behavior Specialist Behavior Specialist Behavior Specialist uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
General Education Teacher General Education Teacher General Education Teacher uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Occupational Therapist Occupational Therapist Occupational Therapist uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Orientation Mobility Specialist Orientation Mobility Specialist Orientation Mobility Specialist uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Service Provider Other Service Provider Other Service Provider uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Paraprofessional / Instructional Aide Paraprofessional / Instructional Aide Paraprofessional / Instructional Aide uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Physical Therapist Physical Therapist Physical Therapist uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Nurse School Nurse School Nurse uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Psychologist School Psychologist School Psychologist uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Social Worker School Social Worker School Social Worker uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Teacher Special Education Teacher Special Education Teacher uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech-Language Pathologist Speech-Language Pathologist Speech-Language Pathologist uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Team Lead/Case Manager Team Lead/Case Manager Team Lead/Case Manager uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transition Specialist Transition Specialist Transition Specialist uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vision Specialist Vision Specialist Vision Specialist uri://ed-fi.org/ServiceProviderTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Provider.ServiceProviderType (optional)

Canonical UDM resource Class

Session #

/ed-fi/sessions

A specific designated unit of time during which instruction is provided, grades are reported and academic credits are awarded to students (whenever applicable). Sessions serve as organized segments of the academic year and can be interrupted by vacations or other events.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Bell Schedule, School Calendar, Student Academic Record, Student Attendance, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.Session edfi.SessionAcademicWeek edfi.SessionGradingPeriod
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SessionName
SessionName
String
VARCHAR(120)
required
identity
ODS/API identity
The identifier for the calendar for the academic session. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The identifier for the school year. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required Month, day, and year of the first day of the session. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
required Month, day and year of the last day of the session. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
Term
TermDescriptor
Reference
DescriptorProperty
Allowed values: TermDescriptor (16 Ed-Fi seed values)
required A descriptor value to indicate the term that the session is associated with. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TotalInstructionalDays
TotalInstructionalDays
Number
INT
required The total number of instructional days in the school calendar. integer range -2,147,483,648 to 2,147,483,647; required Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the session to the school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GradingPeriod
GradingPeriods
Reference
DomainEntityProperty
optional collection Grading periods associated with the session. object reference; optional collection Ed-Fi field source pass-through
AcademicWeek
AcademicWeeks
Reference
DomainEntityProperty
optional collection The academic weeks associated with the school year. object reference; optional collection Ed-Fi field source pass-through
Used By (3)
  • CourseOffering.Session (required)
  • StudentSchoolAttendanceEvent.Session (required)
  • Survey.Session (optional)

Descriptor catalog Descriptor

Sex #

/ed-fi/descriptors/sexDescriptors

A person's birth sex.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Assessment Registration, Discipline, Educator Preparation Program, Enrollment, Graduation, Intervention, Recruiting and Staffing, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Student Health, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.SexDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SexDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Female Female Female uri://ed-fi.org/SexDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Male Male Male uri://ed-fi.org/SexDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Non-binary Non-binary Non-binary uri://ed-fi.org/SexDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Selected Not Selected Not Selected uri://ed-fi.org/SexDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (11)
  • ApplicantProfile.Sex (optional)
  • Candidate.Sex (required)
  • Contact.Sex (optional)
  • Intervention.AppropriateSex (optional collection)
  • InterventionPrescription.AppropriateSex (optional collection)
  • InterventionStudy.AppropriateSex (optional collection)
  • RecruitmentEventAttendance.Sex (optional)
  • StaffDemographic.Sex (optional)
  • StudentDemographic.Sex (optional)
  • BirthData.BirthSex (optional)
  • LearningResource.AppropriateSex (optional collection)

UDM primitive/simple type String

ShortDescription #

dictionary-only type

A shortened description for reference.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 75
Used By (1)
  • LearningResource.ShortDescription (required)

UDM primitive/simple type Boolean

ShortenedSchoolDayIndicator #

dictionary-only type

Indicator that the student's IEP requires a shortened school day.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.ShortenedSchoolDayIndicator (optional)

UDM primitive/simple type String

SocialMediaNetworkName #

dictionary-only type

The social media network name associated with the social media username.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 50
Used By (1)
  • RecruitmentEventAttendance.SocialMediaNetworkName (optional)

UDM primitive/simple type String

SocialMediaUserName #

dictionary-only type

The user name of the person on social media.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 50
Used By (1)
  • RecruitmentEventAttendance.SocialMediaUserName (optional)

UDM primitive/simple type Number

SortOrder #

dictionary-only type

The arrangement or sequence in which data is organized or displayed.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (6)
  • ResponseChoice.SortOrder (required)
  • EvaluationElement.SortOrder (optional)
  • EvaluationObjective.SortOrder (optional)
  • EvaluationRubricDimension.RubricDimensionSortOrder (optional)
  • ProgramEvaluationElement.ElementSortOrder (optional)
  • ProgramEvaluationObjective.ObjectiveSortOrder (optional)

Canonical UDM resource Class

SourceDimension #

/ed-fi/sourceDimensions

The NCES source dimension. This dimension is used to segregate costs by school and operational unit such as physical location, department, or other method.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Finance
Source
UDM Handbook entry
Physical SQL snippets
edfi.SourceDimension edfi.SourceDimensionReportingTag
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Code
Code
String
VARCHAR(16)
required
identity
ODS/API identity
The code representation of the account source dimension. max length 16 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for which the account source dimension is valid. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CodeName
CodeName
String
VARCHAR(100)
optional A description of the account source dimension. max length 100 characters; optional Ed-Fi field source pass-through
ReportingTag
ReportingTags
Reference
DescriptorProperty
Allowed values: governed ReportingTagsDescriptor values; no matching handbook descriptor entry found.
optional collection Optional tag for accountability reporting. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • ChartOfAccount.SourceSourceDimension (optional)

Descriptor catalog Descriptor

SourceSystem #

/ed-fi/descriptors/sourceSystemDescriptors

This descriptor defines the originating record source system.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.SourceSystemDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (4 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SourceSystemDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
District District District uri://ed-fi.org/SourceSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Federal Federal uri://ed-fi.org/SourceSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/SourceSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State State uri://ed-fi.org/SourceSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Person.SourceSystem (required)

UDM primitive/simple type String

SpecialAccomodationRequirements #

dictionary-only type

Specific requirements needed to accommodate a student's physical needs which may include special equipment installed in a vehicle or a special arrangement for transportation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 1024

UDM primitive/simple type Date

SpecialEducationExitDate #

dictionary-only type

The month, day and year on which a person stops receiving special education services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramAssociation.SpecialEducationExitDate (optional)

UDM primitive/simple type String

SpecialEducationExitExplained #

dictionary-only type

Explanation on why a person stops receiving special education services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 1024
Used By (1)
  • StudentSpecialEducationProgramAssociation.SpecialEducationExitExplained (optional)

Descriptor catalog Descriptor

SpecialEducationExitReason #

/ed-fi/descriptors/specialEducationExitReasonDescriptors

The reason why a person stops receiving special education services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education
Source
UDM Handbook entry
Physical SQL snippets
edfi.SpecialEducationExitReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SpecialEducationExitReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Dropped out Dropped out of school Student exited the Special Education program and related services because of dropping out of school. uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graduated with Certificate Graduated with Certificate of Completion Student exited the Special Education program and related services because of graduating with a certificate of completion. uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graduated with Diploma Graduated with Diploma Student exited the Special Education program and related services because of graduating with a diploma. uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No longer eligible for Part C prior to age 3 No longer eligible for Part C prior to reaching age three as reason to exit No longer eligible for Part C prior to reaching age three is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period. uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No longer eligible for Special Education No longer eligible for Special Education Student exited the Special Education program and related services because of an ineligibility other than reaching age limit uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Student exited the Special Education program and related services for any reason other than listed in the descriptor. uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Part B eligibility not determined Part B eligibility not determined as reason to exit Part B eligibility not determined is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period. uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Part B eligible, continuing in Part C Part B eligible, continuing in Part C as reason to exit Part B eligible, continuing in Part C is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period. uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Part B eligible, exiting Part C Part B eligible, exiting Part C as reason to exit Part B eligible, exiting Part C is the reason the child who was in special education at the start of the reporting period was not in special education at the end of the reporting period. uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reached the age limit Reached the maximum age limit for services Student exited the Special Education program and related services because of an ineligibility other than reaching the maximum age limit. uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Transferred out Transferred to another educational organization Student exited the Special Education program and related services because of transfering out another educational organization uri://ed-fi.org/SpecialEducationExitReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentSpecialEducationProgramAssociation.SpecialEducationExitReason (optional)

UDM common/composite Composite Part

SpecialEducationProgramService #

dictionary-only type

The student's special education program service information.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SpecialEducationProgramService
SpecialEducationProgramServiceDescriptor
Reference
DescriptorProperty
Allowed values: SpecialEducationProgramServiceDescriptor (12 Ed-Fi seed values)
required
identity
ODS/API identity
Indicates the service being provided to the student by the special education program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryIndicator
PrimaryIndicator
Boolean
BOOLEAN
optional True if service is a primary service. boolean true/false; optional Ed-Fi field source pass-through
ServiceBeginDate
ServiceBeginDate
Date
DATE
optional First date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ServiceEndDate
ServiceEndDate
Date
DATE
optional Last date the student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ServiceProvider
Providers
Reference
CommonProperty
optional collection The staff providing the service to the student. object reference; optional collection Ed-Fi field source pass-through
Used By (1)
  • StudentSpecialEducationProgramAssociation.SpecialEducationProgramService (optional collection)

Descriptor catalog Descriptor

SpecialEducationProgramService #

/ed-fi/descriptors/specialEducationProgramServiceDescriptors

This descriptor defines the services provided by an education organization to populations of students associated with a special education program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education
Source
UDM Handbook entry
Physical SQL snippets
edfi.SpecialEducationProgramServiceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (12 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SpecialEducationProgramServiceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Counseling Services Counseling Services (Including Rehabilitation Counseling) Counseling Services (Including Rehabilitation Counseling) uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Identification And Evaluation Early Identification And Evaluation Early Identification And Evaluation uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Interpreting Services Interpreting Services Interpreting Services uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medical Services Medical Services (Diagnostic or evaluation only - not ongoing treatment) Medical Services (Diagnostic or evaluation only - not ongoing treatment) uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Occupational And Physical Therapy Occupational And Physical Therapy Occupational And Physical Therapy uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Orientation And Mobility Orientation And Mobility Orientation And Mobility uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent Counseling And Training Parent Counseling And Training Parent Counseling And Training uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Psychological Services Psychological Services Psychological Services uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Recreation, Including Therapeutic Recreation Recreation, Including Therapeutic Recreation Recreation, Including Therapeutic Recreation uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Health and/or School Nurse Services School Health and/or School Nurse Services School Health and/or School Nurse Services uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Social Work Services Social Work Services Social Work Services uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Speech-Language And Audiology Services Speech-Language And Audiology Services Speech-Language And Audiology Services uri://ed-fi.org/SpecialEducationProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • SpecialEducationProgramService.SpecialEducationProgramService (required)

Descriptor catalog Descriptor

SpecialEducationSetting #

/ed-fi/descriptors/specialEducationSettingDescriptors

This descriptor defines the major instructional setting (more than 50 percent of a student's special education program).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.SpecialEducationSettingDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (16 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SpecialEducationSettingDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Correctional facilities Correctional facilities Correctional facilities uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Home Home Home uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Homebound/Hospital Homebound/Hospital Homebound/Hospital uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Inside reg class between 40-79% of the day DEPRECATED: Inside reg class 40-79% of the day DEPRECATED: Inside reg class 40-79% of the day uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Inside regular class 80% or more of the day Inside regular class 80% or more of the day Inside regular class 80% or more of the day uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Inside regular class between 40-79% of the day Inside regular class between 40-79% of the day Inside regular class no more than 79% of day and no less than 40% of the day uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Inside regular class less than 40% of the day Inside regular class less than 40% of the day Inside regular class less than 40% of the day uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other early childhood location (10+ hrs) Other early childhood location (10+ hrs) Other early childhood location (10+ hrs) uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other early childhood location 10 or less hours Other early childhood location 10 or less hours Other early childhood location 10 or less hours uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parentally-placed in private schools Parentally-placed in private schools Parentally-placed in private schools uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regular early childhood program (10+ hrs) Regular early childhood program (10+ hrs) Services in regular early childhood program (at least 10 hours) uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regular early childhood program (less than 10 hrs) Regular early childhood program (less than 10 hrs) Services in regular early childhood program (less than 10 hours) uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Residential facility Residential facility Residential facility uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Separate class Separate class Separate class uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Separate school Separate school Separate school uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Service provider location Service provider location Service provider location uri://ed-fi.org/SpecialEducationSettingDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • StudentSpecialEducationProgramAssociation.SpecialEducationSetting (optional)
  • StudentIEP.SpecialEducationSetting (optional)

UDM primitive/simple type String

Specialization #

dictionary-only type

An area of specialization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 1
  • max length: 255
Used By (2)
  • DegreeSpecialization.MajorSpecialization (required)
  • DegreeSpecialization.MinorSpecialization (optional)

Canonical UDM resource Class

Staff #

/ed-fi/staffs

This entity represents an individual who performs specified activities for any public or private education institution or agency that provides instructional and/or support services to students or staff at the early childhood level through high school completion.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Discipline, Finance, Intervention, Special Education, Staff, Student Attendance, Student Cohort, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.Staff edfi.StaffCredential edfi.StaffEducatorPreparationProgram edfi.StaffEducatorResearch edfi.StaffHighlyQualifiedAcademicSubject edfi.StaffOtherName edfi.StaffPersonalIdentificationDocument edfi.StaffRecognition
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (16)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StaffUniqueId
StaffUniqueId
String
VARCHAR(32)
required
identity
ODS/API identity
A unique alphanumeric code assigned to a staff. max length 32 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Name
Name
Reference
InlineCommonProperty
required Full legal name of the person. object reference; required Ed-Fi field source pass-through
OtherName
OtherNames
Reference
CommonProperty
optional collection Other names associated with a person. object reference; optional collection Ed-Fi field source pass-through
BirthDate
BirthDate
Date
DATE
optional The month, day, and year on which an individual was born. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
HighestCompletedLevelOfEducation
HighestCompletedLevelOfEducationDescriptor
Reference
DescriptorProperty
Allowed values: governed HighestCompletedLevelOfEducationDescriptor values; no matching handbook descriptor entry found.
optional The extent of formal instruction an individual has received (e.g., the highest grade in school completed or its equivalent or the highest degree received). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
YearsOfPriorProfessionalExperience
YearsOfPriorProfessionalExperience
Number
DECIMAL(5, 2)
optional The total number of years that an individual has previously held a similar professional position in one or more education institutions prior to the current school year. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
YearsOfPriorTeachingExperience
YearsOfPriorTeachingExperience
Number
DECIMAL(5, 2)
optional The total number of years that an individual has previously held a teaching position in one or more education institutions prior to the current school year. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
LoginId
LoginId
String
VARCHAR(120)
optional The login ID for the user; used for security access control interface. max length 120 characters; optional Ed-Fi field source pass-through
HighlyQualifiedTeacher
HighlyQualifiedTeacher
Boolean
BOOLEAN
optional An indication of whether a teacher is classified as highly qualified for his/her assignment according to state definition. This attribute indicates the teacher is highly qualified for ALL Sections being taught. boolean true/false; optional Ed-Fi field source pass-through
Recognition
Recognitions
Reference
CommonProperty
optional collection Recognitions given to the staff for accomplishments in a co-curricular or extracurricular activity. object reference; optional collection Ed-Fi field source pass-through
Credential
Credentials
Reference
DomainEntityProperty
optional collection The legal document giving authorization to perform teaching assignment services. object reference; optional collection Ed-Fi field source pass-through
Person
PersonReference
Reference
DomainEntityProperty
optional Relates the staff to a generic person. object reference; optional Ed-Fi field source pass-through
HighlyQualifiedAcademicSubject
HighlyQualifiedAcademicSubjects
Reference
DescriptorProperty
Allowed values: governed HighlyQualifiedAcademicSubjectsDescriptor values; no matching handbook descriptor entry found.
optional collection The academic subject(s) in which the staff is deemed to be "highly qualified". object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducatorResearch
EducatorResearch
Reference
CommonProperty
optional The educator preparation provider faculty that instruct teacher candidates in content area or pedagogy. object reference; optional Ed-Fi field source pass-through
EducatorPreparationProgram
EducatorPreparationPrograms
Reference
DomainEntityProperty
optional collection The educator preparation program(s) completed by the teacher. object reference; optional collection Ed-Fi field source pass-through
OpenStaffPosition
OpenStaffPositionReference
Reference
DomainEntityProperty
optional Reference to the open staff position filled by the staff. object reference; optional Ed-Fi field source pass-through
Used By (27)
  • CandidateRelationshipToStaffAssociation.Staff (required)
  • StaffCohortAssociation.Staff (required)
  • StaffDisciplineIncidentAssociation.Staff (required)
  • StaffEducationOrganizationAssignmentAssociation.Staff (required)
  • StaffEducationOrganizationEmploymentAssociation.Staff (required)
  • StaffEducatorPreparationProgramAssociation.Staff (required)
  • StaffProgramAssociation.Staff (required)
  • StaffSchoolAssociation.Staff (required)
  • StaffSectionAssociation.Staff (required)
  • SurveyResponseStaffTargetAssociation.Staff (required)
  • SurveySectionResponseStaffTargetAssociation.Staff (required)
  • SurveyResponderChoice.Staff (required)
  • Provider.Staff (optional)
  • ServiceProvider.Staff (required)
  • CourseTranscript.ResponsibleTeacherStaff (optional)
  • DisciplineAction.Staff (optional collection)
  • Intervention.Staff (optional collection)
  • LocalContractedStaff.Staff (required)
  • LocalPayroll.Staff (required)
  • SectionAttendanceTakenEvent.Staff (optional)
  • StaffAbsenceEvent.Staff (required)
  • StaffDemographic.Staff (required)
  • StaffDirectory.Staff (required)
  • StaffIdentificationCode.Staff (required)
  • StaffLeave.Staff (required)
  • StudentIEPServicePrescription.Staff (optional collection)
  • StudentProgramEvaluation.StaffEvaluatorStaff (optional)

Canonical UDM resource Class

StaffAbsenceEvent #

/ed-fi/staffAbsenceEvents

This event entity represents the recording of the dates of staff absence.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffAbsenceEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EventDate
EventDate
Date
DATE
required
identity
ODS/API identity
Date for this leave event. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AbsenceEventCategory
AbsenceEventCategoryDescriptor
Reference
DescriptorProperty
Allowed values: AbsenceEventCategoryDescriptor (12 Ed-Fi seed values)
required
identity
ODS/API identity
The code describing the type of absence. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AbsenceEventReason
AbsenceEventReason
String
VARCHAR(40)
optional Expanded reason for the staff absence. max length 40 characters; optional Ed-Fi field source pass-through
HoursAbsent
HoursAbsent
Number
DECIMAL(18, 2)
optional The hours the staff was absent, if not the entire working day. numeric precision 18, scale 2; optional Ed-Fi field source pass-through
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The staff associated with this absence event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Descriptor catalog Descriptor

StaffClassification #

/ed-fi/descriptors/staffClassificationDescriptors

This descriptor defines an individual's title of employment, official status or rank.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffClassificationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (52 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for StaffClassificationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
All Other Support Staff All Other Support Staff All Other Support Staff uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Assistant Principal DEPRECATED: Assistant Principal DEPRECATED: Assistant Principal uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Assistant Superintendent DEPRECATED: Assistant Superintendent DEPRECATED: Assistant Superintendent uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Behavioral Specialist Behavioral Specialist Behavioral Specialist uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Counselor DEPRECATED: Counselor DEPRECATED: Counselor uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Learning Assistant Teachers Early Learning Assistant Teachers Assistant Teachers of general level instruction and/or services delivery classified by state and local practice from birth to Kindergarten. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Learning Teachers Early Learning Teachers Teachers of general level instruction and/or services delivery classified by state and local practice from birth to Kindergarten. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Elementary School Counselor Elementary School Counselor Elementary School Counselor uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Elementary Teacher Elementary Teacher Elementary Teacher uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Family Service Workers Family Service Workers Professional staff members assigned specific duties related to staff providing in-home and other services (including needs assessment, development of service plans, family advocacy, and coordination of service delivery) to families of children participating in early care and education programs. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health Specialists Health Specialists Professional staff members or supervisors assigned specific duties related to providing any Health services that are not specific to mental health. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Home Visitors Home Visitors Professional staff members assigned specific duties related to visiting a child or pregnant woman's home for the purpose of assisting parents in fostering the growth and development of their child. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Instr Coordinator and Supervisor to the Staff Instructional Coordinator and Supervisor to the Staff Instructional Coordinator and Supervisor to the Staff uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Instructional Aide DEPRECATED: Instructional Aide DEPRECATED: Instructional Aide uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Instructional Coordinator DEPRECATED: Instructional Coordinator DEPRECATED: Instructional Coordinator uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kindergarten Teacher Kindergarten Teacher Kindergarten Teacher uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LEA Administrative Support Staff LEA Administrative Support Staff LEA Administrative Support Staff uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LEA Administrator LEA Administrator LEA Administrator uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LEA Specialist DEPRECATED: LEA Specialist DEPRECATED: LEA Specialist uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LEA System Administrator DEPRECATED: LEA System Administrator DEPRECATED: LEA System Administrator uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Librarian/Media Specialist Librarian/Media Specialist Librarian/Media Specialist uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Library/Media Support Staff Library/Media Support Staff Library/Media Support Staff uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mental Health Specialists Mental Health Specialists Professional staff members assigned specific duties related to Mental Health. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mentor Teacher Mentor Teacher Mentor Teacher uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Missing Missing Missing uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nutrition Specialists Nutrition Specialists Professional staff members assigned specific duties related to Nutrition. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Operational Support DEPRECATED: Operational Support DEPRECATED: Operational Support uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other DEPRECATED: Other DEPRECATED: Other uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Paraprofessional/Instructional Aide Paraprofessional/Instructional Aide Paraprofessional/Instructional Aide uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Part C Early Interventionists Professionals employed to provide Part C early intervention services Professional staff members employed to provide early intervention services to infants and toddlers with disabilities or at-risk of experiencing a substantial developmental delay as defined by Part C of the Individuals with Disabilities Education Act (IDEA): The Early Intervention Program for Infants and Toddlers with Disabilities. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Part C Service Coordinators Professionals employed to coordinate Part C early intervention services Professional staff members employed to coordinate early intervention services to infants and toddlers with disabilities or at-risk of experiencing a substantial developmental delay as defined by Part C of the Individuals with Disabilities Education Act (IDEA): The Early Intervention Program for Infants and Toddlers with Disabilities. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pre-Kindergarten Teacher Pre-Kindergarten Teacher Pre-Kindergarten Teacher uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Principal DEPRECATED: Principal DEPRECATED: Principal uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Administrative Support Staff School Administrative Support Staff School Administrative Support Staff uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Administrator School Administrator School Administrator uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Counselor School Counselor School Counselor uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Leader DEPRECATED: School Leader DEPRECATED: School Leader uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Psychologist School Psychologist School Psychologist uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Specialist DEPRECATED: School Specialist DEPRECATED: School Specialist uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Secondary School Counselor Secondary School Counselor Secondary School Counselor uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Secondary Teacher Secondary Teacher Secondary Teacher uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Site Coordinator Site Coordinator Site Coordinator uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Social Workers Professionals that assist people with coping and solving everyday issues. Social workers assist people by helping them cope with and solve issues in their everyday lives, such as family and personal problems and dealing with relationships. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Education Teachers Teachers that provide special education to children with disabilities Include teachers employed to provide special education services to children with disabilities, including preschool teachers, itinerant/consulting teachers, and home/hospital teachers. This should include teachers of children with disabilities in separate schools and facilities. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Needs Specialists Special Needs Specialists Professional staff members or supervisors assigned specific duties related to special needs learners. uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State Administrator DEPRECATED: State Administrator DEPRECATED: State Administrator uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Support Services Staff (w/o Psychology) Student Support Services Staff (w/o Psychology) Student Support Services Staff (w/o Psychology) uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Substitute Teacher DEPRECATED: Substitute Teacher DEPRECATED: Substitute Teacher uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Superintendent DEPRECATED: Superintendent DEPRECATED: Superintendent uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Support Services Staff DEPRECATED: Support Services Staff DEPRECATED: Support Services Staff uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher DEPRECATED: Teacher DEPRECATED: Teacher uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ungraded Teacher Ungraded Teacher Ungraded Teacher uri://ed-fi.org/StaffClassificationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • StaffEducationOrganizationAssignmentAssociation.StaffClassification (required)
  • OpenStaffPosition.StaffClassification (required)

Canonical UDM association Association Class

StaffCohortAssociation #

/ed-fi/staffCohortAssociations

This association indicates the staff associated with a cohort of students.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffCohortAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The staff associated with the cohort of students. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Cohort
CohortReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the cohort associated with the staff. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
Start date for the association of staff to this cohort. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional End date for the association of staff to this cohort. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
StudentRecordAccess
StudentRecordAccess
Boolean
BOOLEAN
optional Indicator of whether the staff has access to the student records of the cohort per district interpretation of FERPA and other privacy laws, regulations, and policies. boolean true/false; optional Ed-Fi field source pass-through

Canonical UDM resource Class deprecated source element

StaffDemographic #

/ed-fi/staffDemographics

The demographic information associated to a Staff member

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffDemographic edfi.StaffDemographicAncestryEthnicOrigin edfi.StaffDemographicIdentificationDocument edfi.StaffDemographicLanguage edfi.StaffDemographicLanguageUse edfi.StaffDemographicRace edfi.StaffDemographicTribalAffiliation edfi.StaffDemographicVisa
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the Staff member. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference ot the education organization representing the context of the Staff information. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AncestryEthnicOrigin
AncestryEthnicOrigins
Reference
DescriptorProperty
Allowed values: governed AncestryEthnicOriginsDescriptor values; no matching handbook descriptor entry found.
optional collection The original peoples or cultures with which the individual identifies. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Citizenship
Citizenship
Reference
InlineCommonProperty
optional Contains information relative to U.S. citizenship status and its associated probationary documentation. object reference; optional Ed-Fi field source pass-through
GenderIdentity
GenderIdentity
String
VARCHAR(60)
optional The Staff's gender as last reported to the education organization. max length 60 characters; optional Ed-Fi field source pass-through
HispanicLatinoEthnicity
HispanicLatinoEthnicity
Boolean
BOOLEAN
optional An indication that the individual traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central, and South America, and other Spanish cultures, regardless of race, as last reported to the education organization. The term "Spanish origin", can be used in addition to "Hispanic or Latino". boolean true/false; optional; deprecated: see deprecation reason
Deprecated: This element is scheduled for removal by 2029. users of this element are advised to use Race instead.
Ed-Fi field source pass-through
Language
Languages
Reference
CommonProperty
optional collection The language(s) the individual uses to communicate. It is strongly recommended that entries use only ISO 639-3 languages codes. object reference; optional collection Ed-Fi field source pass-through
Race
Races
Reference
DescriptorProperty
Allowed values: governed RacesDescriptor values; no matching handbook descriptor entry found.
optional collection The general racial category which most clearly reflects the individual's recognition of his or her community or with the which the individual most identifies as last reported to the education organization. The data model allows for multiple entries so that each individual can specify all appropriate races. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Sex
SexDescriptor
Reference
DescriptorProperty
Allowed values: SexDescriptor (4 Ed-Fi seed values)
optional The Staff's birth sex as reported to the education organization. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TribalAffiliation
TribalAffiliations
Reference
DescriptorProperty
Allowed values: governed TribalAffiliationsDescriptor values; no matching handbook descriptor entry found.
optional collection An American Indian tribe with which the Staff is affiliated as last reported to the education organization. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through

Canonical UDM resource Class

StaffDirectory #

/ed-fi/staffDirectories

The contact information associated to a staff member.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffDirectory edfi.StaffDirectoryAddress edfi.StaffDirectoryAddressCharacteristic edfi.StaffDirectoryAddressPeriod edfi.StaffDirectoryElectronicMail edfi.StaffDirectoryInternationalAddress edfi.StaffDirectoryTelephone
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the staff member. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization representing the context of the staff information object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Address
Addresses
Reference
CommonProperty
optional collection The set of elements that describes an address, including the street address, city, state, and ZIP code. object reference; optional collection Ed-Fi field source pass-through
ElectronicMail
ElectronicMails
Reference
CommonProperty
optional collection The numbers, letters, and symbols used to identify an electronic email (e-mail) user within the network to which the individual or organization belongs. object reference; optional collection Ed-Fi field source pass-through
InternationalAddress
InternationalAddresses
Reference
CommonProperty
optional collection The set of elements that describes an international address. object reference; optional collection Ed-Fi field source pass-through
Telephone
Telephones
Reference
CommonProperty
optional collection The 10-digit telephone number, including the area code, for the person. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM association Association Class

StaffDisciplineIncidentAssociation #

/ed-fi/staffDisciplineIncidentAssociations

This association indicates those staff who were victims, perpetrators, witnesses, and reporters for a discipline incident.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffDisciplineIncidentAssociation edfi.StaffDisciplineIncidentAssociationDisciplineIncidentParticipationCode
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the staff associated with the discipline incident. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DisciplineIncident
DisciplineIncidentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the discipline incident associated with the staff. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DisciplineIncidentParticipationCode
DisciplineIncidentParticipationCodes
Reference
DescriptorProperty
Allowed values: governed DisciplineIncidentParticipationCodesDescriptor values; no matching handbook descriptor entry found.
required collection The role or type of participation of a student in a discipline incident. object reference; required collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through

Canonical UDM association Association Class

StaffEducationOrganizationAssignmentAssociation #

/ed-fi/staffEducationOrganizationAssignmentAssociations

This association indicates the education organization to which a staff member provides services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffEducationOrganizationAssignmentAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (11)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The staff assigned to the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization to which the staff member provides services. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StaffClassification
StaffClassificationDescriptor
Reference
DescriptorProperty
Allowed values: StaffClassificationDescriptor (52 Ed-Fi seed values)
required
identity
ODS/API identity
The titles of employment, official status, or rank of education staff. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PositionTitle
PositionTitle
String
VARCHAR(100)
optional The descriptive name of an individual's position. max length 100 characters; optional Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
Month, day, and year of the start or effective date of a staff member's employment, contract, or relationship with the education organization. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional Month, day, and year of the end or termination date of a staff member's employment, contract, or relationship with the education organization. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
OrderOfAssignment
OrderOfAssignment
Number
INT
optional Describes whether the assignment is this the staff member's primary assignment, secondary assignment, etc. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
StaffEducationOrganizationEmploymentAssociation
EmploymentStaffEducationOrganizationEmploymentAssociationReference
Reference
AssociationProperty
optional A reference to the employment association. object reference; optional Ed-Fi field source pass-through
Credential
CredentialReference
Reference
DomainEntityProperty
optional Reference to the credential that is the basis for this assignment. object reference; optional Ed-Fi field source pass-through
FullTimeEquivalency
FullTimeEquivalency
Number
DECIMAL(5, 4)
optional The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting. numeric precision 5, scale 4; optional Ed-Fi field source pass-through
YearsOfExperienceAtCurrentEducationOrganization
YearsOfExperienceAtCurrentEducationOrganization
Number
DECIMAL(5, 2)
optional The total number of years that an individual has previously held a teaching position in one or more education institutions. numeric precision 5, scale 2; optional Ed-Fi field source pass-through

Canonical UDM association Association Class

StaffEducationOrganizationEmploymentAssociation #

/ed-fi/staffEducationOrganizationEmploymentAssociations

This association indicates the education organization an employee, contractor, volunteer, or other service provider is formally associated with typically indicated by which organization the staff member has a services contract with or receives compensation from.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffEducationOrganizationEmploymentAssociation edfi.StaffEducationOrganizationEmploymentAssociationBackgroundCheck edfi.StaffEducationOrganizationEmploymentAssociationSalary edfi.StaffEducationOrganizationEmploymentAssociationSeniority
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (17)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The staff employed by the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization with which the staff is employed. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EmploymentStatus
EmploymentStatusDescriptor
Reference
DescriptorProperty
Allowed values: EmploymentStatusDescriptor (10 Ed-Fi seed values)
required
identity
ODS/API identity
Reflects the type of employment or contract. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EmploymentPeriod
EmploymentPeriod
Reference
InlineCommonProperty
required The set of elements defining and characterizing a person's period of employment including start and end dates and the type and reason for separation. object reference; required Ed-Fi field source pass-through
Department
Department
String
VARCHAR(60)
optional The department or suborganization the employee/contractor is associated with in the education organization. max length 60 characters; optional Ed-Fi field source pass-through
FullTimeEquivalency
FullTimeEquivalency
Number
DECIMAL(5, 4)
optional The ratio between the hours of work expected in a position and the hours of work normally expected in a full-time position in the same setting. numeric precision 5, scale 4; optional Ed-Fi field source pass-through
OfferDate
OfferDate
Date
DATE
optional Date at which the staff member was made an official offer for this employment. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
HourlyWage
HourlyWage
Number
MONEY
optional Hourly wage associated with the employment position being reported. optional Ed-Fi field source pass-through
AnnualWage
AnnualWage
Number
MONEY
optional Annual wage associated with the employment position being reported. optional Ed-Fi field source pass-through
Credential
CredentialReference
Reference
DomainEntityProperty
optional Reference to the credential that is the basis for this employment. object reference; optional Ed-Fi field source pass-through
BackgroundCheck
BackgroundChecks
Reference
CommonProperty
optional collection Staff background check history and disposition. object reference; optional collection Ed-Fi field source pass-through
ProbationCompleteDate
ProbationCompleteDate
Date
DATE
optional The date the probation period ended or is scheduled to end. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Salary
Salary
Reference
CommonProperty
optional Information regarding the salary of a staff member. object reference; optional Ed-Fi field source pass-through
LengthOfContract
LengthOfContractDescriptor
Reference
DescriptorProperty
Allowed values: LengthOfContractDescriptor (4 Ed-Fi seed values)
optional The length of contract. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Seniority
Seniorities
Reference
CommonProperty
optional collection Entries of job experience contributing to the computations of seniority. object reference; optional collection Ed-Fi field source pass-through
TenureTrack
TenureTrack
Boolean
BOOLEAN
optional An indication that the staff is on track for tenure. boolean true/false; optional Ed-Fi field source pass-through
Tenured
Tenured
Boolean
BOOLEAN
optional Indicator of whether the staff member is tenured. boolean true/false; optional Ed-Fi field source pass-through
Used By (1)
  • StaffEducationOrganizationAssignmentAssociation.StaffEducationOrganizationEmploymentAssociation (optional)

Canonical UDM association Association Class

StaffEducatorPreparationProgramAssociation #

/ed-fi/staffEducatorPreparationProgramAssociations

This association indicates the educator preparation program associated with a staff.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffEducatorPreparationProgramAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The staff associated with the educator preparation program. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducatorPreparationProgram
EducatorPreparationProgramReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The educator preparation program associated to the staff. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required The start date for the association of staff to this program. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The end date for the association of staff to this program. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Completer
Completer
Boolean
BOOLEAN
optional Indicator of whether the staff completed the educator preparation program. boolean true/false; optional Ed-Fi field source pass-through

Canonical UDM resource Class

StaffIdentificationCode #

/ed-fi/staffIdentificationCodes

This entity holds different identity codes for staff member.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffIdentificationCode
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the staff member. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StaffIdentificationSystem
StaffIdentificationSystemDescriptor
Reference
DescriptorProperty
Allowed values: StaffIdentificationSystemDescriptor (15 Ed-Fi seed values)
required
identity
ODS/API identity
A coding scheme that is used for identification and record-keeping purposes by schools, LEAs, SEAs, or other agencies refer to a staff member. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization representing the context of the staff member information. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IdentificationCode
IdentificationCode
String
VARCHAR(120)
required A unique number or alphanumeric code assigned to an individual by a school, LEA, SEA, or other agency. max length 120 characters; required Ed-Fi field source pass-through
AssigningOrganizationIdentificationCode
AssigningOrganizationIdentificationCode
String
VARCHAR(60)
optional The organization code or name assigning the IdentificationCode. max length 60 characters; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

StaffIdentificationSystem #

/ed-fi/descriptors/staffIdentificationSystemDescriptors

This descriptor defines the originating record system and code that is used for record-keeping purposes of the staff.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffIdentificationSystemDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for StaffIdentificationSystemDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Canadian SIN Canadian SIN Canadian SIN uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
District District District uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Drivers License Drivers License Drivers License uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Federal Federal uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health Record Health Record Health Record uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Medicaid Medicaid Medicaid uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Federal Other Federal Other Federal uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PIN PIN PIN uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Professional Certificate Professional Certificate Professional Certificate uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Selective Service Selective Service Selective Service uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SSN SSN SSN uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State State uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
US Visa US Visa US Visa uri://ed-fi.org/StaffIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StaffIdentificationCode.StaffIdentificationSystem (required)

Canonical UDM resource Class

StaffLeave #

/ed-fi/staffLeaves

This entity represents the recording of the dates of staff leave (e.g., sick leave, personal time, vacation).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffLeave
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
The begin date of the staff leave. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The end date of the staff leave. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
StaffLeaveEventCategory
StaffLeaveEventCategoryDescriptor
Reference
DescriptorProperty
Allowed values: StaffLeaveEventCategoryDescriptor (18 Ed-Fi seed values)
required
identity
ODS/API identity
The code describing the type of leave taken. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Reason
Reason
String
VARCHAR(40)
optional Expanded reason for the staff leave. max length 40 characters; optional Ed-Fi field source pass-through
SubstituteAssigned
SubstituteAssigned
Boolean
BOOLEAN
optional Indicator of whether a substitute was assigned during the period of staff leave. boolean true/false; optional Ed-Fi field source pass-through
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The staff associated with this leave event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Descriptor catalog Descriptor

StaffLeaveEventCategory #

/ed-fi/descriptors/staffLeaveEventCategoryDescriptors

A code describing the type of the leave event.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffLeaveEventCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (18 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for StaffLeaveEventCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Administrative Administrative Administrative uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Annual leave Annual leave Annual leave uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bereavement Bereavement Bereavement uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Compensatory leave time Compensatory leave time Compensatory leave time uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Family and medical leave Family and medical leave Family and medical leave uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Flex time Flex time Flex time uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Government-requested Government-requested Government-requested uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Jury duty Jury duty Jury duty uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Military leave Military leave Military leave uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Personal Personal Personal uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Professional development Professional development Professional development uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Release time Release time Release time uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sabbatical leave Sabbatical leave Sabbatical leave uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sick leave Sick leave Sick leave uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suspension Suspension Suspension uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Vacation Vacation Vacation uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Work compensation Work compensation Work compensation uri://ed-fi.org/StaffLeaveEventCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StaffLeave.StaffLeaveEventCategory (required)

Canonical UDM association Association Class

StaffProgramAssociation #

/ed-fi/staffProgramAssociations

This association indicates the staff associated with a program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffProgramAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The staff associated with the program. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Program
ProgramReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program associated to the staff. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
Start date for the association of staff to this program. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional End date for the association of staff to this program. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
StudentRecordAccess
StudentRecordAccess
Boolean
BOOLEAN
optional Indicator of whether the staff has access to the student records of the program per district interpretation of FERPA and other privacy laws, regulations, and policies. boolean true/false; optional Ed-Fi field source pass-through

Canonical UDM association Association Class

StaffSchoolAssociation #

/ed-fi/staffSchoolAssociations

This association indicates the school(s) to which a staff member provides instructional services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Staff, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffSchoolAssociation edfi.StaffSchoolAssociationAcademicSubject edfi.StaffSchoolAssociationGradeLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The staff member providing services to the school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The school where the staff member provides services. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
optional Identifier for a school year. object reference; optional Ed-Fi field source pass-through
ProgramAssignment
ProgramAssignmentDescriptor
Reference
DescriptorProperty
Allowed values: ProgramAssignmentDescriptor (6 Ed-Fi seed values)
required
identity
ODS/API identity
The name of the program for which the individual is assigned. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GradeLevel
GradeLevels
Reference
DescriptorProperty
Allowed values: governed GradeLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection The grade levels the individual is eligible to teach. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AcademicSubject
AcademicSubjects
Reference
DescriptorProperty
Allowed values: governed AcademicSubjectsDescriptor values; no matching handbook descriptor entry found.
optional collection The academic subjects the individual is eligible to teach. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Calendar
CalendarReference
Reference
DomainEntityProperty
optional Reference to the calendar associated with the staff school association. object reference; optional Ed-Fi field source pass-through

Canonical UDM association Association Class

StaffSectionAssociation #

/ed-fi/staffSectionAssociations

This association indicates the class sections to which a staff member is assigned.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education, Student Cohort, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffSectionAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The staff member assigned to the section. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Section
SectionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The section the staff member is assigned to. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ClassroomPosition
ClassroomPositionDescriptor
Reference
DescriptorProperty
Allowed values: ClassroomPositionDescriptor (4 Ed-Fi seed values)
required The type of position the staff member holds in the specific class/section. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
Month, day, and year of a teacher's assignment to the section. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional Month, day, and year of the last day of a staff member's assignment to the section. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
HighlyQualifiedTeacher
HighlyQualifiedTeacher
Boolean
BOOLEAN
optional An indication of whether a teacher is classified as highly qualified for his/her assignment according to state definition. This attribute indicates the teacher is highly qualified for this section being taught. boolean true/false; optional Ed-Fi field source pass-through
TeacherStudentDataLinkExclusion
TeacherStudentDataLinkExclusion
Boolean
BOOLEAN
optional Indicates that the entire section is excluded from calculation of value-added or growth attribution calculations used for a particular teacher evaluation. boolean true/false; optional Ed-Fi field source pass-through
PercentageContribution
PercentageContribution
Number
DECIMAL(5, 4)
optional Indicates the percentage of the total scheduled course time, academic standards, and/or learning activities delivered in this section by this staff member. A teacher of record designation may be based solely or partially on this contribution percentage. numeric precision 5, scale 4; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

StaffToCandidateRelationship #

/ed-fi/descriptors/staffToCandidateRelationshipDescriptors

Defines the staff relationship to the educator candidate.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program
Source
UDM Handbook entry
Physical SQL snippets
edfi.StaffToCandidateRelationshipDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for StaffToCandidateRelationshipDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Coordinating Teacher Coordinating Teacher Coordinating Teacher uri://ed-fi.org/StaffToCandidateRelationshipDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mentor Mentor Mentor uri://ed-fi.org/StaffToCandidateRelationshipDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Supervising Principal Supervising Principal Supervising Principal uri://ed-fi.org/StaffToCandidateRelationshipDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • CandidateRelationshipToStaffAssociation.StaffToCandidateRelationship (optional)

UDM primitive/simple type Number

StandardError #

dictionary-only type

The standard error for a performance evaluation metric.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 6
  • decimal places: 3
Used By (1)
  • QuantitativeMeasureScore.StandardError (optional)

UDM primitive/simple type Time

StartTime #

dictionary-only type

An indication of the time of day the meeting time begins.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • MeetingTime.StartTime (identity)

UDM primitive/simple type Time

StartTime #

dictionary-only type

An indication of the time of day the bell schedule begins.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • BellSchedule.StartTime (optional)

Descriptor catalog Descriptor

StateAbbreviation #

/ed-fi/descriptors/stateAbbreviationDescriptors

The abbreviation for the state (within the United States) or outlying area in which an address is located.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Bell Schedule, Credential, Discipline, Education Organization, Educator Preparation Program, Enrollment, Finance, Graduation, Intervention, Recruiting and Staffing, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Student Cohort, Student Health, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.StateAbbreviationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (62 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for StateAbbreviationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
AA AA Armed Forces Americas uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AE AE Armed Forces Europe, Middle East, Canada, Africa uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AK AK Alaska uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AL AL Alabama uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AP AP Armed Forces Pacific uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AR AR Arkansas uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AS AS American Samoa uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
AZ AZ Arizona uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CA CA California uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CO CO Colorado uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
CT CT Connecticut uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DC DC District of Columbia uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DE DE Delaware uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FL FL Florida uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
FM FM Federated States of Micronesia uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GA GA Georgia uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
GU GU Guam uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
HI HI Hawaii uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IA IA Iowa uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ID ID Idaho uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IL IL Illinois uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
IN IN Indiana uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KS KS Kansas uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
KY KY Kentucky uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
LA LA Louisiana uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MA MA Massachusetts uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MD MD Maryland uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ME ME Maine uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MH MH Marshall Islands uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MI MI Michigan uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MN MN Minnesota uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MO MO Missouri uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MP MP Northern Mariana Islands uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MS MS Mississippi uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MT MT Montana uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NC NC North Carolina uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
ND ND North Dakota uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NE NE Nebraska uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NH NH New Hampshire uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NJ NJ New Jersey uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NM NM New Mexico uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NV NV Nevada uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
NY NY New York uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
OH OH Ohio uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
OK OK Oklahoma uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
OR OR Oregon uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PA PA Pennsylvania uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PR PR Puerto Rico uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
PW PW Palau uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
RI RI Rhode Island uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SC SC South Carolina uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SD SD South Dakota uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TN TN Tennessee uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
TX TX Texas uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
UT UT Utah uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VA VA Virginia uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VI VI United States Virgin Islands uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
VT VT Vermont uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
WA WA Washington uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
WI WI Wisconsin uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
WV WV West Virginia uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
WY WY Wyoming uri://ed-fi.org/StateAbbreviationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (4)
  • Address.StateAbbreviation (required)
  • Credential.StateOfIssueStateAbbreviation (required)
  • InterventionStudy.StateAbbreviation (optional collection)
  • BirthData.BirthStateAbbreviation (optional)

Canonical UDM specialization Subclass

StateEducationAgency #

/ed-fi/stateEducationAgencies

This entity represents the agency of the state charged with the primary responsibility for coordinating and supervising public instruction, including the setting of standards for elementary and secondary instructional programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Education Organization, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.StateEducationAgency edfi.StateEducationAgencyAccountability edfi.StateEducationAgencyFederalFunds
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StateEducationAgencyId
StateEducationAgencyId
Number
INT
required
identity
ODS/API identity
The identifier assigned to a state education agency. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StateEducationAgencyAccountability
Accountabilities
Reference
CommonProperty
optional collection This entity maintains information about federal reporting and accountability for state education agencies. object reference; optional collection Ed-Fi field source pass-through
StateEducationAgencyFederalFunds
FederalFunds
Reference
CommonProperty
optional collection Contains the information about the reception and use of federal funds for reporting purposes. object reference; optional collection Ed-Fi field source pass-through
FederalLocaleCode
FederalLocaleCodeDescriptor
Reference
DescriptorProperty
Allowed values: FederalLocaleCodeDescriptor (4 Ed-Fi seed values)
optional The federal locale code associated with an education organization. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (2)
  • EducationServiceCenter.StateEducationAgency (optional)
  • LocalEducationAgency.StateEducationAgency (optional)

UDM common/composite Composite Part

StateEducationAgencyAccountability #

dictionary-only type

This entity maintains information about federal reporting and accountability for StateEducationAgency(s).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The school year for which the accountability is reported. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CTEGraduationRateInclusion
CTEGraduationRateInclusion
Boolean
BOOLEAN
optional An indication of whether CTE concentrators are included in the state's computation of its graduation rate. boolean true/false; optional Ed-Fi field source pass-through
Used By (1)
  • StateEducationAgency.StateEducationAgencyAccountability (optional collection)

UDM common/composite Composite Part

StateEducationAgencyFederalFunds #

dictionary-only type

Contains the information about the reception and use of federal funds for reporting purposes.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
FiscalYear
FiscalYear
Number
INT
required
identity
ODS/API identity
The fiscal year for which the federal funds are received. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
FederalProgramsFundingAllocation
FederalProgramsFundingAllocation
Number
MONEY
optional The amount of federal dollars distributed to Local Education Agencies (LEAs), retained by the State Education Agency (SEA) for program administration or other approved state-level activities (including unallocated, transferred to another state agency, or distributed to entities other than LEAs). optional Ed-Fi field source pass-through
Used By (1)
  • StateEducationAgency.StateEducationAgencyFederalFunds (optional collection)

UDM primitive/simple type Number

StateEducationAgencyId #

dictionary-only type

The identifier assigned to a state education agency. It must be distinct from any other identifier assigned to educational organizations, such as a LocalEducationAgencyId, to prevent duplication.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type String

Statement #

dictionary-only type

A statement or reference describing the evidence that the learner met the criteria for attainment of the achievement.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 150
Used By (1)
  • Achievement.EvidenceStatement (optional)

UDM primitive/simple type Date

StateResidencyDate #

dictionary-only type

The verified state residency for the student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentMigrantEducationProgramAssociation.StateResidencyDate (optional)

UDM primitive/simple type Date

StatusBeginDate #

dictionary-only type

The date the student's program participation status began. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ProgramParticipationStatus.StatusBeginDate (identity)

UDM primitive/simple type Date

StatusEndDate #

dictionary-only type

The date the student's program participation status ended. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • ProgramParticipationStatus.StatusEndDate (optional)

UDM primitive/simple type String

StreetNumberName #

dictionary-only type

The street number and street name or post office box number of an address.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 150
Used By (1)
  • Address.StreetNumberName (required)

Canonical UDM resource Class

Student #

/ed-fi/students

This entity represents an individual for whom instruction, services, and/or care are provided in an early childhood, elementary, or secondary educational program under the jurisdiction of a school, education agency or other institution or program. A student is a person who has been enrolled in a school or other educational institution.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Assessment, Discipline, Enrollment, Graduation, Intervention, School Calendar, Special Education, Student Academic Record, Student Attendance, Student Cohort, Student Health, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.Student edfi.StudentOtherName edfi.StudentPersonalIdentificationDocument
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentUniqueId
StudentUniqueId
String
VARCHAR(32)
required
identity
ODS/API identity
A unique alphanumeric code assigned to a student. max length 32 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Name
Name
Reference
InlineCommonProperty
required Full legal name of the person. object reference; required Ed-Fi field source pass-through
OtherName
OtherNames
Reference
CommonProperty
optional collection Other names (e.g., alias, nickname, previous legal name) associated with a person. object reference; optional collection Ed-Fi field source pass-through
BirthData
BirthData
Reference
InlineCommonProperty
required The set of elements that capture relevant data regarding a person's birth, including birth date and place of birth. object reference; required Ed-Fi field source pass-through
Person
PersonReference
Reference
DomainEntityProperty
optional Relates the student to a generic person. object reference; optional Ed-Fi field source pass-through
Used By (36, showing 30)
  • GeneralStudentProgramAssociation.Student (required)
  • StudentCohortAssociation.Student (required)
  • StudentContactAssociation.Student (required)
  • StudentDisciplineIncidentBehaviorAssociation.Student (required)
  • StudentDisciplineIncidentNonOffenderAssociation.Student (required)
  • StudentEducationOrganizationAssociation.Student (required)
  • StudentEducationOrganizationResponsibilityAssociation.Student (required)
  • StudentInterventionAssociation.Student (required)
  • StudentSchoolAssociation.Student (required)
  • StudentSectionAssociation.Student (required)
  • StudentSpecialEducationProgramEligibilityAssociation.Student (required)
  • SurveyResponderChoice.Student (required)
  • DisciplineAction.Student (required)
  • FieldworkExperience.Student (required)
  • FinancialAid.Student (required)
  • IDEAEvent.Student (required)
  • PostSecondaryEvent.Student (required)
  • ReportCard.Student (required)
  • RestraintEvent.Student (required)
  • StudentAcademicRecord.Student (required)
  • StudentAssessment.Student (required)
  • StudentCompetencyObjective.Student (required)
  • StudentDemographic.Student (required)
  • StudentDirectory.Student (required)
  • StudentEducationOrganizationAssessmentAccommodation.Student (required)
  • StudentGradebookEntry.Student (required)
  • StudentHealth.Student (required)
  • StudentIdentificationCode.Student (required)
  • StudentIEP.Student (required)
  • StudentInterventionAttendanceEvent.Student (required)

Canonical UDM resource Class

StudentAcademicRecord #

/ed-fi/studentAcademicRecords

This educational entity represents the cumulative record of academic achievement for a student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Graduation, Student Academic Record, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentAcademicRecord edfi.StudentAcademicRecordAcademicHonor edfi.StudentAcademicRecordClassRanking edfi.StudentAcademicRecordDiploma edfi.StudentAcademicRecordGradePointAverage edfi.StudentAcademicRecordRecognition edfi.StudentAcademicRecordReportCard
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (15)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Identifies the student who is associated with the student academic record. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization that granted the credits or other achievements on the student academic record, generally a school district. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required
identity
ODS/API identity
The identifier for the school year. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Term
TermDescriptor
Reference
DescriptorProperty
Allowed values: TermDescriptor (16 Ed-Fi seed values)
required
identity
ODS/API identity
The term for the session during the school year. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AcademicHonor
AcademicHonors
Reference
CommonProperty
optional collection Academic distinctions earned by or awarded to the student. object reference; optional collection Ed-Fi field source pass-through
ClassRanking
ClassRanking
Reference
CommonProperty
optional The academic rank information of a student in relation to his or her graduating class. object reference; optional Ed-Fi field source pass-through
CumulativeAttemptedCredits
CumulativeAttemptedCredits
Reference
InlineCommonProperty
optional The total number of credits a student has earned plus the total number of credits the student has attempted but not earned from distinct courses. This includes credits attempted and earned from all schools the student has been enrolled. object reference; optional Ed-Fi field source pass-through
CumulativeEarnedCredits
CumulativeEarnedCredits
Reference
InlineCommonProperty
optional The cumulative number of credits an individual earns by completing courses or examinations during his or her enrollment in the current school as well as those credits transferred from schools in which the individual had been previously enrolled. object reference; optional Ed-Fi field source pass-through
SessionAttemptedCredits
SessionAttemptedCredits
Reference
InlineCommonProperty
optional The number of credits an individual attempted to earn in this session. object reference; optional Ed-Fi field source pass-through
SessionEarnedCredits
SessionEarnedCredits
Reference
InlineCommonProperty
optional The number of credits an individual earned in this session. object reference; optional Ed-Fi field source pass-through
Diploma
Diplomas
Reference
CommonProperty
optional collection Diploma(s) earned by the student. object reference; optional collection Ed-Fi field source pass-through
GradePointAverage
GradePointAverages
Reference
CommonProperty
optional collection The grade point average for an individual computed as the grade points earned divided by the number of credits attempted. object reference; optional collection Ed-Fi field source pass-through
ProjectedGraduationDate
ProjectedGraduationDate
Date
DATE
optional The month and year the student is projected to graduate. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Recognition
Recognitions
Reference
CommonProperty
optional collection Recognitions given to the student for accomplishments in a co-curricular or extracurricular activity. object reference; optional collection Ed-Fi field source pass-through
ReportCard
ReportCards
Reference
DomainEntityProperty
optional collection Report cards for the student. object reference; optional collection Ed-Fi field source pass-through
Used By (2)
  • CourseTranscript.StudentAcademicRecord (required)
  • Credential.StudentAcademicRecord (optional collection)

Canonical UDM resource Class

StudentAssessment #

/ed-fi/studentAssessments

This entity represents the analysis or scoring of a student's response on an assessment. The analysis results in a value that represents a student's performance on a set of items on a test.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentAssessment edfi.StudentAssessmentAccommodation edfi.StudentAssessmentIndicator edfi.StudentAssessmentItem edfi.StudentAssessmentPerformanceLevel edfi.StudentAssessmentPeriod edfi.StudentAssessmentScoreResult edfi.StudentAssessmentStudentObjectiveAssessment edfi.StudentAssessmentStudentObjectiveAssessmentPerformanceLevel edfi.StudentAssessmentStudentObjectiveAssessmentScoreResult
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (26)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentAssessmentIdentifier
StudentAssessmentIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
A unique number or alphanumeric code assigned to an assessment administered to a student. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AdministrationDate
AdministrationDate
DateTime
TIMESTAMP
optional The date and time an assessment was completed by the student. The use of ISO-8601 formats with a timezone designator (UTC or time offset) is recommended in order to prevent ambiguity due to time zones. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
AdministrationEndDate
AdministrationEndDate
DateTime
TIMESTAMP
optional The date and time an assessment administration ended. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
SerialNumber
SerialNumber
String
VARCHAR(120)
optional The unique number for the assessment form or answer document. max length 120 characters; optional Ed-Fi field source pass-through
AdministrationLanguage
AdministrationLanguageDescriptor
Reference
DescriptorProperty
Allowed values: governed AdministrationLanguageDescriptor values; no matching handbook descriptor entry found.
optional The language in which an assessment is written and/or administered. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AdministrationEnvironment
AdministrationEnvironmentDescriptor
Reference
DescriptorProperty
Allowed values: AdministrationEnvironmentDescriptor (4 Ed-Fi seed values)
optional The environment in which the test was administered. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Accommodation
Accommodations
Reference
DescriptorProperty
Allowed values: governed AccommodationsDescriptor values; no matching handbook descriptor entry found.
optional collection The specific type of special variation used in how an examination is presented, how it is administered, or how the test taker is allowed to respond. This generally refers to changes that do not substantially alter what the examination measures. The proper use of accommodations does not substantially change academic level or performance criteria. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
RetestIndicator
RetestIndicatorDescriptor
Reference
DescriptorProperty
Allowed values: RetestIndicatorDescriptor (4 Ed-Fi seed values)
optional Indicator if the test was a retake. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ReasonNotTested
ReasonNotTestedDescriptor
Reference
DescriptorProperty
Allowed values: ReasonNotTestedDescriptor (15 Ed-Fi seed values)
optional The primary reason student is not tested. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ScoreResult
ScoreResults
Reference
CommonProperty
optional collection A meaningful score or statistical expression of the performance of an individual. The results can be expressed as a number, percentile, range, level, etc. object reference; optional collection Ed-Fi field source pass-through
AssessedGradeLevel
AssessedGradeLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed AssessedGradeLevelDescriptor values; no matching handbook descriptor entry found.
optional The grade level for which the assessment form was evaluated for the student on this administration. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
WhenAssessedGradeLevel
WhenAssessedGradeLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed WhenAssessedGradeLevelDescriptor values; no matching handbook descriptor entry found.
optional The grade level of a student when assessed. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PerformanceLevel
PerformanceLevels
Reference
CommonProperty
optional collection The performance level(s) achieved for the student assessment. object reference; optional collection Ed-Fi field source pass-through
EventCircumstance
EventCircumstanceDescriptor
Reference
DescriptorProperty
Allowed values: EventCircumstanceDescriptor (32 Ed-Fi seed values)
optional An unusual event occurred during the administration of the assessment. This could include fire alarm, student became ill, etc. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EventDescription
EventDescription
String
VARCHAR(1024)
optional Describes special events that occur before during or after the assessment session that may impact use of results. max length 1024 characters; optional Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the student associated with the assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Assessment
AssessmentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the assessment taken by the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StudentAssessmentItem
Items
Reference
CommonProperty
optional collection The student's response to an assessment item and the item-level scores such as correct, incorrect, or met standard. object reference; optional collection Ed-Fi field source pass-through
StudentObjectiveAssessment
StudentObjectiveAssessments
Reference
CommonProperty
optional collection The student's score and/or performance levels earned for an objective assessment. object reference; optional collection Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required The school year for which the assessment was administered to a student. Among other uses, handles cases in which a student takes a prior-year exam in a subsequent school year during an exam re-test. object reference; required Ed-Fi field source pass-through
PlatformType
PlatformTypeDescriptor
Reference
DescriptorProperty
Allowed values: PlatformTypeDescriptor (2 Ed-Fi seed values)
optional The platform with which the assessment was delivered to the student during the assessment session. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssessmentPeriod
Period
Reference
CommonProperty
optional The period or window in which an assessment is supposed to be administered. object reference; optional Ed-Fi field source pass-through
AssessedMinutes
AssessedMinutes
Number
INT
optional Reported time student was assessed in minutes. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
ReportedSchool
ReportedSchoolReference
Reference
DomainEntityProperty
optional The school reference reported as the school the enrollment at the time of the assessment using the assigned SchoolId. object reference; optional Ed-Fi field source pass-through
ReportedSchoolIdentifier
ReportedSchoolIdentifier
String
VARCHAR(60)
optional A reported school identifier for the school the enrollment at the time of the assessment used when the assigned SchoolId is not known by the assessment vendor. max length 60 characters; optional Ed-Fi field source pass-through
StudentAssessmentIndicator
Indicators
Reference
CommonProperty
optional collection An indicator or metric for non-score attributes being sent for the current Assessment, for example for at-risk name. object reference; optional collection Ed-Fi field source pass-through
Used By (2)
  • StudentAssessmentEducationOrganizationAssociation.StudentAssessment (required)
  • CertificationExamResult.CertificationExamStudentAssessment (optional)

Canonical UDM association Association Class

StudentAssessmentEducationOrganizationAssociation #

/ed-fi/studentAssessmentEducationOrganizationAssociations

The association of individual StudentAssessments with EducationOrganizations indicating administration, enrollment, or attribution.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentAssessmentEducationOrganizationAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentAssessment
StudentAssessmentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student assessment associated with the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization associated with the student assessment results. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganizationAssociationType
EducationOrganizationAssociationTypeDescriptor
Reference
DescriptorProperty
Allowed values: EducationOrganizationAssociationTypeDescriptor (3 Ed-Fi seed values)
required
identity
ODS/API identity
The type of association being represented. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
optional The school year associated with the association.. object reference; optional Ed-Fi field source pass-through

UDM common/composite Composite Part

StudentAssessmentIndicator #

dictionary-only type

This entity represents an indicator or metric for non-score attributes being sent current Assessment, for example for at-risk name.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Indicator
Indicator
String
VARCHAR(60)
required
identity
ODS/API identity
The value of the indicator or metric. max length 60 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IndicatorName
IndicatorName
String
VARCHAR(200)
required
identity
ODS/API identity
The name of the indicator or metric. max length 200 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IndicatorGroup
IndicatorGroup
String
VARCHAR(200)
optional The name for a group of indicators. max length 200 characters; optional Ed-Fi field source pass-through
Used By (1)
  • StudentAssessment.StudentAssessmentIndicator (optional collection)

UDM common/composite Composite Part

StudentAssessmentItem #

dictionary-only type

This entity represents the student's response to an assessment item and the item-level scores such as correct, incorrect, or met standard.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AssessmentResponse
AssessmentResponse
String
VARCHAR(255)
optional A student's response to a stimulus on a test. max length 255 characters; optional Ed-Fi field source pass-through
DescriptiveFeedback
DescriptiveFeedback
String
VARCHAR(1024)
optional The formative descriptive feedback that was given to a student in response to the results from a scored/evaluated assessment item. max length 1024 characters; optional Ed-Fi field source pass-through
ResponseIndicator
ResponseIndicatorDescriptor
Reference
DescriptorProperty
Allowed values: ResponseIndicatorDescriptor (4 Ed-Fi seed values)
optional Indicator of the response. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssessmentItemResult
AssessmentItemResultDescriptor
Reference
DescriptorProperty
Allowed values: AssessmentItemResultDescriptor (6 Ed-Fi seed values)
required The analyzed result of a student's response to an assessment item. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
RawScoreResult
RawScoreResult
Number
DECIMAL(15, 5)
optional A meaningful raw score of the performance of a student on an assessment item. numeric precision 15, scale 5; optional Ed-Fi field source pass-through
TimeAssessed
TimeAssessed
Number
VARCHAR(30)
optional The overall time that a student actually spent on the assessment item expressed in minutes. max length 30 characters; optional Ed-Fi field source pass-through
AssessmentItem
AssessmentItemReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The assessment item responded to by the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ItemNumber
ItemNumber
Number
INT
optional The test question number for this student's test item. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (1)
  • StudentAssessment.StudentAssessmentItem (optional collection)

Canonical UDM resource Class

StudentAssessmentRegistration #

/ed-fi/studentAssessmentRegistrations

Identifies an assessment registration that a student is expected to participate in including the testing organization, reporting organization and assessment delivery details.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentAssessmentRegistration edfi.StudentAssessmentRegistrationAssessmentAccommodation edfi.StudentAssessmentRegistrationAssessmentCustomization
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AssessmentAdministration
AssessmentAdministrationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the expected administration of an assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StudentDemographic
StudentDemographicReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The demographic information associated to a student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StudentSchoolAssociation
StudentSchoolAssociationReference
Reference
AssociationProperty
required A reference to the attending student school association that is active during the period of administration. object reference; required Ed-Fi field source pass-through
AssessmentAccommodation
AssessmentAccommodations
Reference
DescriptorProperty
Allowed values: governed AssessmentAccommodationsDescriptor values; no matching handbook descriptor entry found.
optional collection The special variation(s) to be used in how assessments (in general) are presented, how it is administered, or how the test taker is allowed to respond. This generally refers to changes that do not substantially alter what the examination measures. The proper use of accommodations does not substantially change academic level or performance criteria. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssessmentCustomization
AssessmentCustomizations
Reference
CommonProperty
optional collection Key/value pairs which may be used to facilitate customization of an assessment or to support vendor reporting/analysis. object reference; optional collection Ed-Fi field source pass-through
ReportingEducationOrganization
ReportingEducationOrganizationReference
Reference
DomainEntityProperty
optional A reference to the education organization which should receive the results of the assessment. object reference; optional Ed-Fi field source pass-through
TestingEducationOrganization
TestingEducationOrganizationReference
Reference
DomainEntityProperty
optional A reference to the education organization expected to administer the assessment. object reference; optional Ed-Fi field source pass-through
AssessmentGradeLevel
AssessmentGradeLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed AssessmentGradeLevelDescriptor values; no matching handbook descriptor entry found.
optional The grade level or primary instructional level at which the student is to be assessed. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PlatformType
PlatformTypeDescriptor
Reference
DescriptorProperty
Allowed values: PlatformTypeDescriptor (2 Ed-Fi seed values)
optional The environment or format in which the assessment is expected to be administered. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ScheduledStudentEducationOrganizationAssessmentAccommodation
ScheduledStudentEducationOrganizationAssessmentAccommodationReference
Reference
DomainEntityProperty
optional A reference to the accommodations expected for administering the assessment. Student and education organization references must be consistent with StudentDemographics and StudentSchoolAssociation. object reference; optional Ed-Fi field source pass-through
Used By (1)
  • StudentAssessmentRegistrationBatteryPartAssociation.StudentAssessmentRegistration (required)

Canonical UDM association Association Class

StudentAssessmentRegistrationBatteryPartAssociation #

/ed-fi/studentAssessmentRegistrationBatteryPartAssociations

The association to the part(s) of the assessment battery that the student is to be tested for this administration of the assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentAssessmentRegistrationBatteryPartAssociation edfi.StudentAssessmentRegistrationBatteryPartAssociationAccommodation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentAssessmentRegistration
StudentAssessmentRegistrationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the registration that indicates the student is expected to participate in particular assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AssessmentBatteryPart
AssessmentBatteryPartReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the part of the assessment battery that the student is to be tested for this administration of the assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Accommodation
Accommodations
Reference
DescriptorProperty
Allowed values: governed AccommodationsDescriptor values; no matching handbook descriptor entry found.
optional collection The special variation(s) to be used for the specific part of the assessment battery on how is presented, how it is administered, or how the test taker is allowed to respond. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through

UDM common/composite Composite Part

StudentBusDetails #

dictionary-only type

Stores details associated with student-bus assignment within a transportation system.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
BusNumber
BusNumber
String
VARCHAR(36)
required
identity
ODS/API identity
The unique identifier assigned to the bus used for transporting the student. max length 36 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BusRoute
BusRouteDescriptor
Reference
DescriptorProperty
Allowed values: BusRouteDescriptor (0 Ed-Fi seed values)
required
identity
ODS/API identity
Identifies the specific route taken by a bus for student transportation. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TravelDayofWeek
TravelDayofWeeks
Reference
DescriptorProperty
Allowed values: governed TravelDayofWeeksDescriptor values; no matching handbook descriptor entry found.
optional collection Specifies the day(s) of the week on which student transportation occurs. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TravelDirection
TravelDirections
Reference
DescriptorProperty
Allowed values: governed TravelDirectionsDescriptor values; no matching handbook descriptor entry found.
optional collection Indicates the direction of travel for the student transportation route (e.g., to school, from school). object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Mileage
Mileage
Number
DECIMAL(5, 2)
optional The distance, typically measured in miles, that a student was transported along the route of the bus during a single trip. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
Used By (1)
  • StudentTransportation.StudentBusDetails (optional)

UDM common/composite Composite Part

StudentCharacteristic #

dictionary-only type

Reflects important characteristics of a student. If a student has a characteristic present, that characteristic is considered true or active for that student. If a characteristic is not present, no assumption is made as to the applicability of the characteristic, but local policy may dictate otherwise.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentCharacteristic
StudentCharacteristicDescriptor
Reference
DescriptorProperty
Allowed values: StudentCharacteristicDescriptor (14 Ed-Fi seed values)
required
identity
ODS/API identity
The characteristic designated for the student. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Period
Periods
Reference
CommonProperty
optional collection The time periods for which characteristic was effective. object reference; optional collection Ed-Fi field source pass-through
DesignatedBy
DesignatedBy
String
VARCHAR(60)
optional The person, organization, or department that designated the characteristic. max length 60 characters; optional Ed-Fi field source pass-through
Used By (1)
  • StudentDemographic.StudentCharacteristic (optional collection)

Descriptor catalog Descriptor

StudentCharacteristic #

/ed-fi/descriptors/studentCharacteristicDescriptors

This descriptor captures important characteristics of the student's environment or situation. Generally used for non-program-based student characteristics.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Enrollment, Recruiting and Staffing, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentCharacteristicDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (14 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for StudentCharacteristicDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Asylee Asylee Asylee uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Displaced Displaced Displaced uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Displaced Homemaker Displaced Homemaker Displaced Homemaker uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Economic Disadvantaged DEPRECATED: Economic Disadvantaged DEPRECATED: Economic Disadvantaged uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Foster Care Foster Care Foster Care uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Homeless Homeless Homeless uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Immigrant Immigrant Immigrant uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent in Military Parent in Military Parent in Military uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pregnant Pregnant Pregnant uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Refugee Refugee Refugee uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Runaway Runaway Runaway uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Single Parent Single Parent Single Parent uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unaccompanied Youth Unaccompanied Youth Unaccompanied Youth uri://ed-fi.org/StudentCharacteristicDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • ApplicantCharacteristic.StudentCharacteristic (required)
  • StudentCharacteristic.StudentCharacteristic (required)

Canonical UDM association Association Class

StudentCohortAssociation #

/ed-fi/studentCohortAssociations

This association represents the cohort(s) for which a student is designated.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention, Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentCohortAssociation edfi.StudentCohortAssociationSection
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student associated with the cohort. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Cohort
CohortReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the cohort associated with the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year on which the student was first identified as part of the cohort. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The month, day, and year on which the student was removed as part of the cohort. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Section
Sections
Reference
DomainEntityProperty
optional collection The cohort representing the subdivision of students within one or more sections. For example, a group of students may be given additional instruction and tracked as a cohort. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM resource Class

StudentCompetencyObjective #

/ed-fi/studentCompetencyObjectives

This entity represents the competency assessed or evaluated for the student against a specific competency objective.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentCompetencyObjective edfi.StudentCompetencyObjectiveGeneralStudentProgramAssociation edfi.StudentCompetencyObjectiveStudentSectionAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
CompetencyObjective
ObjectiveCompetencyObjectiveReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The competency objective evaluated for the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CompetencyLevel
CompetencyLevelDescriptor
Reference
DescriptorProperty
Allowed values: CompetencyLevelDescriptor (7 Ed-Fi seed values)
required The competency level assessed for the student for the referenced competency objective. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DiagnosticStatement
DiagnosticStatement
String
VARCHAR(1024)
optional A statement provided by the teacher that provides information in addition to the grade or assessment score. max length 1024 characters; optional Ed-Fi field source pass-through
GradingPeriod
GradingPeriodReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the competency objective to a grading period. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the student associated with the competency objective. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StudentCompetencyObjectiveSectionOrProgramChoice
StudentCompetencyObjectiveSectionOrProgramChoice
Reference
ChoiceProperty
optional Relates the student and the section or program with the competency objective. object reference; optional Ed-Fi field source pass-through
Used By (1)
  • ReportCard.StudentCompetencyObjective (optional collection)

UDM common/composite Composite Part

StudentCompetencyObjectiveSectionOrProgramChoice #

dictionary-only type

This choice type allows a student competency objective to be associated with either a section or a program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentSectionAssociation
StudentSectionAssociations
Reference
AssociationProperty
optional collection Relates the student and section associated with the competency objective. object reference; optional collection Ed-Fi field source pass-through
GeneralStudentProgramAssociation
GeneralStudentProgramAssociations
Reference
AssociationProperty
optional collection Relates the student and program associated with the competency objective. object reference; optional collection Ed-Fi field source pass-through
Used By (1)
  • StudentCompetencyObjective.StudentCompetencyObjectiveSectionOrProgramChoice (optional)

Canonical UDM association Association Class

StudentContactAssociation #

/ed-fi/studentContactAssociations

This association relates students to their parents, guardians, or caretakers.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentContactAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (9)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student associated with the contact. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Contact
ContactReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The contact associated with the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Relation
RelationDescriptor
Reference
DescriptorProperty
Allowed values: RelationDescriptor (50 Ed-Fi seed values)
optional The nature of an individual's relationship to a student, primarily used to capture family relationships. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryContactStatus
PrimaryContactStatus
Boolean
BOOLEAN
optional Indicator of whether the person is a primary contact for the student. boolean true/false; optional Ed-Fi field source pass-through
LivesWith
LivesWith
Boolean
BOOLEAN
optional Indicator of whether the student lives with the associated contact. boolean true/false; optional Ed-Fi field source pass-through
EmergencyContactStatus
EmergencyContactStatus
Boolean
BOOLEAN
optional Indicator of whether the person is a designated emergency contact for the student. boolean true/false; optional Ed-Fi field source pass-through
ContactPriority
ContactPriority
Number
INT
optional The numeric order of the preferred sequence or priority of contact. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
ContactRestrictions
ContactRestrictions
String
VARCHAR(250)
optional Restrictions for student and/or teacher contact with the individual (e.g., the student may not be picked up by the individual). max length 250 characters; optional Ed-Fi field source pass-through
LegalGuardian
LegalGuardian
Boolean
BOOLEAN
optional Indicator of whether the person is a legal guardian for the student. boolean true/false; optional Ed-Fi field source pass-through

Canonical UDM specialization Subclass

StudentCTEProgramAssociation #

/ed-fi/studentCTEProgramAssociations

This association represents the career and technical education (CTE) program that a student participates in. The association is a subclass of the GeneralStudentProgramAssociation specifically designed for CTE programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentCTEProgramAssociation edfi.StudentCTEProgramAssociationCTEProgramService
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
NonTraditionalGenderStatus
NonTraditionalGenderStatus
Boolean
BOOLEAN
optional Indicator that student is from a gender group that comprises less than 25% of the individuals employed in an occupation or field of work. boolean true/false; optional Ed-Fi field source pass-through
PrivateCTEProgram
PrivateCTEProgram
Boolean
BOOLEAN
optional Indicator that student participated in career and technical education at private agencies or institutions that are reported by the state for purposes of the Elementary and Secondary Education Act (ESEA). Students in private institutions which do not receive Perkins funding are reported only in the state file. boolean true/false; optional Ed-Fi field source pass-through
TechnicalSkillsAssessment
TechnicalSkillsAssessmentDescriptor
Reference
DescriptorProperty
Allowed values: TechnicalSkillsAssessmentDescriptor (3 Ed-Fi seed values)
optional Results of technical skills assessment aligned with industry recognized standards. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
CTEProgramService
CTEProgramServices
Reference
CommonProperty
optional collection Indicates the service(s) being provided to the student by the CTE program. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM resource Class deprecated source element

StudentDemographic #

/ed-fi/studentDemographics

The demographic information associated to a student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentDemographic edfi.StudentDemographicAncestryEthnicOrigin edfi.StudentDemographicDisability edfi.StudentDemographicDisabilityDesignation edfi.StudentDemographicIdentificationDocument edfi.StudentDemographicLanguage edfi.StudentDemographicLanguageUse edfi.StudentDemographicRace edfi.StudentDemographicStudentCharacteristic edfi.StudentDemographicStudentCharacteristicPeriod edfi.StudentDemographicTribalAffiliation edfi.StudentDemographicVisa
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (15)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference ot the education organization representing the context of the student information. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AncestryEthnicOrigin
AncestryEthnicOrigins
Reference
DescriptorProperty
Allowed values: governed AncestryEthnicOriginsDescriptor values; no matching handbook descriptor entry found.
optional collection The original peoples or cultures with which the individual identifies. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Citizenship
Citizenship
Reference
InlineCommonProperty
optional Contains information relative to U.S. citizenship status and its associated probationary documentation. object reference; optional Ed-Fi field source pass-through
Disability
Disabilities
Reference
CommonProperty
optional collection The disability condition(s) that best describes an individual's impairment, as determined by evaluation(s) conducted by the education organization. object reference; optional collection Ed-Fi field source pass-through
EconomicDisadvantage
EconomicDisadvantageDescriptor
Reference
DescriptorProperty
Allowed values: EconomicDisadvantageDescriptor (5 Ed-Fi seed values)
optional The indication of an inadequate financial condition of an individual's family, as determined by family income, number of family members/dependents, participation in public assistance programs, and/or other characteristics considered relevant by federal, state, and local policy. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GenderIdentity
GenderIdentity
String
VARCHAR(60)
optional The student's gender as last reported to the education organization. max length 60 characters; optional Ed-Fi field source pass-through
HispanicLatinoEthnicity
HispanicLatinoEthnicity
Boolean
BOOLEAN
optional An indication that the individual traces his or her origin or descent to Mexico, Puerto Rico, Cuba, Central, and South America, and other Spanish cultures, regardless of race, as last reported to the education organization. The term "Spanish origin", can be used in addition to "Hispanic or Latino". boolean true/false; optional; deprecated: see deprecation reason
Deprecated: This element is scheduled for removal by 2029. Users of this element are advised to use Race.
Ed-Fi field source pass-through
Language
Languages
Reference
CommonProperty
optional collection The language(s) the individual uses to communicate. It is strongly recommended that entries use only ISO 639-3 languages codes. object reference; optional collection Ed-Fi field source pass-through
LimitedEnglishProficiency
LimitedEnglishProficiencyDescriptor
Reference
DescriptorProperty
Allowed values: LimitedEnglishProficiencyDescriptor (4 Ed-Fi seed values)
optional An indication that the student has been identified as limited English proficient by the Language Proficiency Assessment Committee (LPAC), or English proficient. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Race
Races
Reference
DescriptorProperty
Allowed values: governed RacesDescriptor values; no matching handbook descriptor entry found.
optional collection The general racial category which most clearly reflects the individual's recognition of his or her community or with the which the individual most identifies as last reported to the education organization. The data model allows for multiple entries so that each individual can specify all appropriate races. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Sex
SexDescriptor
Reference
DescriptorProperty
Allowed values: SexDescriptor (4 Ed-Fi seed values)
optional The student's birth sex as reported to the education organization. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
StudentCharacteristic
StudentCharacteristics
Reference
CommonProperty
optional collection Reflects important characteristics of a student. If a student has a characteristic present, that characteristic is considered true or active for that student. If a characteristic is not present, no assumption is made as to the applicability of the characteristic, but local policy may dictate otherwise. object reference; optional collection Ed-Fi field source pass-through
SupporterMilitaryConnection
SupporterMilitaryConnectionDescriptor
Reference
DescriptorProperty
Allowed values: SupporterMilitaryConnectionDescriptor (6 Ed-Fi seed values)
optional Military connection of the person/people whom the student is a dependent of. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TribalAffiliation
TribalAffiliations
Reference
DescriptorProperty
Allowed values: governed TribalAffiliationsDescriptor values; no matching handbook descriptor entry found.
optional collection An American Indian tribe with which the student is affiliated as last reported to the education organization. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • StudentAssessmentRegistration.StudentDemographic (required)

Canonical UDM resource Class

StudentDirectory #

/ed-fi/studentDirectories

The contact information associated to a student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentDirectory edfi.StudentDirectoryAddress edfi.StudentDirectoryAddressCharacteristic edfi.StudentDirectoryAddressPeriod edfi.StudentDirectoryElectronicMail edfi.StudentDirectoryInternationalAddress edfi.StudentDirectoryTelephone
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization representing the context of the student information. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Address
Addresses
Reference
CommonProperty
optional collection The set of elements that describes an address, including the street address, city, state, and ZIP code. object reference; optional collection Ed-Fi field source pass-through
ElectronicMail
ElectronicMails
Reference
CommonProperty
optional collection The numbers, letters, and symbols used to identify an electronic mail (e-mail) user within the network to which the individual or organization belongs. object reference; optional collection Ed-Fi field source pass-through
InternationalAddress
InternationalAddresses
Reference
CommonProperty
optional collection The set of elements that describes an international address. object reference; optional collection Ed-Fi field source pass-through
Telephone
Telephones
Reference
CommonProperty
optional collection The 10-digit telephone number, including the area code, for the person. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM association Association Class

StudentDisciplineIncidentBehaviorAssociation #

/ed-fi/studentDisciplineIncidentBehaviorAssociations

This association describes the behavior of students involved in a discipline incident.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentDisciplineIncidentBehaviorAssociation edfi.StudentDisciplineIncidentBehaviorAssociationDisciplineIncidentParticipationCode edfi.StudentDisciplineIncidentBehaviorAssociationWeapon
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the student associated with the discipline incident. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DisciplineIncident
DisciplineIncidentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the discipline incident associated with the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Behavior
BehaviorDescriptor
Reference
DescriptorProperty
Allowed values: BehaviorDescriptor (4 Ed-Fi seed values)
required
identity
ODS/API identity
Describes behavior by category. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BehaviorDetailedDescription
BehaviorDetailedDescription
String
VARCHAR(1024)
optional Specifies a more granular level of detail of a behavior involved in the incident. max length 1024 characters; optional Ed-Fi field source pass-through
DisciplineIncidentParticipationCode
DisciplineIncidentParticipationCodes
Reference
DescriptorProperty
Allowed values: governed DisciplineIncidentParticipationCodesDescriptor values; no matching handbook descriptor entry found.
optional collection The role or type of participation of a student in a discipline incident. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Weapon
Weapons
Reference
DescriptorProperty
Allowed values: governed WeaponsDescriptor values; no matching handbook descriptor entry found.
optional collection Identifies the type(s) of weapon used by the student during a discipline incident. The Federal Gun-Free Schools Act requires states to report the number of students expelled for bringing firearms to school by type of firearm. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • DisciplineAction.StudentDisciplineIncidentBehaviorAssociation (required collection)

Canonical UDM association Association Class

StudentDisciplineIncidentNonOffenderAssociation #

/ed-fi/studentDisciplineIncidentNonOffenderAssociations

This association indicates those students who were involved and not perpetrators for a discipline incident.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentDisciplineIncidentNonOffenderAssociation edfi.StudentDisciplineIncidentNonOffenderAssociationDisciplineIncidentParticipationCode
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the student associated with the discipline incident. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DisciplineIncident
DisciplineIncidentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the discipline incident associated with the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
DisciplineIncidentParticipationCode
DisciplineIncidentParticipationCodes
Reference
DescriptorProperty
Allowed values: governed DisciplineIncidentParticipationCodesDescriptor values; no matching handbook descriptor entry found.
optional collection The role or type of participation of a student in a discipline incident. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through

Canonical UDM resource Class

StudentEducationOrganizationAssessmentAccommodation #

/ed-fi/studentEducationOrganizationAssessmentAccommodations

The accommodation(s) required or expected for administering assessments as determined by the education organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentEducationOrganizationAssessmentAccommodation edfi.StudentEducationOrganizationAssessmentAccommodationGeneralAccommodation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization determining the student's accommodations required for assessments. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the student associated with the assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
GeneralAccommodation
GeneralAccommodations
Reference
DescriptorProperty
Allowed values: governed GeneralAccommodationsDescriptor values; no matching handbook descriptor entry found.
optional collection The special variation(s) to be used in how assessments (in general) are presented, how it is administered, or how the test taker is allowed to respond. This generally refers to changes that do not substantially alter what the examination measures. The proper use of accommodations does not substantially change academic level or performance criteria. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • StudentAssessmentRegistration.ScheduledStudentEducationOrganizationAssessmentAccommodation (optional)

Canonical UDM association Association Class

StudentEducationOrganizationAssociation #

/ed-fi/studentEducationOrganizationAssociations

This association represents student information as reported in the context of the student's relationship to the education organization. Enrollment relationship semantics are covered by StudentSchoolAssociation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentEducationOrganizationAssociation edfi.StudentEducationOrganizationAssociationCohortYear edfi.StudentEducationOrganizationAssociationDisplacedStudent edfi.StudentEducationOrganizationAssociationStudentIndicator edfi.StudentEducationOrganizationAssociationStudentIndicatorPeriod
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (14)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization representing the context of the student information. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProfileThumbnail
ProfileThumbnail
String
VARCHAR(255)
optional Locator reference for the student photo. The specification for that reference is left to local definition. max length 255 characters; optional Ed-Fi field source pass-through
CohortYear
CohortYears
Reference
CommonProperty
optional collection The type and year of a cohort (e.g., 9th grade) the student belongs to as determined by the year that student entered a specific grade. object reference; optional collection Ed-Fi field source pass-through
StudentIndicator
StudentIndicators
Reference
CommonProperty
optional collection An indicator or metric computed for the student (e.g., at risk). object reference; optional collection Ed-Fi field source pass-through
LoginId
LoginId
String
VARCHAR(120)
optional The login ID for the user; used for security access control interface. max length 120 characters; optional Ed-Fi field source pass-through
PrimaryLearningDeviceAwayFromSchool
PrimaryLearningDeviceAwayFromSchoolDescriptor
Reference
DescriptorProperty
Allowed values: PrimaryLearningDeviceAwayFromSchoolDescriptor (7 Ed-Fi seed values)
optional The type of device the student uses most often to complete learning activities away from school. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryLearningDeviceAccess
PrimaryLearningDeviceAccessDescriptor
Reference
DescriptorProperty
Allowed values: PrimaryLearningDeviceAccessDescriptor (3 Ed-Fi seed values)
optional An indication of whether the primary learning device is shared or not shared with another individual. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryLearningDeviceProvider
PrimaryLearningDeviceProviderDescriptor
Reference
DescriptorProperty
Allowed values: PrimaryLearningDeviceProviderDescriptor (3 Ed-Fi seed values)
optional The provider of the primary learning device. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
InternetAccessInResidence
InternetAccessInResidence
Boolean
BOOLEAN
optional An indication of whether the student is able to access the internet in their primary place of residence. boolean true/false; optional Ed-Fi field source pass-through
BarrierToInternetAccessInResidence
BarrierToInternetAccessInResidenceDescriptor
Reference
DescriptorProperty
Allowed values: BarrierToInternetAccessInResidenceDescriptor (4 Ed-Fi seed values)
optional An indication of the barrier to having internet access in the studentโ€™s primary place of residence. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
InternetAccessTypeInResidence
InternetAccessTypeInResidenceDescriptor
Reference
DescriptorProperty
Allowed values: InternetAccessTypeInResidenceDescriptor (9 Ed-Fi seed values)
optional The primary type of internet service used in the studentโ€™s primary place of residence. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
InternetPerformanceInResidence
InternetPerformanceInResidenceDescriptor
Reference
DescriptorProperty
Allowed values: InternetPerformanceInResidenceDescriptor (3 Ed-Fi seed values)
optional An indication of whether the student can complete the full range of learning activities, including video streaming and assignment upload, without interruptions caused by poor internet performance in their primary place of residence. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DisplacedStudent
DisplacedStudents
Reference
CommonProperty
optional collection Information about student who was enrolled, or eligible for enrollment, but has temporarily or permanently enrolled in another school or district because of a crisis-related disruption in educational services. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM association Association Class

StudentEducationOrganizationResponsibilityAssociation #

/ed-fi/studentEducationOrganizationResponsibilityAssociations

This association indicates a relationship between a student and an education organization other than an enrollment relationship, and generally indicating some kind of responsibility of the education organization for the student. Enrollment relationship semantics are covered by StudentSchoolAssociation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentEducationOrganizationResponsibilityAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization that reports this record. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Responsibility
ResponsibilityDescriptor
Reference
DescriptorProperty
Allowed values: ResponsibilityDescriptor (8 Ed-Fi seed values)
required
identity
ODS/API identity
The type of responsibility that the responsible education organization has for the student (for example, accountability, residency, funding). object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
Month, day, and year of the start date of an education organization's responsibility for a student. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional Month, day, and year of the end date of an education organization's responsibility for a student. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ResponsibleEducationOrganization
ResponsibleEducationOrganizationReference
Reference
DomainEntityProperty
optional The organization for which the responsibility relationship to the student exists. object reference; optional Ed-Fi field source pass-through

UDM common/composite Composite Part

StudentEvaluationElement #

dictionary-only type

The student's rating and/or rating levels earned for a program evaluation element.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ProgramEvaluationElement
ProgramEvaluationElementReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program evaluation element associated with the student's results. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationElementNumericRating
EvaluationElementNumericRating
Number
DECIMAL(6, 3)
optional The numerical rating or score for the evaluation element. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
EvaluationElementRatingLevel
EvaluationElementRatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: EvaluationElementRatingLevelDescriptor (9 Ed-Fi seed values)
optional The rating level achieved based upon the rating or score for the evaluation element. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • StudentProgramEvaluation.StudentEvaluationElement (optional collection)

UDM common/composite Composite Part

StudentEvaluationObjective #

dictionary-only type

The student's rating and/or rating levels earned for a program evaluation objective.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ProgramEvaluationObjective
ProgramEvaluationObjectiveReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program evaluation objective associated with the student's results. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationObjectiveNumericRating
EvaluationObjectiveNumericRating
Number
DECIMAL(6, 3)
optional The numerical rating or score for the evaluation objective. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
EvaluationObjectiveRatingLevel
EvaluationObjectiveRatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed EvaluationObjectiveRatingLevelDescriptor values; no matching handbook descriptor entry found.
optional The rating level achieved based upon the rating or score for the evaluation objective. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • StudentProgramEvaluation.StudentEvaluationObjective (optional collection)

Canonical UDM resource Class

StudentGradebookEntry #

/ed-fi/studentGradebookEntries

This entity holds a student's grade or competency level for a gradebook entry.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentGradebookEntry
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (13)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
GradebookEntry
GradebookEntryReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The gradebook entry associated with the student grade or score. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student associated with the student gradebook entry. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CompetencyLevel
CompetencyLevelDescriptor
Reference
DescriptorProperty
Allowed values: CompetencyLevelDescriptor (7 Ed-Fi seed values)
optional The competency level assessed for the student for the referenced learning objective. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DateFulfilled
DateFulfilled
Date
DATE
optional The date an assignment was turned in or the date of an assessment. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
TimeFulfilled
TimeFulfilled
Time
TIME
optional The time an assignment was turned in on the date fulfilled. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
DiagnosticStatement
DiagnosticStatement
String
VARCHAR(1024)
optional A statement provided by the teacher that provides information in addition to the grade or assessment score. max length 1024 characters; optional Ed-Fi field source pass-through
PointsEarned
PointsEarned
Number
DECIMAL(9, 2)
optional The points earned for the submission. With extra credit, the points earned may exceed the max points. numeric precision 9, scale 2; optional Ed-Fi field source pass-through
LetterGradeEarned
LetterGradeEarned
String
VARCHAR(20)
optional A final or interim (grading period) indicator of student performance in a class as submitted by the instructor. max length 20 characters; optional Ed-Fi field source pass-through
NumericGradeEarned
NumericGradeEarned
Number
DECIMAL(9, 2)
optional A final or interim (grading period) indicator of student performance in a class as submitted by the instructor. numeric precision 9, scale 2; optional Ed-Fi field source pass-through
SubmissionStatus
SubmissionStatusDescriptor
Reference
DescriptorProperty
Allowed values: SubmissionStatusDescriptor (5 Ed-Fi seed values)
optional The status of the student's submission. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AssignmentLateStatus
AssignmentLateStatusDescriptor
Reference
DescriptorProperty
Allowed values: AssignmentLateStatusDescriptor (2 Ed-Fi seed values)
optional Status of whether the assignment was submitted after the due date and/or marked as. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
DateCompleted
DateCompleted
Date
DATE
optional The date that the assignment was completed. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
AssignmentPassed
AssignmentPassed
Boolean
BOOLEAN
optional Indication of whether the assignment was passed or not. boolean true/false; optional Ed-Fi field source pass-through

Canonical UDM resource Class

StudentHealth #

/ed-fi/studentHealths

This entity stores the student health records.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Health
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentHealth edfi.StudentHealthAdditionalImmunization edfi.StudentHealthAdditionalImmunizationDate edfi.StudentHealthRequiredImmunization edfi.StudentHealthRequiredImmunizationDate
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student whom the health information relates to. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The educational organization accountable for a student's health information. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AsOfDate
AsOfDate
Date
DATE
required Date of last update of the student's health record. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
RequiredImmunization
RequiredImmunizations
Reference
CommonProperty
optional collection A record of the immunizations satisfactorily received for those recommended to protect the student against vaccine-preventable diseases. object reference; optional collection Ed-Fi field source pass-through
AdditionalImmunization
AdditionalImmunizations
Reference
CommonProperty
optional collection A record of additional immunizations satisfactorily received and reported. object reference; optional collection Ed-Fi field source pass-through
NonMedicalImmunizationExemption
NonMedicalImmunizationExemptionDescriptor
Reference
DescriptorProperty
Allowed values: NonMedicalImmunizationExemptionDescriptor (3 Ed-Fi seed values)
optional The type of nonmedical exemption from vaccination claimed by the student's parent or guardian. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
NonMedicalImmunizationExemptionDate
NonMedicalImmunizationExemptionDate
Date
DATE
optional The year, month and day of the nonmedical exemption from vaccination claimed by the student's parent or guardian. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through

Canonical UDM specialization Subclass

StudentHomelessProgramAssociation #

/ed-fi/studentHomelessProgramAssociations

This association represents the McKinney-Vento Homeless Program program(s) that a student participates in or from which the student receives services. The association is a subclass of the GeneralStudentProgramAssociation specifically designed for homeless programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentHomelessProgramAssociation edfi.StudentHomelessProgramAssociationHomelessProgramService
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
HomelessPrimaryNighttimeResidence
HomelessPrimaryNighttimeResidenceDescriptor
Reference
DescriptorProperty
Allowed values: HomelessPrimaryNighttimeResidenceDescriptor (4 Ed-Fi seed values)
optional The primary nighttime residence of the student at the time the student is identified as homeless. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
AwaitingFosterCare
AwaitingFosterCare
Boolean
BOOLEAN
optional State defined definition for awaiting foster care. boolean true/false; optional Ed-Fi field source pass-through
HomelessUnaccompaniedYouth
HomelessUnaccompaniedYouth
Boolean
BOOLEAN
optional A homeless unaccompanied youth is a youth who is not in the physical custody of a parent or guardian and who fits the McKinney-Vento definition of homeless. Students must be both unaccompanied and homeless to be included as an unaccompanied homeless youth. boolean true/false; optional Ed-Fi field source pass-through
HomelessProgramService
HomelessProgramServices
Reference
CommonProperty
optional collection Indicates the service(s) being provided to the student by the homeless program. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM resource Class

StudentIdentificationCode #

/ed-fi/studentIdentificationCodes

This entity holds different identity codes for a student

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentIdentificationCode
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the student object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StudentIdentificationSystem
StudentIdentificationSystemDescriptor
Reference
DescriptorProperty
Allowed values: StudentIdentificationSystemDescriptor (12 Ed-Fi seed values)
required
identity
ODS/API identity
A coding scheme that is used for identification and record-keeping purposes by schools, LEAs, SEAs, or other agencies refer to a student. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the education organization representing the context of the student information. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IdentificationCode
IdentificationCode
String
VARCHAR(120)
required A unique number or alphanumeric code assigned to an individual by a school, LEA, SEA, or other agency. max length 120 characters; required Ed-Fi field source pass-through
AssigningOrganizationIdentificationCode
AssigningOrganizationIdentificationCode
String
VARCHAR(60)
optional the organization code or name assigning the IdentificationCode. max length 60 characters; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

StudentIdentificationSystem #

/ed-fi/descriptors/studentIdentificationSystemDescriptors

This descriptor defines the originating record system and code that is used for record-keeping purposes of the student.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentIdentificationSystemDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (12 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for StudentIdentificationSystemDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Canadian SIN Canadian SIN Canadian SIN uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
District District The student identification system for the student at the district level, generally managed by the district student information system, and the one that assigns the principal IDs used to join student data for district operations. uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Family Family Family uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federal Federal Federal uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Local DEPRECATED: Local DEPRECATED: Local uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
National Migrant National Migrant National Migrant uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School School School uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
SSN SSN SSN uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State State The state identification system for students that assigns a state ID to each student. uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
State Migrant State Migrant State Migrant uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Number Student Number A category of IDs often provided to enable students and others to remember and use in daily operations. If none exists, the Student Number system is generally equivalent to the District system. uri://ed-fi.org/StudentIdentificationSystemDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentIdentificationCode.StudentIdentificationSystem (required)

Canonical UDM resource Class

StudentIEP #

/ed-fi/studentIEPs

EARLY ACCESS: This entity represents an Individualized Education Program (IEP) for a student receiving special education services. The IEP is a legally required document that outlines a student's special education services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentIEP edfi.StudentIEPAccommodation edfi.StudentIEPDisability edfi.StudentIEPDisabilityDesignation edfi.StudentIEPIDEAEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (17)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The identifier assigned to the education organization (usually District/LEA) providing IEP Services. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
StudentIEPIdentifier
StudentIEPIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
A unique identifier assigned by the provider or source system of IEP services. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IEPFinalizedDate
IEPFinalizedDate
Date
DATE
required
identity
ODS/API identity
The date the IEP was finalized. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IEPBeginDate
IEPBeginDate
Date
DATE
required The projected date for the beginning of special education and related services. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
IEPEndDate
IEPEndDate
Date
DATE
required The effective end date of the IEP. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
IEPStatus
IEPStatusDescriptor
Reference
DescriptorProperty
Allowed values: IEPStatusDescriptor (2 Ed-Fi seed values)
required The current status of the IEP. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Accommodation
Accommodations
Reference
DescriptorProperty
Allowed values: governed AccommodationsDescriptor values; no matching handbook descriptor entry found.
optional collection The special variation(s) to be used in how various services (in general) are presented, how they are administered, or how the student is allowed to respond. This generally refers to changes that do not substantially alter the content that the service renders. The proper use of accommodations does not substantially change academic level or performance criteria. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Disability
Disabilities
Reference
CommonProperty
optional collection The disability condition(s) that best describes an individual's impairment, as determined by evaluation(s) conducted by the education organization. object reference; optional collection Ed-Fi field source pass-through
IDEAEvent
IDEAEvents
Reference
DomainEntityProperty
optional collection A reference to the IDEA events associated with the student's IEP. object reference; optional collection Ed-Fi field source pass-through
IEPAmendedDate
IEPAmendedDate
Date
DATE
optional The date when the IEP was last amended, if any. When amended, a new StudentIEP should be created with the amended data recorded. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
MedicallyFragile
MedicallyFragile
Boolean
BOOLEAN
optional Indicates whether the student receiving special education and related services is: 1) in the age range of birth to 22 years, and 2) has a serious, ongoing illness or a chronic condition that has lasted or is anticipated to last at least 12 or more months or has required at least one month of hospitalization, and that requires daily, ongoing medical treatments and monitoring by appropriately trained personnel which may include parents or other family members, and 3) requires the routine use of medical device or of assistive technology to compensate for the loss of usefulness of a body function needed to participate in activities of daily living, and 4) lives with ongoing threat to his or her continued well-being. Aligns with federal requirements. boolean true/false; optional Ed-Fi field source pass-through
MultiplyDisabled
MultiplyDisabled
Boolean
BOOLEAN
optional Indicates whether the student receiving special education and related services has been designated as multiply disabled by the admission, review, and dismissal committee as aligned with federal requirements. boolean true/false; optional Ed-Fi field source pass-through
ReasonExited
ReasonExitedDescriptor
Reference
DescriptorProperty
Allowed values: ReasonExitedDescriptor (13 Ed-Fi seed values)
optional The reason why a person stops receiving special education services. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SchoolHoursPerWeek
SchoolHoursPerWeek
Number
DECIMAL(5, 2)
optional Indicate the total number of hours of instructional time per week for the school that the student attends. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
SpecialEducationHoursPerWeek
SpecialEducationHoursPerWeek
Number
DECIMAL(5, 2)
optional Indicates the total number of hours of time per week specific to special education related services. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
SpecialEducationSetting
SpecialEducationSettingDescriptor
Reference
DescriptorProperty
Allowed values: SpecialEducationSettingDescriptor (16 Ed-Fi seed values)
optional The major instructional setting (more than 50 percent of a student's special education program). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (3)
  • StudentIEPGoal.StudentIEP (required)
  • StudentIEPServiceDelivery.StudentIEP (required)
  • StudentIEPServicePrescription.StudentIEP (required)

Canonical UDM resource Class

StudentIEPGoal #

/ed-fi/studentIEPGoals

EARLY ACCESS: A goal prescribed to a student as part of their Individual Education Program (IEP).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentIEPGoal edfi.StudentIEPGoalAchievementPeriod edfi.StudentIEPGoalIDEAEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentIEP
StudentIEPReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student IEP for which the goal is prescribed. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IEPGoalIdentifier
IEPGoalIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
A unique identifier assigned by the provider of IEP services. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IEPGoalDetails
IEPGoalDetails
String
VARCHAR(2048)
required Instructions or other details specific to the student and/or provider for achieving the stated goal. max length 2048 characters; required Ed-Fi field source pass-through
IEPGoalType
IEPGoalTypeDescriptor
Reference
DescriptorProperty
Allowed values: IEPGoalTypeDescriptor (4 Ed-Fi seed values)
required A focused goal prescribed as part of the IEP. Examples include Academic Goal, Behavioral Goal, Attendance Goal. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
GoalAchievementPeriod
AchievementPeriod
Reference
CommonProperty
optional The time period for which the goal is applicable or effective. object reference; optional Ed-Fi field source pass-through
IDEAEvent
IDEAEvents
Reference
DomainEntityProperty
optional collection A reference to one or more IDEA events associated with a student. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM resource Class

StudentIEPServiceDelivery #

/ed-fi/studentIEPServiceDeliveries

EARLY ACCESS: Services delivered to a student as prescribed by their Individual Education Program (IEP).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentIEPServiceDelivery edfi.StudentIEPServiceDeliveryIDEAEvent edfi.StudentIEPServiceDeliveryProvider
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentIEP
StudentIEPReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student and IEP associated with the delivery of prescribed services. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IEPServiceDeliveryIdentifier
IEPServiceDeliveryIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
A unique identifier assigned by the provider of IEP services for the delivery record. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ServiceDelivery
ServiceDeliveryDescriptor
Reference
DescriptorProperty
Allowed values: ServiceDeliveryDescriptor (45 Ed-Fi seed values)
required
identity
ODS/API identity
The type of services delivered to the student. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ServiceDeliveryDate
ServiceDeliveryDate
Date
DATE
required
identity
ODS/API identity
The date when prescribed services were delivered for a student. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
IDEAEvent
IDEAEvents
Reference
DomainEntityProperty
optional collection A reference to one or more student IDEA events. object reference; optional collection Ed-Fi field source pass-through
Provider
Providers
Reference
CommonProperty
optional collection The service provider that delivered the prescribed service to the student. object reference; optional collection Ed-Fi field source pass-through
StudentIEPServicePrescription
StudentIEPServicePrescriptionReference
Reference
DomainEntityProperty
optional Identifies the service prescribed for the student. object reference; optional Ed-Fi field source pass-through

Canonical UDM resource Class

StudentIEPServicePrescription #

/ed-fi/studentIEPServicePrescriptions

EARLY ACCESS: The service prescribed to a student as part of their Individual Education Program (IEP).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Special Education Data Model
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentIEPServicePrescription edfi.StudentIEPServicePrescriptionIDEAEvent edfi.StudentIEPServicePrescriptionStaff
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (12)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentIEP
StudentIEPReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The IEP for which the service is prescribed. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ServicePrescription
ServicePrescriptionDescriptor
Reference
DescriptorProperty
Allowed values: ServicePrescriptionDescriptor (42 Ed-Fi seed values)
required
identity
ODS/API identity
The type of service prescribed. Examples include: Auditory Specialist, Vocational Therapy. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ServicePrescriptionDate
ServicePrescriptionDate
Date
DATE
required
identity
ODS/API identity
The date the service was prescribed. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required The effective date when service is to begin. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
Duration
Duration
Number
INT
required The length of time for the prescribed service in minutes. integer range -2,147,483,648 to 2,147,483,647; required Ed-Fi field source pass-through
DurationInterval
DurationIntervalDescriptor
Reference
DescriptorProperty
Allowed values: DurationIntervalDescriptor (5 Ed-Fi seed values)
required How often the prescribed service is to be provided within the specified duration period. Examples include: Per Session, Per Week, Per Month. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional The effective date when the prescribed service ended. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Frequency
Frequency
Number
DECIMAL(9, 2)
required The number of times the prescribed service is to be provided within the specified duration period. numeric precision 9, scale 2; required Ed-Fi field source pass-through
FrequencyInterval
FrequencyIntervalDescriptor
Reference
DescriptorProperty
Allowed values: FrequencyIntervalDescriptor (6 Ed-Fi seed values)
required How often the frequency should repeat for the prescribed service. Examples include: Per Session, Weekly, Monthly. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
IDEAEvent
IDEAEvents
Reference
DomainEntityProperty
optional collection A reference to one or more IDEA events associated with a student. object reference; optional collection Ed-Fi field source pass-through
ServiceLocationType
ServiceLocationTypeDescriptor
Reference
DescriptorProperty
Allowed values: ServiceLocationTypeDescriptor (24 Ed-Fi seed values)
required The type of location where the prescribed service is to be provided. Examples include: Home, Hospital, School object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Staff
Staffs
Reference
DomainEntityProperty
optional collection A reference to the staff member(s) assigned to provide the prescribed service. object reference; optional collection Ed-Fi field source pass-through
Used By (1)
  • StudentIEPServiceDelivery.StudentIEPServicePrescription (optional)

UDM common/composite Composite Part

StudentIndicator #

dictionary-only type

An indicator or metric computed for the student (e.g., at risk).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
IndicatorGroup
IndicatorGroup
String
VARCHAR(200)
optional The name for a group of indicators. max length 200 characters; optional Ed-Fi field source pass-through
IndicatorName
IndicatorName
String
VARCHAR(200)
required
identity
ODS/API identity
The name of the indicator or metric. max length 200 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Indicator
Indicator
String
VARCHAR(60)
required The value of the indicator or metric. max length 60 characters; required Ed-Fi field source pass-through
Period
Periods
Reference
CommonProperty
optional collection The time periods for which the indicator was effective. object reference; optional collection Ed-Fi field source pass-through
DesignatedBy
DesignatedBy
String
VARCHAR(60)
optional The person, organization, or department that designated the program association. max length 60 characters; optional Ed-Fi field source pass-through
Used By (1)
  • StudentEducationOrganizationAssociation.StudentIndicator (optional collection)

Canonical UDM association Association Class

StudentInterventionAssociation #

/ed-fi/studentInterventionAssociations

This association indicates the students participating in an intervention.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention, Student Cohort
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentInterventionAssociation edfi.StudentInterventionAssociationInterventionEffectiveness
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the student associated with the intervention. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Intervention
InterventionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
An implementation of an instructional approach focusing on the specific techniques and materials used to teach a given subject. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Cohort
CohortReference
Reference
DomainEntityProperty
optional Relates the cohort, if the student's membership in this cohort is the reason he or she is participating in this intervention. object reference; optional Ed-Fi field source pass-through
InterventionEffectiveness
InterventionEffectivenesses
Reference
CommonProperty
optional collection A measure of the effects of an intervention in each outcome domain. The rating of effectiveness takes into account four factors: the quality of the research on the intervention, the statistical significance of the research findings, the size of the differences between participants in the intervention and comparison groups and the consistency in results. object reference; optional collection Ed-Fi field source pass-through
DiagnosticStatement
DiagnosticStatement
String
VARCHAR(1024)
optional A statement provided by the assigner that provides information regarding why the student was assigned to this intervention. max length 1024 characters; optional Ed-Fi field source pass-through
Dosage
Dosage
Number
INT
optional The duration of time in minutes for which the student was assigned to participate in the intervention. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through

Canonical UDM resource Class

StudentInterventionAttendanceEvent #

/ed-fi/studentInterventionAttendanceEvents

This event entity represents the recording of whether a student is in attendance for an intervention service.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Intervention
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentInterventionAttendanceEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AttendanceEvent
AttendanceEvent
Reference
InlineCommonProperty
required Details of the attendance event. object reference; required Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the student associated with the attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Intervention
InterventionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the intervention associated with the attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
InterventionDuration
InterventionDuration
Number
INT
optional The duration in minutes of the intervention attendance event. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through

Canonical UDM specialization Subclass

StudentLanguageInstructionProgramAssociation #

/ed-fi/studentLanguageInstructionProgramAssociations

This association represents the Title III Language Instruction for Limited English Proficient and Immigrant Students program(s) that a student participates in or from which the student receives services. The association is a subclass of the GeneralStudentProgramAssociation specifically designed for language instruction programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentLanguageInstructionProgramAssociation edfi.StudentLanguageInstructionProgramAssociationEnglishLanguageProficiencyAssessment edfi.StudentLanguageInstructionProgramAssociationLanguageInstructionProgramService
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EnglishLanguageProficiencyAssessment
EnglishLanguageProficiencyAssessments
Reference
CommonProperty
optional collection Results of yearly English language assessment. object reference; optional collection Ed-Fi field source pass-through
EnglishLearnerParticipation
EnglishLearnerParticipation
Boolean
BOOLEAN
optional An indication that an English learner student is served by an English language instruction educational program supported with Title III of ESEA funds. boolean true/false; optional Ed-Fi field source pass-through
LanguageInstructionProgramService
LanguageInstructionProgramServices
Reference
CommonProperty
optional collection Indicates the service(s) being provided to the student by the language instruction program. object reference; optional collection Ed-Fi field source pass-through
Dosage
Dosage
Number
INT
optional The duration of time in minutes for which the student was assigned to participate in the program. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through

Canonical UDM specialization Subclass

StudentMigrantEducationProgramAssociation #

/ed-fi/studentMigrantEducationProgramAssociations

This association represents the migrant education program(s) that a student participates in or receives services from. The association is a subclass of the GeneralStudentProgramAssociation specifically designed for migrant education programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentMigrantEducationProgramAssociation edfi.StudentMigrantEducationProgramAssociationMigrantEducationProgramService
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
PriorityForServices
PriorityForServices
Boolean
BOOLEAN
required Report migratory children who are classified as having "priority for services" because they are failing, or most at risk of failing to meet the state's challenging state academic content standards and challenging state student academic achievement standards, and their education has been interrupted during the regular school year. boolean true/false; required Ed-Fi field source pass-through
LastQualifyingMove
LastQualifyingMove
Date
DATE
required Date the last qualifying move occurred; used to compute MEP status. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
ContinuationOfServicesReason
ContinuationOfServicesReasonDescriptor
Reference
DescriptorProperty
Allowed values: ContinuationOfServicesReasonDescriptor (3 Ed-Fi seed values)
optional The "continuation of services" provision found in Section 1304(e) of the statute provides that (1) a child who ceases to be a migratory child during a school term shall be eligible for services until the end of such term; (2) a child who is no longer a migratory child may continue to receive services for one additional school year, but only if comparable services are not available through other programs; and (3) secondary school students who were eligible for services in secondary school may continue to be served through credit accrual programs until graduation. Only students who received services at any time during their 36 month eligibility period may continue to receive services (not necessarily the same service). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
USInitialEntry
USInitialEntry
Date
DATE
optional The month, day, and year on which the student first entered the U.S. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
USMostRecentEntry
USMostRecentEntry
Date
DATE
optional The month, day, and year of the student's most recent entry into the U.S. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
USInitialSchoolEntry
USInitialSchoolEntry
Date
DATE
optional The month, day, and year on which the student first entered a U.S. school. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
QualifyingArrivalDate
QualifyingArrivalDate
Date
DATE
optional The qualifying arrival date (QAD) is the date the child joins the worker who has already moved, or the date when the worker joins the child who has already moved. The QAD is the date that the child's eligibility for the MEP begins. The QAD is not affected by subsequent non-qualifying moves. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
StateResidencyDate
StateResidencyDate
Date
DATE
optional The verified state residency for the student. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EligibilityExpirationDate
EligibilityExpirationDate
Date
DATE
optional The eligibility expiration date is used to determine end of eligibility and to account for a child's eligibility expiring earlier than 36 months from the child's QAD. A child's eligibility would end earlier than 36 months from the child's QAD, if the child is no longer entitled to a free public education (e.g., graduated with a high school diploma, obtained a high school equivalency diploma (HSED), or for other reasons as determined by states' requirements), or if the child passes away. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
MigrantEducationProgramService
MigrantEducationProgramServices
Reference
CommonProperty
optional collection Indicates the service(s) being provided to the student by the migrant education program. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM specialization Subclass

StudentNeglectedOrDelinquentProgramAssociation #

/ed-fi/studentNeglectedOrDelinquentProgramAssociations

This association represents the Title I Part D Neglected or Delinquent program(s) that a student participates in or from which the student receives services. The association is a subclass of the GeneralStudentProgramAssociation specifically designed for Title I Part D Neglected or Delinquent programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentNeglectedOrDelinquentProgramAssociation edfi.StudentNeglectedOrDelinquentProgramAssociationNeglectedOrDelinquentProgramService
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
NeglectedOrDelinquentProgram
NeglectedOrDelinquentProgramDescriptor
Reference
DescriptorProperty
Allowed values: NeglectedOrDelinquentProgramDescriptor (6 Ed-Fi seed values)
optional The type of program under ESEA Title I, Part D, Subpart 1 (state programs) or Subpart 2 (LEA). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ELAProgressLevel
ELAProgressLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed ELAProgressLevelDescriptor values; no matching handbook descriptor entry found.
optional The progress measured from pre- to post- test for ELA. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
MathematicsProgressLevel
MathematicsProgressLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed MathematicsProgressLevelDescriptor values; no matching handbook descriptor entry found.
optional The progress measured from pre- to post-test for Mathematics. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
NeglectedOrDelinquentProgramService
NeglectedOrDelinquentProgramServices
Reference
CommonProperty
optional collection Indicates the service(s) being provided to the student by the neglected or delinquent program. object reference; optional collection Ed-Fi field source pass-through

UDM common/composite Composite Part

StudentObjectiveAssessment #

dictionary-only type

The student's score and/or performance levels earned for an objective assessment.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ScoreResult
ScoreResults
Reference
CommonProperty
optional collection A meaningful score or statistical expression of the performance of an individual. The results can be expressed as a number, percentile, range, level, etc. object reference; optional collection Ed-Fi field source pass-through
PerformanceLevel
PerformanceLevels
Reference
CommonProperty
optional collection The performance level(s) achieved for the objective assessment. object reference; optional collection Ed-Fi field source pass-through
ObjectiveAssessment
ObjectiveAssessmentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the test objective that is being measured by the objective-level assessment. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
AssessedMinutes
AssessedMinutes
Number
INT
optional Reported time student was assessed in minutes. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
AdministrationDate
AdministrationDate
DateTime
TIMESTAMP
optional The date and time an assessment was completed by the student. The use of ISO-8601 formats with a timezone designator (UTC or time offset) is recommended in order to prevent ambiguity due to time zones. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
AdministrationEndDate
AdministrationEndDate
DateTime
TIMESTAMP
optional The date and time an assessment administration ended. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentAssessment.StudentObjectiveAssessment (optional collection)

Canonical UDM resource Class

StudentPath #

/ed-fi/studentPaths

The entity representing the association or assignment of the student to the path of study being pursued.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Path
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentPath edfi.StudentPathPeriod
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the student associated with the path of study. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Path
PathReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the path of study associated with or assigned to the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Period
Periods
Reference
CommonProperty
optional collection The time periods for which the student was assigned and pursuing the path of study. object reference; optional collection Ed-Fi field source pass-through
Used By (2)
  • StudentPathMilestoneStatus.StudentPath (required)
  • StudentPathPhaseStatus.StudentPath (required)

Canonical UDM resource Class

StudentPathMilestoneStatus #

/ed-fi/studentPathMilestoneStatuses

The status of the student's achievement of the path milestone.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Path
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentPathMilestoneStatus edfi.StudentPathMilestoneStatusEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentPath
StudentPathReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the student's path assignment or association. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PathMilestone
PathMilestoneReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the path milestone against which the status is being recorded. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CompletionIndicator
CompletionIndicator
Boolean
BOOLEAN
optional Indicator on whether the student has completed the path milestone. boolean true/false; optional Ed-Fi field source pass-through
PathMilestoneStatusEvent
PathMilestoneStatusEvent
Reference
CommonProperty
optional The student's path milestone status and the date of the status change. object reference; optional Ed-Fi field source pass-through
PathPhase
PathPhaseReference
Reference
DomainEntityProperty
optional The phase in time when the path milestone status was achieved. object reference; optional Ed-Fi field source pass-through

Canonical UDM resource Class

StudentPathPhaseStatus #

/ed-fi/studentPathPhaseStatuses

The status of the student's association with the path's phase.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Path
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentPathPhaseStatus edfi.StudentPathPhaseStatusEvent edfi.StudentPathPhaseStatusPeriod
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
StudentPath
StudentPathReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the student's path assignment or association. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PathPhase
PathPhaseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
A reference to the path phase in time associated with the status. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
CompletionIndicator
CompletionIndicator
Boolean
BOOLEAN
optional Indicator on whether the student has completed the phase associated with the path of study. boolean true/false; optional Ed-Fi field source pass-through
PathPhaseStatusEvent
PathPhaseStatusEvents
Reference
CommonProperty
optional collection The student's path phase status and the date of the status change. object reference; optional collection Ed-Fi field source pass-through
Period
Periods
Reference
CommonProperty
optional collection The time periods associated with the path phase status. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM specialization Subclass

StudentProgramAssociation #

/ed-fi/studentProgramAssociations

This association represents the program(s) that a student participates in or is served by.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentProgramAssociation edfi.StudentProgramAssociationService
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (1)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Service
Services
Reference
CommonProperty
optional collection Indicates the service(s) being provided to the student by the program. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM resource Class

StudentProgramAttendanceEvent #

/ed-fi/studentProgramAttendanceEvents

This event entity represents the recording of whether a student is in attendance to receive or participate in program services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Student Attendance
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentProgramAttendanceEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AttendanceEvent
AttendanceEvent
Reference
InlineCommonProperty
required Details of the attendance event. object reference; required Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the student associated with the attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The education organization where the student is participating in or receiving the program services. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Program
ProgramReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the program associated with the attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ProgramAttendanceDuration
ProgramAttendanceDuration
Number
INT
optional The duration in minutes of the program attendance event. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through

Canonical UDM resource Class

StudentProgramEvaluation #

/ed-fi/studentProgramEvaluations

The evaluation results for a student as evaluated in the context of a program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentProgramEvaluation edfi.StudentProgramEvaluationExternalEvaluator edfi.StudentProgramEvaluationStudentEvaluationElement edfi.StudentProgramEvaluationStudentEvaluationObjective
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (12)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
ProgramEvaluation
ProgramEvaluationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program evaluation administered to the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student being evaluated on behalf of the program. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationDate
EvaluationDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year on which the evaluation was conducted. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
optional A reference to the education organization that evaluated the student, which may be different from the education organization associated with the program. object reference; optional Ed-Fi field source pass-through
EvaluationDuration
EvaluationDuration
Number
INT
optional The actual number of minutes to conduct the evaluation. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
SummaryEvaluationNumericRating
SummaryEvaluationNumericRating
Number
DECIMAL(6, 3)
optional The numerical summary rating or score for the evaluation. numeric precision 6, scale 3; optional Ed-Fi field source pass-through
SummaryEvaluationRatingLevel
SummaryEvaluationRatingLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed SummaryEvaluationRatingLevelDescriptor values; no matching handbook descriptor entry found.
optional The summary rating level achieved based upon the rating or score. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SummaryEvaluationComment
SummaryEvaluationComment
String
VARCHAR(1024)
optional Any comments about the summary evaluation to be captured. max length 1024 characters; optional Ed-Fi field source pass-through
StaffEvaluatorStaff
StaffEvaluatorStaffReference
Reference
DomainEntityProperty
optional Reference to the staff that evaluated the student. object reference; optional Ed-Fi field source pass-through
ExternalEvaluator
ExternalEvaluators
String
VARCHAR(150)
optional collection The external person(s) - not staff - that conducted the evaluation. max length 150 characters; optional collection Ed-Fi field source pass-through
StudentEvaluationObjective
StudentEvaluationObjectives
Reference
CommonProperty
optional collection The student's rating and/or rating levels earned for a program evaluation objective. object reference; optional collection Ed-Fi field source pass-through
StudentEvaluationElement
StudentEvaluationElements
Reference
CommonProperty
optional collection The student's rating and/or rating levels earned for a program evaluation element. object reference; optional collection Ed-Fi field source pass-through

UDM primitive/simple type Boolean

StudentRecordAccess #

dictionary-only type

Indicator of whether the staff has access to the student records of the cohort per district interpretation of FERPA and other privacy laws, regulations, and policies.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffCohortAssociation.StudentRecordAccess (optional)

UDM primitive/simple type Boolean

StudentRecordAccess #

dictionary-only type

Indicator of whether the staff has access to the student records of the program per district interpretation of FERPA and other privacy laws, regulations, and policies.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffProgramAssociation.StudentRecordAccess (optional)

Canonical UDM association Association Class deprecated source element

StudentSchoolAssociation #

/ed-fi/studentSchoolAssociations

This association represents the school in which a student is enrolled. The semantics of enrollment may differ slightly by state. Non-enrollment relationships between a student and an education organization may be described using the StudentEducationOrganizationAssociation, StudentDemographic and StudentDirectory.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment, Graduation, School Calendar, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentSchoolAssociation edfi.StudentSchoolAssociationAlternativeGraduationPlan edfi.StudentSchoolAssociationEducationPlan
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (26)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Student enrolled in the school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
School enrolling the student. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
PrimarySchool
PrimarySchool
Boolean
BOOLEAN
optional Indicates if a given enrollment record should be considered the primary record for a student. boolean true/false; optional Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
optional The school year associated with the student's enrollment. object reference; optional Ed-Fi field source pass-through
EntryDate
EntryDate
Date
DATE
required
identity
ODS/API identity
The month, day, and year on which an individual enters and begins to receive instructional services in a school for each school year. The EntryDate value should be the date the student enrolled, or when the student's enrollment materially changed, such as with a grade promotion. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EntryGradeLevel
EntryGradeLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed EntryGradeLevelDescriptor values; no matching handbook descriptor entry found.
required The grade level or primary instructional level at which a student enters and receives services in a school or an educational institution during a given academic session. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EntryGradeLevelReason
EntryGradeLevelReasonDescriptor
Reference
DescriptorProperty
Allowed values: EntryGradeLevelReasonDescriptor (13 Ed-Fi seed values)
optional The primary reason as to why a staff member determined that a student should be promoted or not (or be demoted) at the end of a given school term. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EntryType
EntryTypeDescriptor
Reference
DescriptorProperty
Allowed values: EntryTypeDescriptor (5 Ed-Fi seed values)
optional The process by which a student enters a school during a given academic session. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
RepeatGradeIndicator
RepeatGradeIndicator
Boolean
BOOLEAN
optional An indicator of whether the student is enrolling to repeat a grade level, either by failure or an agreement to hold the student back. boolean true/false; optional Ed-Fi field source pass-through
ClassOfSchoolYear
ClassOfSchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
optional Projected high school graduation year. object reference; optional Ed-Fi field source pass-through
SchoolChoiceTransfer
SchoolChoiceTransfer
Boolean
BOOLEAN
optional An indication of whether students transferred in or out of the school did so during the school year under the provisions for public school choice in accordance with Title I, Part A, Section 1116. boolean true/false; optional; deprecated: see deprecation reason
Deprecated: Will be removed in Data Standard v7.0
Ed-Fi field source pass-through
ExitWithdrawDate
ExitWithdrawDate
Date
DATE
optional The recorded exit or withdraw date for the student. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ExitWithdrawType
ExitWithdrawTypeDescriptor
Reference
DescriptorProperty
Allowed values: ExitWithdrawTypeDescriptor (15 Ed-Fi seed values)
optional The circumstances under which the student exited from membership in an educational institution. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EducationPlan
EducationPlans
Reference
DescriptorProperty
Allowed values: governed EducationPlansDescriptor values; no matching handbook descriptor entry found.
optional collection The type of education plan(s) the student is following, if appropriate. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ResidencyStatus
ResidencyStatusDescriptor
Reference
DescriptorProperty
Allowed values: ResidencyStatusDescriptor (5 Ed-Fi seed values)
optional An indication of the location of a persons legal residence relative to (within or outside of) the boundaries of the public school attended and its administrative unit. object reference; optional; deprecated: see deprecation reason; value must resolve through governed descriptor registry
Deprecated: Will be removed in Data Standard v8.0
Ed-Fi field source pass-through
GraduationPlan
GraduationPlanReference
Reference
DomainEntityProperty
optional The primary graduation plan associated with the student enrolled in the school. object reference; optional Ed-Fi field source pass-through
AlternativeGraduationPlan
AlternativeGraduationPlans
Reference
DomainEntityProperty
optional collection The secondary graduation plan or plans associated with the student enrolled in the school. object reference; optional collection Ed-Fi field source pass-through
EmployedWhileEnrolled
EmployedWhileEnrolled
Boolean
BOOLEAN
optional An individual who is a paid employee or works in his or her own business, profession, or farm and at the same time is enrolled in secondary, postsecondary, or adult education. boolean true/false; optional Ed-Fi field source pass-through
Calendar
CalendarReference
Reference
DomainEntityProperty
optional A reference to the student's calendar. object reference; optional Ed-Fi field source pass-through
FullTimeEquivalency
FullTimeEquivalency
Number
DECIMAL(5, 4)
optional The full-time equivalent ratio for the student's assignment to a school for services or instruction. For example, a full-time student would have an FTE value of 1 while a half-time student would have an FTE value of 0.5. numeric precision 5, scale 4; optional Ed-Fi field source pass-through
TermCompletionIndicator
TermCompletionIndicator
Boolean
BOOLEAN
optional Indicates whether or not a student completed the most recent school term. boolean true/false; optional Ed-Fi field source pass-through
NextYearSchool
NextYearSchoolReference
Reference
DomainEntityProperty
optional The anticipated school of enrollment for the student for the next school year, possibly reflecting a rollover to the same school, the promotion to a feeder school, or an anticipated transfer. object reference; optional Ed-Fi field source pass-through
NextYearGradeLevel
NextYearGradeLevelDescriptor
Reference
DescriptorProperty
Allowed values: governed NextYearGradeLevelDescriptor values; no matching handbook descriptor entry found.
optional The anticipated grade level for the student for the next school year. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SchoolChoice
SchoolChoice
Boolean
BOOLEAN
optional An indication of whether the student enrolled in this school under the provisions for public school choice boolean true/false; optional Ed-Fi field source pass-through
SchoolChoiceBasis
SchoolChoiceBasisDescriptor
Reference
DescriptorProperty
Allowed values: SchoolChoiceBasisDescriptor (5 Ed-Fi seed values)
optional The legal basis for the school choice enrollment according to local, state or federal policy or regulation. (The descriptor provides the list of available bases specific to the state object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EnrollmentType
EnrollmentTypeDescriptor
Reference
DescriptorProperty
Allowed values: EnrollmentTypeDescriptor (3 Ed-Fi seed values)
optional The type of enrollment reflected by the StudentSchoolAssociation. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Used By (1)
  • StudentAssessmentRegistration.StudentSchoolAssociation (required)

Canonical UDM resource Class

StudentSchoolAttendanceEvent #

/ed-fi/studentSchoolAttendanceEvents

This event entity represents the recording of whether a student is in attendance for a school day.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Student Attendance
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentSchoolAttendanceEvent
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AttendanceEvent
AttendanceEvent
Reference
InlineCommonProperty
required Details of the attendance event. object reference; required Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the student associated with the attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
School
SchoolReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the school associated with the attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Session
SessionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the session associated with the attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SchoolAttendanceDuration
SchoolAttendanceDuration
Number
INT
optional The duration in minutes of the school attendance event. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
ArrivalTime
ArrivalTime
Time
TIME
optional The time of day the student arrived for the attendance event in ISO 8601 format. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
DepartureTime
DepartureTime
Time
TIME
optional The time of day the student departed for the attendance event in ISO 8601 format. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through

Canonical UDM specialization Subclass

StudentSchoolFoodServiceProgramAssociation #

/ed-fi/studentSchoolFoodServiceProgramAssociations

This association represents the school food services program(s), such as the Free or Reduced Lunch program, that a student participates in or from which the student receives services. The association is a subclass of the GeneralStudentProgramAssociation specifically designed for school food service programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentSchoolFoodServiceProgramAssociation edfi.StudentSchoolFoodServiceProgramAssociationSchoolFoodServiceProgramService
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
DirectCertification
DirectCertification
Boolean
BOOLEAN
optional Indicates that the student's National School Lunch Program (NSLP) eligibility has been determined through direct certification. boolean true/false; optional Ed-Fi field source pass-through
SchoolFoodServiceProgramService
SchoolFoodServiceProgramServices
Reference
CommonProperty
optional collection Indicates the service(s) being provided to the student by the school food service program. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM specialization Subclass

StudentSection504ProgramAssociation #

/ed-fi/studentSection504ProgramAssociations

This association identifies student that qualifies for the Section 504 of the Rehabilitation Act of 1973.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentSection504ProgramAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Section504Eligibility
Section504Eligibility
Boolean
BOOLEAN
required Indicates whether student has a disability, either temporary or permenant, that qualifies student for Section 504 consideration. Selection of FALSE for this boolean is equivalent to marking student as 'Did Not Qualify'. boolean true/false; required Ed-Fi field source pass-through
AccommodationPlan
AccommodationPlan
Boolean
BOOLEAN
optional Indicates whether student has a Section 504 accommodation plan. boolean true/false; optional Ed-Fi field source pass-through
Section504Disability
Section504DisabilityDescriptor
Reference
DescriptorProperty
Allowed values: Section504DisabilityDescriptor (22 Ed-Fi seed values)
optional Defines one or more disabilities student has that qualifies them for a Section 504 plan. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Section504MeetingDate
Section504MeetingDate
Date
DATE
optional The month, day, and year on which the meeting with student's parent/guardian held to discuss the 504 eligibility of the student. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Section504EligibilityDecisionDate
Section504EligibilityDecisionDate
Date
DATE
optional The month, day, and year on which the Section 504 eligibility decision is made. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through

Canonical UDM association Association Class

StudentSectionAssociation #

/ed-fi/studentSectionAssociations

This association indicates the course sections to which a student is assigned.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Student Academic Record, Student Attendance, Student Cohort, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentSectionAssociation edfi.StudentSectionAssociationProgram
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student enrolled in the section. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Section
SectionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The section the student is enrolled in. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
BeginDate
BeginDate
Date
DATE
required
identity
ODS/API identity
Month, day, and year of the student's entry or assignment to the section. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EndDate
EndDate
Date
DATE
optional Month, day, and year of the withdrawal or exit of the student from the section. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
HomeroomIndicator
HomeroomIndicator
Boolean
BOOLEAN
optional Indicates the section is the student's homeroom. Homeroom period may the convention for taking daily attendance. boolean true/false; optional Ed-Fi field source pass-through
RepeatIdentifier
RepeatIdentifierDescriptor
Reference
DescriptorProperty
Allowed values: RepeatIdentifierDescriptor (8 Ed-Fi seed values)
optional An indication as to whether a student has previously taken a given course. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TeacherStudentDataLinkExclusion
TeacherStudentDataLinkExclusion
Boolean
BOOLEAN
optional Indicates that the student-section combination is excluded from calculation of value-added or growth attribution calculations used for a particular teacher evaluation. boolean true/false; optional Ed-Fi field source pass-through
AttemptStatus
AttemptStatusDescriptor
Reference
DescriptorProperty
Allowed values: AttemptStatusDescriptor (16 Ed-Fi seed values)
optional An indication of the student's completion status for the section. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
Program
Programs
Reference
DomainEntityProperty
optional collection The program(s) that the student is participating in the context of the course. object reference; optional collection Ed-Fi field source pass-through
DualCredit
DualCredit
Reference
InlineCommonProperty
optional The set of elements that capture relevant data regarding dual credit. object reference; optional Ed-Fi field source pass-through
Used By (2)
  • StudentCompetencyObjectiveSectionOrProgramChoice.StudentSectionAssociation (optional collection)
  • Grade.StudentSectionAssociation (required)

Canonical UDM resource Class

StudentSectionAttendanceEvent #

/ed-fi/studentSectionAttendanceEvents

This event entity represents the recording of whether a student is in attendance for a section.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education, Student Attendance
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentSectionAttendanceEvent edfi.StudentSectionAttendanceEventClassPeriod
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
AttendanceEvent
AttendanceEvent
Reference
InlineCommonProperty
required Details of the attendance event. object reference; required Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the student associated with the attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Section
SectionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Relates the section associated with the attendance event. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SectionAttendanceDuration
SectionAttendanceDuration
Number
INT
optional The duration in minutes of the section attendance event. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
ArrivalTime
ArrivalTime
Time
TIME
optional The time of day the student arrived for the attendance event in ISO 8601 format. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
DepartureTime
DepartureTime
Time
TIME
optional The time of day the student departed for the attendance event in ISO 8601 format. time value in ISO 8601 local-time form; optional Ed-Fi field source pass-through
ClassPeriod
ClassPeriods
Reference
DomainEntityProperty
optional collection The class period(s) to which the section attendance event applies. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM specialization Subclass

StudentSpecialEducationProgramAssociation #

/ed-fi/studentSpecialEducationProgramAssociations

This association represents the special education program(s) that a student participates in or receives services from. The association is a subclass of the GeneralStudentProgramAssociation specifically designed for special education programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Special Education
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentSpecialEducationProgramAssociation edfi.StudentSpecialEducationProgramAssociationDisability edfi.StudentSpecialEducationProgramAssociationDisabilityDesignation edfi.StudentSpecialEducationProgramAssociationServiceProvider edfi.StudentSpecialEducationProgramAssociationSpecialEducationProgramService edfi.StudentSpecialEducationProgramAssociationSpecialEducationProgramServiceProvider
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (20)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
IdeaEligibility
IdeaEligibility
Boolean
BOOLEAN
optional Indicator of the eligibility of the student to receive special education services according to the Individuals with Disabilities Education Act (IDEA). boolean true/false; optional Ed-Fi field source pass-through
SpecialEducationSetting
SpecialEducationSettingDescriptor
Reference
DescriptorProperty
Allowed values: SpecialEducationSettingDescriptor (16 Ed-Fi seed values)
optional The major instructional setting (more than 50 percent of a student's special education program). object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ServiceProvider
ServiceProviders
Reference
CommonProperty
optional collection The staff providing special education services to the student. object reference; optional collection Ed-Fi field source pass-through
SpecialEducationHoursPerWeek
SpecialEducationHoursPerWeek
Number
DECIMAL(5, 2)
optional The number of hours per week for special education instruction and therapy. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
SchoolHoursPerWeek
SchoolHoursPerWeek
Number
DECIMAL(5, 2)
optional Indicate the total number of hours of instructional time per week for the school that the student attends. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
ShortenedSchoolDayIndicator
ShortenedSchoolDayIndicator
Boolean
BOOLEAN
optional Indicator that the student's IEP requires a shortened school day. boolean true/false; optional Ed-Fi field source pass-through
ReductionInHoursPerWeekComparedToPeers
ReductionInHoursPerWeekComparedToPeers
Number
DECIMAL(5, 2)
optional Records the number of hours reduced for the shortened school day for the IEP student as compared to peers in regular education. numeric precision 5, scale 2; optional Ed-Fi field source pass-through
MultiplyDisabled
MultiplyDisabled
Boolean
BOOLEAN
optional Indicates whether the student receiving special education and related services has been designated as multiply disabled by the admission, review, and dismissal committee as aligned with federal requirements. boolean true/false; optional Ed-Fi field source pass-through
MedicallyFragile
MedicallyFragile
Boolean
BOOLEAN
optional Indicates whether the student receiving special education and related services is: 1) in the age range of birth to 22 years, and 2) has a serious, ongoing illness or a chronic condition that has lasted or is anticipated to last at least 12 or more months or has required at least one month of hospitalization, and that requires daily, ongoing medical treatments and monitoring by appropriately trained personnel which may include parents or other family members, and 3) requires the routine use of medical device or of assistive technology to compensate for the loss of usefulness of a body function needed to participate in activities of daily living, and 4) lives with ongoing threat to his or her continued well-being. Aligns with federal requirements. boolean true/false; optional Ed-Fi field source pass-through
IEPLastEvaluationDate
IEPLastEvaluationDate
Date
DATE
optional The date of the last special education evaluation. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
IEPLastReviewDate
IEPLastReviewDate
Date
DATE
optional The date of the last IEP review. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
IEPEvaluationDueDate
IEPEvaluationDueDate
Date
DATE
optional The due date for the next special education evaluation. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
IEPReviewDueDate
IEPReviewDueDate
Date
DATE
optional The due date for the next IEP review. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
IEPBeginDate
IEPBeginDate
Date
DATE
optional The effective date of the most recent IEP. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
IEPEndDate
IEPEndDate
Date
DATE
optional The end date of the most recent IEP. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Disability
Disabilities
Reference
CommonProperty
optional collection The disability condition(s) that best describes an individual's impairment, as related to special education services received. object reference; optional collection Ed-Fi field source pass-through
SpecialEducationProgramService
SpecialEducationProgramServices
Reference
CommonProperty
optional collection Indicates the service(s) being provided to the student by the special education program. object reference; optional collection Ed-Fi field source pass-through
SpecialEducationExitDate
SpecialEducationExitDate
Date
DATE
optional The month, day and year on which a person stops receiving special education services. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
SpecialEducationExitReason
SpecialEducationExitReasonDescriptor
Reference
DescriptorProperty
Allowed values: SpecialEducationExitReasonDescriptor (11 Ed-Fi seed values)
optional The reason why a person stops receiving special education services. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SpecialEducationExitExplained
SpecialEducationExitExplained
String
VARCHAR(1024)
optional Explanation on why a person stops receiving special education services. max length 1024 characters; optional Ed-Fi field source pass-through

Canonical UDM association Association Class

StudentSpecialEducationProgramEligibilityAssociation #

/ed-fi/studentSpecialEducationProgramEligibilityAssociations

Captures details regarding the evaluation process for eligibility of students for special education services under IDEA Part C or Part B.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentSpecialEducationProgramEligibilityAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (19)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Indicates the education organization where the student was evaluated for special education services. This could be a school or a district. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Student who is evaluated by a local education agency or a school. This is often their resident district. Students could be enrolled or unenrolled, or private-schooled or home-schooled. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Program
ProgramReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Indicates the program that the student is being evaluated for. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ConsentToEvaluationReceivedDate
ConsentToEvaluationReceivedDate
Date
DATE
required
identity
ODS/API identity
Indicates the date on which the local education agency received written consent for the evaluation from the student's parent or guardian. This is the first day of the evaluation timeframe. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
OriginalECIServicesDate
OriginalECIServicesDate
Date
DATE
optional The month, date, and year when an infant or toddler, from birth through age 2, began participating in the early childhood intervention (ECI) program. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
IDEAPart
IDEAPartDescriptor
Reference
DescriptorProperty
Allowed values: IDEAPartDescriptor (2 Ed-Fi seed values)
required Indicates if the evaluation is done under Part B IDEA or Part C IDEA. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ConsentToEvaluationDate
ConsentToEvaluationDate
Date
DATE
optional The date on which the student's parent gave a consent (Parent Consent Date). calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EvaluationCompleteIndicator
EvaluationCompleteIndicator
Boolean
BOOLEAN
optional Indicates the evaluation completed status. boolean true/false; optional Ed-Fi field source pass-through
EligibilityEvaluationDate
EligibilityEvaluationDate
Date
DATE
optional Indicates the month, day, and year when the written individual evaluation report was completed. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EligibilityEvaluationType
EligibilityEvaluationTypeDescriptor
Reference
DescriptorProperty
Allowed values: EligibilityEvaluationTypeDescriptor (2 Ed-Fi seed values)
optional Indicates if this is an initial evaluation or a reevaluation. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EvaluationDelayReason
EvaluationDelayReasonDescriptor
Reference
DescriptorProperty
Allowed values: EvaluationDelayReasonDescriptor (3 Ed-Fi seed values)
optional Refers to the justification as to why the evaluation report was completed beyond the state-established timeframe. This descriptor field will have allowed reasons as descriptor values. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
EvaluationLateReason
EvaluationLateReason
String
VARCHAR(255)
optional Refers to additional information for delay in doing the evaluation. max length 255 characters; optional Ed-Fi field source pass-through
EvaluationDelayDays
EvaluationDelayDays
Number
INT
optional Indicates the number of student absences, if any, beginning the first instructional day following the date on which the local education agency (LEA) received written parental or guardian consent for the evaluation. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
EligibilityDeterminationDate
EligibilityDeterminationDate
Date
DATE
optional Indicates the month, day, and year the local education agency (LEA) held the admission, review, and dismissal committee meeting regarding the child's eligibility determination for special education and related services. An individualized education plan (IEP) would be developed and implemented for a child admitted into special education on this same date. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
IDEAIndicator
IDEAIndicator
Boolean
BOOLEAN
optional Indicates whether or not the student was determined eligible as a result of an evaluation. boolean true/false; optional Ed-Fi field source pass-through
EligibilityDelayReason
EligibilityDelayReasonDescriptor
Reference
DescriptorProperty
Allowed values: EligibilityDelayReasonDescriptor (9 Ed-Fi seed values)
optional The reason why the eligibility determination was completed beyond the required timeframe. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TransitionNotificationDate
TransitionNotificationDate
Date
DATE
optional Indicates the month, day, and year the LEA Notification of Potentially Eligible for Special Education Services was sent by the early childhood intervention (ECI) contractor to the local education agency (LEA) to notify them that a child enrolled in ECI will shortly reach the age of eligibility for Part B services and the child is potentially eligible for services under Part B, early childhood special education (ECSE). The LEA Notification constitutes a referral to the LEA for an initial evaluation and eligibility determination of the child which the parent or guardian may opt out from the referral. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
TransitionConferenceDate
TransitionConferenceDate
Date
DATE
optional Indicates the month, day, and year when the transition conference was held (for a child receiving early childhood intervention (ECI) services) among the lead agency, the family, and the local education agency (LEA) where the child resides to discuss the child's potential eligibility for early childhood special education (ECSE) services. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
EligibilityConferenceDate
EligibilityConferenceDate
Date
DATE
optional The month, day, and year when the eligibility conference is held between the parent(s)/guardian(s) and the educational organization responsible staff member(s) to review and make decision on special education related services eligibility. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through

Canonical UDM specialization Subclass

StudentTitleIPartAProgramAssociation #

/ed-fi/studentTitleIPartAProgramAssociations

This association represents the Title I Part A program(s) that a student participates in or from which the student receives services. The association is a subclass of the GeneralStudentProgramAssociation specifically designed for Title I Part A programs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentTitleIPartAProgramAssociation edfi.StudentTitleIPartAProgramAssociationTitleIPartAProgramService
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
TitleIPartAParticipant
TitleIPartAParticipantDescriptor
Reference
DescriptorProperty
Allowed values: TitleIPartAParticipantDescriptor (5 Ed-Fi seed values)
required An indication of the type of Title I program, if any, in which the student is participating and by which the student is served. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TitleIPartAProgramService
TitleIPartAProgramServices
Reference
CommonProperty
optional collection Indicates the service(s) being provided to the student by the Title I Part A program. object reference; optional collection Ed-Fi field source pass-through

Canonical UDM resource Class

StudentTransportation #

/ed-fi/studentTransportations

This entity captures a student's specific transportation arrangement.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.StudentTransportation edfi.StudentTransportationStudentBusDetails edfi.StudentTransportationStudentBusDetailsTravelDayofWeek edfi.StudentTransportationStudentBusDetailsTravelDirection
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted student_sourced_id
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The student associated with the transportation. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
TransportationEducationOrganization
TransportationEducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The educational organization accountable for managing a student's transportation arrangements. Usually, this refers to a Local Education Agency (LEA), though it could also pertain to a school. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
TransportationPublicExpenseEligibilityType
TransportationPublicExpenseEligibilityTypeDescriptor
Reference
DescriptorProperty
Allowed values: TransportationPublicExpenseEligibilityTypeDescriptor (11 Ed-Fi seed values)
optional The primary type of eligibility for transporting a student at public expense. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
TransportationType
TransportationTypeDescriptor
Reference
DescriptorProperty
Allowed values: TransportationTypeDescriptor (5 Ed-Fi seed values)
optional The mode or type of transportation utilized by a student to commute to and from school object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
SpecialAccomodationRequirements
SpecialAccomodationRequirements
String
VARCHAR(1024)
optional Specific requirements needed to accommodate a student's physical needs which may include special equipment installed in a vehicle or a special arrangement for transportation. max length 1024 characters; optional Ed-Fi field source pass-through
StudentBusDetails
StudentBusDetails
Reference
CommonProperty
optional Stores details associated with student-bus assignment within a transportation system. object reference; optional Ed-Fi field source pass-through

Descriptor catalog Descriptor

SubmissionStatus #

/ed-fi/descriptors/submissionStatusDescriptors

The status of the student's submission.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Student Academic Record
Source
UDM Handbook entry
Physical SQL snippets
edfi.SubmissionStatusDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SubmissionStatusDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Exempt Exempt The student is exempted from the assignment and the assignment's score will not affect the student's grade calculations. uri://ed-fi.org/SubmissionStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Graded Graded Assignment has been graded by the teacher. uri://ed-fi.org/SubmissionStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Submitted Not Submitted The assignment has not been submitted by the student/received by the teacher. uri://ed-fi.org/SubmissionStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Returned Returned Assignment is returned by the teacher or reclaimed by the student for revision. Assignment needs to be submitted again after revisions have been made. uri://ed-fi.org/SubmissionStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Submitted Submitted The assignment has been submitted by the student but has not been graded. uri://ed-fi.org/SubmissionStatusDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentGradebookEntry.SubmissionStatus (optional)

UDM primitive/simple type Boolean

SubstituteAssigned #

dictionary-only type

Indicator of whether a substitute was assigned during the period of staff leave.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffLeave.SubstituteAssigned (optional)

Descriptor catalog Descriptor

SupporterMilitaryConnection #

/ed-fi/descriptors/supporterMilitaryConnectionDescriptors

Military connection of the person/people whom the student is a dependent of.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Enrollment, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.SupporterMilitaryConnectionDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (6 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SupporterMilitaryConnectionDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Active Duty Student is a dependent of a (full-time) member of the military Student is a dependent of a member of the Active Duty Forces (full-time) Army, Navy, Air Force, Space Force, Marine Corps, or Coast Guard or a member on full-time National Guard duty uri://ed-fi.org/SupporterMilitaryConnectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
DoD Civilian Student is a dependent of a civil servant to the DoD Student is a dependent of a person who is employed by the Department of Defense as a civil servant uri://ed-fi.org/SupporterMilitaryConnectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Military Connected People who the student is a dependent of is/are not military connected Contact does not have a connection with military or department of defense as an employee or retiree uri://ed-fi.org/SupporterMilitaryConnectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reserve Student is a dependent of a member of reserve forces or national guard Student is a dependent of a member of the National Guard (not full-time) or the Reserve Forces Army, Navy, Air Force, Space Force, Marine Corps or Coast Guard uri://ed-fi.org/SupporterMilitaryConnectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Military connection information is unknown It is unknown whether or not the student is a dependent of a person who is military-connected uri://ed-fi.org/SupporterMilitaryConnectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Veteran Student is a dependent of a discharged military personnel or a retiree Student is a dependent of a person who has served in the US military and become discharged or released or got retired after completing required amount of years of military services uri://ed-fi.org/SupporterMilitaryConnectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentDemographic.SupporterMilitaryConnection (optional)

Canonical UDM resource Class

Survey #

/ed-fi/surveys

A survey to identified or anonymous respondents.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.Survey
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (8)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveyIdentifier
SurveyIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
The unique survey identifier from the survey tool. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Namespace
Namespace
String
VARCHAR(255)
required
identity
ODS/API identity
Namespace for the survey. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
optional The education organization associated with the survey. object reference; optional Ed-Fi field source pass-through
SurveyTitle
SurveyTitle
String
VARCHAR(255)
required The title of the survey. max length 255 characters; required Ed-Fi field source pass-through
SchoolYear
SchoolYearTypeReference
Reference
SchoolYearEnumerationProperty
required The school year associated with the survey. object reference; required Ed-Fi field source pass-through
Session
SessionReference
Reference
DomainEntityProperty
optional The session associated with the survey. object reference; optional Ed-Fi field source pass-through
SurveyCategory
SurveyCategoryDescriptor
Reference
DescriptorProperty
Allowed values: SurveyCategoryDescriptor (10 Ed-Fi seed values)
optional The category or type of survey. object reference; optional; value must resolve through governed descriptor registry Ed-Fi field source pass-through
NumberAdministered
NumberAdministered
Number
INT
optional Number of persons to whom this survey was administered. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (6)
  • SurveyCourseAssociation.Survey (required)
  • SurveyProgramAssociation.Survey (required)
  • SurveySectionAssociation.Survey (required)
  • SurveyQuestion.Survey (required)
  • SurveyResponse.Survey (required)
  • SurveySection.Survey (required)

Descriptor catalog Descriptor

SurveyCategory #

/ed-fi/descriptors/surveyCategoryDescriptors

The descriptor holds the category or type of survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveyCategoryDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (10 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SurveyCategoryDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Administrator Administrator Administrator uri://ed-fi.org/SurveyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Applicant Applicant Applicant uri://ed-fi.org/SurveyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Community Community Community uri://ed-fi.org/SurveyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
District District District uri://ed-fi.org/SurveyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Exit Exit Exiting staff uri://ed-fi.org/SurveyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/SurveyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Parent Parent Parent uri://ed-fi.org/SurveyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Principal Principal Principal uri://ed-fi.org/SurveyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Student Student Student uri://ed-fi.org/SurveyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher Teacher Teacher uri://ed-fi.org/SurveyCategoryDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Survey.SurveyCategory (optional)

Canonical UDM association Association Class

SurveyCourseAssociation #

/ed-fi/surveyCourseAssociations

The course associated with the survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveyCourseAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Survey
SurveyReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Course
CourseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The course associated with the survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Descriptor catalog Descriptor

SurveyLevel #

/ed-fi/descriptors/surveyLevelDescriptors

Provides information about the respondents of a survey and how they can be grouped together.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveyLevelDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (25 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for SurveyLevelDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Adult Education Adult Education Adult Education uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Early Education Early Education Early Education uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eighth grade Eighth grade Eighth grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eleventh grade Eleventh grade Eleventh grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fifth grade Fifth grade Fifth grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First grade First grade First grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fourth grade Fourth grade Fourth grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grade 13 Grade 13 Grade 13 uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Infant/toddler Infant/toddler Infant/toddler uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kindergarten Kindergarten Kindergarten uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master's Master's Master's uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ninth grade Ninth grade Ninth grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
No grade level No grade level No grade level uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Postsecondary Postsecondary Postsecondary uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Preschool/Prekindergarten Preschool/Prekindergarten Preschool/Prekindergarten uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Professional Certification Professional Certification Professional Certification uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second grade Second grade Second grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Seventh grade Seventh grade Seventh grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sixth grade Sixth grade Sixth grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tenth grade Tenth grade Tenth grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Third grade Third grade Third grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Twelfth grade Twelfth grade Twelfth grade uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Undergraduate Undergraduate Undergraduate uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ungraded Ungraded Ungraded uri://ed-fi.org/SurveyLevelDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • SurveyResponse.SurveyLevel (optional collection)

Canonical UDM association Association Class

SurveyProgramAssociation #

/ed-fi/surveyProgramAssociations

The program associated with the survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveyProgramAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Survey
SurveyReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Program
ProgramReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The program associated with the survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Canonical UDM resource Class

SurveyQuestion #

/ed-fi/surveyQuestions

The questions for the survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveyQuestion edfi.SurveyQuestionMatrix edfi.SurveyQuestionResponseChoice
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (7)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
QuestionCode
QuestionCode
String
VARCHAR(120)
required
identity
ODS/API identity
The identifying code for the question, unique for the survey. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Survey
SurveyReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
QuestionForm
QuestionFormDescriptor
Reference
DescriptorProperty
Allowed values: QuestionFormDescriptor (8 Ed-Fi seed values)
required The form or type of question. object reference; required; value must resolve through governed descriptor registry Ed-Fi field source pass-through
QuestionText
QuestionText
String
VARCHAR(1024)
required The text of the question. max length 1024 characters; required Ed-Fi field source pass-through
ResponseChoice
ResponseChoices
Reference
CommonProperty
optional collection The optional list of possible responses to a survey question. object reference; optional collection Ed-Fi field source pass-through
SurveySection
SurveySectionReference
Reference
DomainEntityProperty
optional Reference to the survey section. object reference; optional Ed-Fi field source pass-through
Matrix
Matrices
Reference
CommonProperty
optional collection Information about the matrix element in the survey. object reference; optional collection Ed-Fi field source pass-through
Used By (1)
  • SurveyQuestionResponse.SurveyQuestion (required)

UDM common/composite Composite Part

SurveyQuestionMatrixElementResponse #

dictionary-only type

For matrix questions, the response for each row of the matrix.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
MatrixElement
MatrixElement
String
VARCHAR(255)
required
identity
ODS/API identity
For matrix questions, the text identifying each row of the matrix. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
NumericResponse
NumericResponse
Number
INT
optional The numeric response to the question. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
TextResponse
TextResponse
String
VARCHAR(2048)
optional The text response(s) for the question. max length 2048 characters; optional Ed-Fi field source pass-through
NoResponse
NoResponse
Boolean
BOOLEAN
optional Indicates there was no response to the question. boolean true/false; optional Ed-Fi field source pass-through
MinNumericResponse
MinNumericResponse
Number
INT
optional The minimum score response to the question. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
MaxNumericResponse
MaxNumericResponse
Number
INT
optional The maximum score response to the question. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
Used By (1)
  • SurveyQuestionResponse.SurveyQuestionMatrixElementResponse (optional collection)

Canonical UDM resource Class

SurveyQuestionResponse #

/ed-fi/surveyQuestionResponses

The response to a survey question.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveyQuestionResponse edfi.SurveyQuestionResponseSurveyQuestionMatrixElementResponse edfi.SurveyQuestionResponseValue
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (6)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveyQuestion
SurveyQuestionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The identifying code for the question, unique for the survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SurveyResponse
SurveyResponseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the survey response. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
NoResponse
NoResponse
Boolean
BOOLEAN
optional Indicates there was no response to the question. boolean true/false; optional Ed-Fi field source pass-through
SurveyQuestionResponseValue
Values
Reference
CommonProperty
optional collection For free-form, single- or multiple-selection questions, one or more responses. object reference; optional collection Ed-Fi field source pass-through
SurveyQuestionMatrixElementResponse
SurveyQuestionMatrixElementResponses
Reference
CommonProperty
optional collection For matrix questions, the response for each row of the matrix. object reference; optional collection Ed-Fi field source pass-through
Comment
Comment
String
VARCHAR(1024)
optional Additional information provided by the responder about the question in the survey. max length 1024 characters; optional Ed-Fi field source pass-through

UDM common/composite Composite Part

SurveyQuestionResponseValue #

dictionary-only type

Individual response to a free-form, single- or multiple-selection survey question.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveyQuestionResponseValueIdentifier
SurveyQuestionResponseValueIdentifier
Number
INT
required
identity
ODS/API identity
Primary key for the response value; a unique, usually sequential numeric value for a collection of responses, or potentially the value of NumericResponse for a single response. integer range -2,147,483,648 to 2,147,483,647; required; identity component; ODS/API identity component Ed-Fi field source pass-through
NumericResponse
NumericResponse
Number
INT
optional A numeric response to the question. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
TextResponse
TextResponse
String
VARCHAR(2048)
optional A text response to the question. max length 2048 characters; optional Ed-Fi field source pass-through
Used By (1)
  • SurveyQuestionResponse.SurveyQuestionResponseValue (optional collection)

UDM primitive/simple type Number

SurveyQuestionResponseValueIdentifier #

dictionary-only type

Primary key for the response value; a unique, usually sequential numeric value for a collection of responses, or potentially the value of NumericResponse for a single response.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM common/composite Composite Part

SurveyResponderChoice #

dictionary-only type

Reference to either a student, contact, staff, or applicant - or none for anonymous survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Student
StudentReference
Reference
DomainEntityProperty
required The student respondent for a survey. object reference; required Ed-Fi field source pass-through
Contact
ContactReference
Reference
DomainEntityProperty
required The contact respondent for a survey. object reference; required Ed-Fi field source pass-through
Staff
StaffReference
Reference
DomainEntityProperty
required The staff respondent for a survey. object reference; required Ed-Fi field source pass-through
Used By (1)
  • SurveyResponse.SurveyResponderChoice (optional)

Canonical UDM resource Class

SurveyResponse #

/ed-fi/surveyResponses

Responses to a Survey for named or anonymous persons.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveyResponse edfi.SurveyResponseSurveyLevel
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (10)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveyResponseIdentifier
SurveyResponseIdentifier
String
VARCHAR(120)
required
identity
ODS/API identity
The identifier of the survey typically from the survey application. max length 120 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Survey
SurveyReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The survey associated with the response. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ResponseDate
ResponseDate
Date
DATE
required Date of the survey response. calendar date in ISO 8601 full-date form; required Ed-Fi field source pass-through
ResponseTime
ResponseTime
Number
INT
optional The amount of time in seconds it took for the respondent to complete the survey. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
SurveyLevel
SurveyLevels
Reference
DescriptorProperty
Allowed values: governed SurveyLevelsDescriptor values; no matching handbook descriptor entry found.
optional collection Provides information about the respondents of a survey and how they can be grouped together. object reference; optional collection; value must resolve through governed descriptor registry Ed-Fi field source pass-through
ElectronicMailAddress
ElectronicMailAddress
String
VARCHAR(128)
optional Email address of the respondent. max length 128 characters; optional Ed-Fi field source pass-through
FullName
FullName
String
VARCHAR(80)
optional Full name of the respondent. max length 80 characters; optional Ed-Fi field source pass-through
Location
Location
String
VARCHAR(75)
optional Location of the respondent, often a city, district, or school. max length 75 characters; optional Ed-Fi field source pass-through
SurveyResponderChoice
SurveyResponderChoice
Reference
ChoiceProperty
optional Reference to either a student, contact, or staff - or none for anonymous survey. object reference; optional Ed-Fi field source pass-through
Person
PersonReference
Reference
DomainEntityProperty
optional Relates the survey response to a person. object reference; optional Ed-Fi field source pass-through
Used By (5)
  • SurveyResponseEducationOrganizationTargetAssociation.SurveyResponse (required)
  • SurveyResponsePersonTargetAssociation.SurveyResponse (required)
  • SurveyResponseStaffTargetAssociation.SurveyResponse (required)
  • SurveyQuestionResponse.SurveyResponse (required)
  • SurveySectionResponse.SurveyResponse (required)

Canonical UDM association Association Class

SurveyResponseEducationOrganizationTargetAssociation #

/ed-fi/surveyResponseEducationOrganizationTargetAssociations

This association provides information about the survey being taken and the education organization the survey is about.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveyResponseEducationOrganizationTargetAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveyResponse
SurveyResponseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the survey response. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Canonical UDM association Association Class

SurveyResponsePersonTargetAssociation #

/ed-fi/surveyResponsePersonTargetAssociations

The association provides information about the survey being taken and who the survey is about.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveyResponsePersonTargetAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveyResponse
SurveyResponseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the survey response. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Person
PersonReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the target of the survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Canonical UDM association Association Class

SurveyResponseStaffTargetAssociation #

/ed-fi/surveyResponseStaffTargetAssociations

The association provides information about the survey being taken and who the survey is about.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveyResponseStaffTargetAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveyResponse
SurveyResponseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to survey response. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to staff member. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Canonical UDM resource Class

SurveySection #

/ed-fi/surveySections

The section of questions for the survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveySection
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Survey
SurveyReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SurveySectionTitle
SurveySectionTitle
String
VARCHAR(255)
required
identity
ODS/API identity
The title or label for the survey section. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EvaluationElement
EvaluationElementReference
Reference
DomainEntityProperty
optional The evaluation element associated with the quantitative measure. object reference; optional Ed-Fi field source pass-through
Used By (3)
  • SurveyQuestion.SurveySection (optional)
  • SurveySectionAggregateResponse.SurveySection (required)
  • SurveySectionResponse.SurveySection (required)

Canonical UDM resource Class

SurveySectionAggregateResponse #

/ed-fi/surveySectionAggregateResponses

The aggregate or average score across the surveying population for a survey section being used for performance evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Performance Evaluation
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveySectionAggregateResponse
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
EvaluationElementRating
EvaluationElementRatingReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the person's evaluation element rating. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SurveySection
SurveySectionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the associated survey section. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
ScoreValue
ScoreValue
Number
DECIMAL(6, 3)
required The score value for the aggregate survey section response. numeric precision 6, scale 3; required Ed-Fi field source pass-through

Canonical UDM association Association Class

SurveySectionAssociation #

/ed-fi/surveySectionAssociations

The section associated with the survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveySectionAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted class_sourced_id
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
Survey
SurveyReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to Survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Section
SectionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
The section associated with the survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Canonical UDM resource Class

SurveySectionResponse #

/ed-fi/surveySectionResponses

Optional information about the responses provided for a section of a survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveySectionResponse
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (3)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveySection
SurveySectionReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the survey section. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SurveyResponse
SurveyResponseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the survey response. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
SectionRating
SectionRating
Number
DECIMAL(9, 3)
optional Numeric rating computed from the survey responses for the section. numeric precision 9, scale 3; optional Ed-Fi field source pass-through
Used By (3)
  • SurveySectionResponseEducationOrganizationTargetAssociation.SurveySectionResponse (required)
  • SurveySectionResponsePersonTargetAssociation.SurveySectionResponse (required)
  • SurveySectionResponseStaffTargetAssociation.SurveySectionResponse (required)

Canonical UDM association Association Class

SurveySectionResponseEducationOrganizationTargetAssociation #

/ed-fi/surveySectionResponseEducationOrganizationTargetAssociations

This association provides information about the survey section and the education organization the survey section is about.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveySectionResponseEducationOrganizationTargetAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted school_sourced_id
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveySectionResponse
SurveySectionResponseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the survey section response. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
EducationOrganization
EducationOrganizationReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the education organization. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Canonical UDM association Association Class

SurveySectionResponsePersonTargetAssociation #

/ed-fi/surveySectionResponsePersonTargetAssociations

This association provides information about the survey section and the person the survey section is about.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveySectionResponsePersonTargetAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveySectionResponse
SurveySectionResponseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the survey section response. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Person
PersonReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to target of the survey. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

Canonical UDM association Association Class

SurveySectionResponseStaffTargetAssociation #

/ed-fi/surveySectionResponseStaffTargetAssociations

This association provides information about the survey section and the staff the survey section is about.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.SurveySectionResponseStaffTargetAssociation
Platform overlay
tenant_id edfi_local_id source_key_json ack_id etag created_at updated_at is_deleted staff_sourced_id
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
SurveySectionResponse
SurveySectionResponseReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the survey section response. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Staff
StaffReference
Reference
DomainEntityProperty
required
identity
ODS/API identity
Reference to the staff. object reference; required; identity component; ODS/API identity component Ed-Fi field source pass-through

UDM primitive/simple type String

SurveySectionTitle #

dictionary-only type

The title or label for the survey section.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • SurveySection.SurveySectionTitle (required)

UDM primitive/simple type String

SurveyTitle #

dictionary-only type

The title of the survey.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • Survey.SurveyTitle (required)

UDM primitive/simple type String

TagValue #

dictionary-only type

Descriptive name for a tag value.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 100
Used By (1)
  • ReportingTag.TagValue (optional)

UDM primitive/simple type Boolean

TeacherStudentDataLinkExclusion #

dictionary-only type

Indicates that the entire section is excluded from calculation of value-added or growth attribution calculations used for a particular teacher evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffSectionAssociation.TeacherStudentDataLinkExclusion (optional)

UDM primitive/simple type Boolean

TeacherStudentDataLinkExclusion #

dictionary-only type

Indicates that the student-section combination is excluded from calculation of value-added or growth attribution calculations used for a particular teacher evaluation.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSectionAssociation.TeacherStudentDataLinkExclusion (optional)

Descriptor catalog Descriptor

TeachingCredential #

/ed-fi/descriptors/teachingCredentialDescriptors

This descriptor defines an indication of the category of a legal document giving authorization to perform teaching assignment services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.TeachingCredentialDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (15 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TeachingCredentialDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Emergency Emergency Emergency uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Intern Intern Intern uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master Master Master uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nonrenewable Nonrenewable Nonrenewable uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Paraprofessional Paraprofessional Paraprofessional uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Probationary/Initial Probationary/Initial Probationary/Initial uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Professional Professional Professional uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Provisional Provisional Provisional uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Regular/Standard Regular/Standard Regular/Standard uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Retired Retired Retired uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Specialist Specialist Specialist uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Substitute Substitute Substitute uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teacher Assistant Teacher Assistant Teacher Assistant uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Temporary Temporary Temporary uri://ed-fi.org/TeachingCredentialDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Credential.TeachingCredential (optional)

Descriptor catalog Descriptor

TeachingCredentialBasis #

/ed-fi/descriptors/teachingCredentialBasisDescriptors

An indication of the pre-determined criteria for granting the teaching credential that an individual holds.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Credential, Staff
Source
UDM Handbook entry
Physical SQL snippets
edfi.TeachingCredentialBasisDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TeachingCredentialBasisDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
4-year bachelor's degree 4-year bachelor's degree 4-year bachelor's degree uri://ed-fi.org/TeachingCredentialBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
5-year bachelor's degree 5-year bachelor's degree 5-year bachelor's degree uri://ed-fi.org/TeachingCredentialBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Doctoral degree Doctoral degree Doctoral degree uri://ed-fi.org/TeachingCredentialBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Master's degree Master's degree Master's degree uri://ed-fi.org/TeachingCredentialBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Met state testing requirement Met state testing requirement Met state testing requirement uri://ed-fi.org/TeachingCredentialBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reciprocation with another state Credentials based on reciprocation with another state Credentials based on reciprocation with another state uri://ed-fi.org/TeachingCredentialBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Relevant experience Relevant experience Relevant experience uri://ed-fi.org/TeachingCredentialBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special/alternative program completion Special/alternative program completion Special/alternative program completion uri://ed-fi.org/TeachingCredentialBasisDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Credential.TeachingCredentialBasis (optional)

Descriptor catalog Descriptor

TechnicalSkillsAssessment #

/ed-fi/descriptors/technicalSkillsAssessmentDescriptors

This descriptor defines the results of technical skills assessment aligned with industry recognized standards.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.TechnicalSkillsAssessmentDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TechnicalSkillsAssessmentDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Did Not Take Did Not Take Did Not Take uri://ed-fi.org/TechnicalSkillsAssessmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Passed Not Passed Not Passed uri://ed-fi.org/TechnicalSkillsAssessmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Passed Passed Passed uri://ed-fi.org/TechnicalSkillsAssessmentDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentCTEProgramAssociation.TechnicalSkillsAssessment (optional)

UDM common/composite Composite Part

Telephone #

dictionary-only type

The 10-digit telephone number, including the area code, of an individual or organization.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (5)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
TelephoneNumber
TelephoneNumber
String
VARCHAR(24)
required
identity
ODS/API identity
The telephone number including the area code, and extension, if applicable. max length 24 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
TelephoneNumberType
TelephoneNumberTypeDescriptor
Reference
DescriptorProperty
Allowed values: TelephoneNumberTypeDescriptor (8 Ed-Fi seed values)
required
identity
ODS/API identity
The type of communication number listed for an individual or organization. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
OrderOfPriority
OrderOfPriority
Number
INT
optional The order of priority assigned to telephone numbers to define which number to attempt first, second, etc. integer range -2,147,483,648 to 2,147,483,647; optional Ed-Fi field source pass-through
TextMessageCapabilityIndicator
TextMessageCapabilityIndicator
Boolean
BOOLEAN
optional An indication that the telephone number is technically capable of sending and receiving Short Message Service (SMS) text messages. boolean true/false; optional Ed-Fi field source pass-through
DoNotPublishIndicator
DoNotPublishIndicator
Boolean
BOOLEAN
optional An indication that the telephone number should not be published. boolean true/false; optional Ed-Fi field source pass-through
Used By (6)
  • ApplicantProfile.Telephone (optional collection)
  • Candidate.Telephone (optional collection)
  • Contact.Telephone (optional collection)
  • RecruitmentEventAttendance.Telephone (optional collection)
  • StaffDirectory.Telephone (optional collection)
  • StudentDirectory.Telephone (optional collection)

UDM primitive/simple type String

TelephoneNumber #

dictionary-only type

The telephone number including the area code, and extension, if applicable.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 24
Used By (2)
  • InstitutionTelephone.TelephoneNumber (required)
  • Telephone.TelephoneNumber (required)

Descriptor catalog Descriptor

TelephoneNumberType #

/ed-fi/descriptors/telephoneNumberTypeDescriptors

The type of communication number listed for an individual.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Educator Preparation Program, Enrollment, Recruiting and Staffing, Staff, Student Identification And Demographics, Survey
Source
UDM Handbook entry
Physical SQL snippets
edfi.TelephoneNumberTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (8 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TelephoneNumberTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Emergency 1 Emergency 1 Emergency 1 uri://ed-fi.org/TelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Emergency 2 Emergency 2 Emergency 2 uri://ed-fi.org/TelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fax Fax Fax uri://ed-fi.org/TelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Home Home Home uri://ed-fi.org/TelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mobile Mobile Mobile uri://ed-fi.org/TelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/TelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unlisted Unlisted Unlisted uri://ed-fi.org/TelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Work Work Work uri://ed-fi.org/TelephoneNumberTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Telephone.TelephoneNumberType (required)

UDM primitive/simple type Boolean

Tenured #

dictionary-only type

Indicator of whether the staff member is tenured.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffEducationOrganizationEmploymentAssociation.Tenured (optional)

UDM primitive/simple type Boolean

TenureTrack #

dictionary-only type

An indication that the staff is on track for tenure.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StaffEducationOrganizationEmploymentAssociation.TenureTrack (optional)

Descriptor catalog Descriptor

Term #

/ed-fi/descriptors/termDescriptors

A distinct period of time into which the academic year is divided. These could be โ€œsemestersโ€, โ€œtrimestersโ€ or โ€œquartersโ€, depending on the school or districtโ€™s academic calendar.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Bell Schedule, Educator Preparation Program, Enrollment, Graduation, Performance Evaluation, Recruiting and Staffing, School Calendar, Staff, Student Academic Record, Student Attendance, Student Identification And Demographics, Survey, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.TermDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (16 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TermDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Fall Semester Fall Semester Fall Semester uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First Quarter First Quarter First Quarter uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
First Trimester First Trimester First Trimester uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fourth Quarter Fourth Quarter Fourth Quarter uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
MiniTerm MiniTerm MiniTerm uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quarter Quarter Quarter uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second Quarter Second Quarter Second Quarter uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Second Trimester Second Trimester Second Trimester uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Semester Semester Semester uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Spring Semester Spring Semester Spring Semester uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Summer Semester Summer Semester Summer Semester uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Third Quarter Third Quarter Third Quarter uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Third Trimester Third Trimester Third Trimester uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Trimester Trimester Trimester uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Year Round Year Round Year Round uri://ed-fi.org/TermDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (7)
  • CohortYear.Term (optional)
  • Application.Term (optional collection)
  • ApplicationEvent.Term (optional)
  • OpenStaffPosition.Term (optional)
  • PerformanceEvaluation.Term (required)
  • Session.Term (required)
  • StudentAcademicRecord.Term (required)

UDM primitive/simple type Boolean

TermCompletionIndicator #

dictionary-only type

Indicates whether or not a student completed the most recent school term.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSchoolAssociation.TermCompletionIndicator (optional)

UDM primitive/simple type Boolean

TextMessageCapabilityIndicator #

dictionary-only type

An indication that the telephone number is technically capable of sending and receiving Short Message Service (SMS) text messages.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Telephone.TextMessageCapabilityIndicator (optional)

UDM primitive/simple type String

TextResponse #

dictionary-only type

The text response(s) for the question.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 2048
Used By (4)
  • SurveyQuestionMatrixElementResponse.TextResponse (optional)
  • SurveyQuestionResponseValue.TextResponse (optional)
  • IDEAEvent.EventNarrative (optional)
  • StudentIEPGoal.IEPGoalDetails (required)

UDM primitive/simple type String

TextValue #

dictionary-only type

For radio buttons, checkboxes, dropdowns, matrix of drop downs - the list of choices.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 255
Used By (1)
  • ResponseChoice.TextValue (optional)

UDM primitive/simple type Time

TimeFulfilled #

dictionary-only type

The time an assignment was turned in on the date fulfilled.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentGradebookEntry.TimeFulfilled (optional)

UDM primitive/simple type TimeInterval

TimeInterval #

dictionary-only type

A period of time with fixed, well-defined limits.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (3)
  • LearningResource.TimeRequired (optional)
  • StudentAssessmentItem.TimeAssessed (optional)
  • AssessmentItem.ExpectedTimeAssessed (optional)

UDM primitive/simple type String

Title #

dictionary-only type

The name or title of the activity to be recorded in the gradebook entry.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 100

Descriptor catalog Descriptor

TitleIPartAParticipant #

/ed-fi/descriptors/titleIPartAParticipantDescriptors

An indication of the type of Title I program, if any, in which the student is participating and served.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.TitleIPartAParticipantDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TitleIPartAParticipantDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Local Neglected Program DEPRECATED: Local Neglected Program DEPRECATED: Local Neglected Program uri://ed-fi.org/TitleIPartAParticipantDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Private school students participating Private school students participating Private school students participating uri://ed-fi.org/TitleIPartAParticipantDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Public Schoolwide Program Public Schoolwide Program Public Schoolwide Program uri://ed-fi.org/TitleIPartAParticipantDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Public Targeted Assistance Program Public Targeted Assistance Program Public Targeted Assistance Program uri://ed-fi.org/TitleIPartAParticipantDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Was not served Was not served Was not served uri://ed-fi.org/TitleIPartAParticipantDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentTitleIPartAProgramAssociation.TitleIPartAParticipant (required)

UDM common/composite Composite Part

TitleIPartAProgramService #

dictionary-only type

The student's Title I Part A program service information.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (4)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
TitleIPartAProgramService
TitleIPartAProgramServiceDescriptor
Reference
DescriptorProperty
Allowed values: TitleIPartAProgramServiceDescriptor (9 Ed-Fi seed values)
required
identity
ODS/API identity
Indicates the service being provided to the student by the Title I Part A Program. object reference; required; identity component; ODS/API identity component; value must resolve through governed descriptor registry Ed-Fi field source pass-through
PrimaryIndicator
PrimaryIndicator
Boolean
BOOLEAN
optional True if service is a primary service. boolean true/false; optional Ed-Fi field source pass-through
ServiceBeginDate
ServiceBeginDate
Date
DATE
optional First date the Student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
ServiceEndDate
ServiceEndDate
Date
DATE
optional Last date the Student was in this option for the current school year. Note: Date interpretation may vary. Ed-Fi recommends inclusive dates, but states may define dates as inclusive or exclusive. For calculations, align with local guidelines. calendar date in ISO 8601 full-date form; optional Ed-Fi field source pass-through
Used By (1)
  • StudentTitleIPartAProgramAssociation.TitleIPartAProgramService (optional collection)

Descriptor catalog Descriptor

TitleIPartAProgramService #

/ed-fi/descriptors/titleIPartAProgramServiceDescriptors

This descriptor defines the services provided by an education organization to populations of students associated with a Title I Part A program.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services
Source
UDM Handbook entry
Physical SQL snippets
edfi.TitleIPartAProgramServiceDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (9 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TitleIPartAProgramServiceDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
CTE Instructional Services Career and Technical Education Instructional Services Career and Technical Education Instructional Services uri://ed-fi.org/TitleIPartAProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Health, Dental, and Eye Care Support Services Health, Dental, and Eye Care Support Services Health, Dental, and Eye Care Support Services uri://ed-fi.org/TitleIPartAProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mathematics Instructional Services Mathematics Instructional Services Mathematics Instructional Services uri://ed-fi.org/TitleIPartAProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Instructional Services Other Instructional Services Other Instructional Services uri://ed-fi.org/TitleIPartAProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Support Services Other Support Services Other Support Services uri://ed-fi.org/TitleIPartAProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reading/Language Instructional Services Reading/Language Instructional Services Reading/Language Instructional Services uri://ed-fi.org/TitleIPartAProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Science Instructional Services Science Instructional Services Science Instructional Services uri://ed-fi.org/TitleIPartAProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Social Studies Instructional Services Social Studies Instructional Services Social Studies Instructional Services uri://ed-fi.org/TitleIPartAProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Supporting Guidance/Advocacy Support Services Supporting Guidance/Advocacy Support Services Supporting Guidance/Advocacy Support Services uri://ed-fi.org/TitleIPartAProgramServiceDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • TitleIPartAProgramService.TitleIPartAProgramService (required)

Descriptor catalog Descriptor

TitleIPartASchoolDesignation #

/ed-fi/descriptors/titleIPartASchoolDesignationDescriptors

Denotes the Title I Part A designation for the school.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Alternative And Supplemental Services, Bell Schedule, Discipline, Education Organization, Enrollment, Graduation, School Calendar, Special Education, Staff, Student Academic Record, Student Attendance, Teaching And Learning
Source
UDM Handbook entry
Physical SQL snippets
edfi.TitleIPartASchoolDesignationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TitleIPartASchoolDesignationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Missing Missing Missing uri://ed-fi.org/TitleIPartASchoolDesignationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not A Title I School Not A Title I School Not A Title I School uri://ed-fi.org/TitleIPartASchoolDesignationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Title I Schoolwide Eligible School-No Program Title I Schoolwide Eligible School-No Program Title I Schoolwide Eligible School-No Program uri://ed-fi.org/TitleIPartASchoolDesignationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Title I Schoolwide Eligible-Target Assist Program Title I Schoolwide Eligible-Target Assist Program Title I Schoolwide Eligible-Target Assist Program uri://ed-fi.org/TitleIPartASchoolDesignationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Title I Schoolwide School Title I Schoolwide School Title I Schoolwide School uri://ed-fi.org/TitleIPartASchoolDesignationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Title I Targeted Assistance Eligible-No Program Title I Targeted Assistance Eligible-No Program Title I Targeted Assistance Eligible-No Program uri://ed-fi.org/TitleIPartASchoolDesignationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Title I Targeted Assistance School Title I Targeted Assistance School Title I Targeted Assistance School uri://ed-fi.org/TitleIPartASchoolDesignationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • School.TitleIPartASchoolDesignation (optional)

UDM primitive/simple type Number

TotalHours #

dictionary-only type

The number of total hours the professional development contains.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM primitive/simple type Number

TotalInstructionalDays #

dictionary-only type

Total days available for educational instruction during the grading period.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min value: 0
Used By (3)
  • AcademicWeek.TotalInstructionalDays (required)
  • GradingPeriod.TotalInstructionalDays (required)
  • Session.TotalInstructionalDays (required)

UDM primitive/simple type Number

TotalInstructionalTime #

dictionary-only type

The total instructional time in minutes.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • BellSchedule.TotalInstructionalTime (optional)

UDM primitive/simple type Number

TotalNumberInClass #

dictionary-only type

The total number of students in the student's graduating class.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.

UDM common/composite Composite Part

Touchpoint #

dictionary-only type

Content associated with different touchpoints with the prospect.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (2)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
TouchpointContent
TouchpointContent
String
VARCHAR(255)
required
identity
ODS/API identity
The content associated with or an artifact from the touchpoint. max length 255 characters; required; identity component; ODS/API identity component Ed-Fi field source pass-through
TouchpointDate
TouchpointDate
Date
DATE
required
identity
ODS/API identity
The date of the touchpoint. calendar date in ISO 8601 full-date form; required; identity component; ODS/API identity component Ed-Fi field source pass-through
Used By (1)
  • RecruitmentEventAttendance.Touchpoint (optional collection)

UDM primitive/simple type String

TouchpointContent #

dictionary-only type

The content associated with or an artifact from the touchpoint.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 0
  • max length: 255
Used By (1)
  • Touchpoint.TouchpointContent (required)

UDM primitive/simple type Date

TouchpointDate #

dictionary-only type

The date of the touchpoint.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Touchpoint.TouchpointDate (identity)

UDM primitive/simple type Date

TransitionConferenceDate #

dictionary-only type

Indicates the month, day, and year when the transition conference was held (for a child receiving early childhood intervention (ECI) services) among the lead agency, the family, and the local education agency (LEA) where the child resides to discuss the child's potential eligibility for early childhood special education (ECSE) services.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.TransitionConferenceDate (optional)

UDM primitive/simple type Date

TransitionNotificationDate #

dictionary-only type

Indicates the month, day, and year the LEA Notification of Potentially Eligible for Special Education Services was sent by the early childhood intervention (ECI) contractor to the local education agency (LEA) to notify them that a child enrolled in ECI will shortly reach the age of eligibility for Part B services and the child is potentially eligible for services under Part B, early childhood special education (ECSE). The LEA Notification constitutes a referral to the LEA for an initial evaluation and eligibility determination of the child which the parent or guardian may opt out from the referral.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentSpecialEducationProgramEligibilityAssociation.TransitionNotificationDate (optional)

Descriptor catalog Descriptor

TransportationPublicExpenseEligibilityType #

/ed-fi/descriptors/transportationPublicExpenseEligibilityTypeDescriptors

The primary type of eligibility for transporting a student at public expense.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.TransportationPublicExpenseEligibilityTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (11 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TransportationPublicExpenseEligibilityTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Eligible - CTE Eligible because of CTE participation Student is eligible for transportation at public expense because of their participation in a CTE program. uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible - Desegregation Eligible because of desegregation Student is eligible for transportation at public expense because of a locally initiated or court mandated program for achieving racial or cultural integration or for ending previous segregation. uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible - Disability Eligible because of disability Student is eligible for transportation at public expense because of the their disability and IEP. uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible - Distance Eligible because of distance Student is eligible for transportation at public expense because of the distance between school and transportation address. uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible - Health Impaired Eigible because of health impairement Student is eligible for transportation at public expense because of the health impairement that doesn't make the student eligible for IEP uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible - Homelessness Eligible because of homeless status Student is eligible for transportation at public expense because of being homeless as defined by the McKinney-Vento Act. uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible - Other Eligible for other reason Student is eligible for transportation at public expense because of the other reasons not listed. uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible - Shelter Care Eligible from shelter care facility Student is eligible for transportation at public expense because of their short or long term stay at a shelter care that is not covered by the McKinney-Vento Act. uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible - Special Instruction Eligible because of special instruction Student is eligible for transportation at public expense because of the special instruction not due to a disability. uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eligible - Unsafe Walk Eligible because of hazardous conditions Student is eligible for transportation at public expense because of the hazardous conditions that makes the walk between the school and the transportation address unsafe for the student. uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Eligible Not Eligible Student is not eligeble for transporation at public expense. uri://ed-fi.org/TransportationPublicExpenseEligibilityTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentTransportation.TransportationPublicExpenseEligibilityType (optional)

Descriptor catalog Descriptor

TransportationType #

/ed-fi/descriptors/transportationTypeDescriptors

The mode or type of transportation utilized by a student to commute to and from school

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.TransportationTypeDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TransportationTypeDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
General Public Transportation General Public Transportation General Public Transportation uri://ed-fi.org/TransportationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Responsible for own transportation Responsible for own transportation Responsible for own transportation uri://ed-fi.org/TransportationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Bus School Bus School Bus uri://ed-fi.org/TransportationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
School Van or SUV School Van or SUV School Van or SUV uri://ed-fi.org/TransportationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Special Needs Bus Special Needs Bus Special Needs Bus uri://ed-fi.org/TransportationTypeDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentTransportation.TransportationType (optional)

Descriptor catalog Descriptor

TravelDayofWeek #

/ed-fi/descriptors/travelDayofWeekDescriptors

Specifies the day(s) of the week on which student transportation occurs.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.TravelDayofWeekDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TravelDayofWeekDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Friday Friday Friday uri://ed-fi.org/TravelDayofWeekDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Monday Monday Monday uri://ed-fi.org/TravelDayofWeekDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Saturday Saturday Saturday uri://ed-fi.org/TravelDayofWeekDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sunday Sunday Sunday uri://ed-fi.org/TravelDayofWeekDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Thursday Thursday Thursday uri://ed-fi.org/TravelDayofWeekDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tuesday Tuesday Tuesday uri://ed-fi.org/TravelDayofWeekDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wednesday Wednesday Wednesday uri://ed-fi.org/TravelDayofWeekDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentBusDetails.TravelDayofWeek (optional collection)

Descriptor catalog Descriptor

TravelDirection #

/ed-fi/descriptors/travelDirectionDescriptors

Indicates the direction of travel for the student transportation route (e.g., to school, from school).

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Enrollment
Source
UDM Handbook entry
Physical SQL snippets
edfi.TravelDirectionDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (3 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TravelDirectionDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
From School From School From School uri://ed-fi.org/TravelDirectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
To and From School To and From School To and From School uri://ed-fi.org/TravelDirectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
To School To School To School uri://ed-fi.org/TravelDirectionDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • StudentBusDetails.TravelDirection (optional collection)

Descriptor catalog Descriptor

TribalAffiliation #

/ed-fi/descriptors/tribalAffiliationDescriptors

An American Indian tribe with which an individual is affiliated.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Enrollment, Staff, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.TribalAffiliationDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (620 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for TribalAffiliationDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Absentee-Shawnee Absentee-Shawnee Absentee-Shawnee Tribe of Indians of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Afognak Afognak Native Village of Afognak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Agdaagux Agdaagux Agdaagux Tribe of King Cove uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Agua Caliente Agua Caliente Agua Caliente Band of Cahuilla Indians of the Agua Caliente Indian Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ak Chin Ak Chin Ak-Chin Indian Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Akhiok Akhiok Native Village of Akhiok uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Akiachak Akiachak Akiachak Native Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Akiak Akiak Akiak Native Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Akutan Akutan Native Village of Akutan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alabama-Coushatta Alabama-Coushatta Alabama-Coushatta Tribe of Texas uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alabama-Quassarte Alabama-Quassarte Alabama-Quassarte Tribal Town uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alakanuk Alakanuk Village of Alakanuk uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alatna Alatna Alatna Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Aleknagik Aleknagik Native Village of Aleknagik uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Algaaciq Algaaciq Algaaciq Native Village (St. Mary's) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Allakaket Allakaket Allakaket Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alturas Alturas Alturas Indian Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Alutiiq Tribe of Old Harbor Alutiiq Tribe of Old Harbor Alutiiq Tribe of Old Harbor uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ambler Ambler Native Village of Ambler uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Anaktuvuk Pass Anaktuvuk Pass Village of Anaktuvuk Pass uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Andreafski Andreafski Yupiit of Andreafski uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Angoon Angoon Angoon Community Association uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Aniak Aniak Village of Aniak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Anvik Anvik Anvik Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Apache Apache Apache Tribe of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Arctic Slope DEPRECATED: Arctic Slope DEPRECATED: Inupiat Community of the Arctic Slope uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Arctic Village Arctic Village Arctic Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Aroostok DEPRECATED: Aroostok DEPRECATED: Aroostook Band of Micmacs uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Asa'carsarmiut Asa'carsarmiut Asa'carsarmiut Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Assiniboine and Gros Ventre Tribes Assiniboine and Gros Ventre Tribes Fort Belknap Indian Community of the Fort Belknap Reservation of Montana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Assiniboine and Sioux Assiniboine and Sioux Assiniboine & Sioux Tribes of the Fort Peck Indian Reservation, Montana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Atka Atka Native Village of Atka uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Atmautluak Atmautluak Village of Atmautluak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Atqasuk DEPRECATED: Atqasuk DEPRECATED: Atqasuk Village (Atkasook) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Augustine Augustine Augustine Band of Cahuilla Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bad River Band Bad River Band Bad River Band of the Lake Superior Tribe of Chippewa Indians of the Bad River Reservation, Wisconsin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Barrow Barrow Native Village of Barrow Inupiat Traditional Government uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bay Mills Bay Mills Bay Mills Indian Community, Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bear River Bear River Bear River Band of the Rohnerville Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Beaver Beaver Beaver Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Belkofski Belkofski Native Village of Belkofski uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Benton Benton Utu Utu Gwaitu Paiute Tribe of the Benton Paiute Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Berry Creek Berry Creek Berry Creek Rancheria of Maidu Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Big Lagoon Big Lagoon Big Lagoon Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Big Pine Big Pine Big Pine Paiute Tribe of the Owens Valley uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Big Sandy Big Sandy Big Sandy Rancheria of Western Mono Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Big Valley Rancheria Big Valley Rancheria Big Valley Band of Pomo Indians of the Big Valley Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bill Moore's Slough Bill Moore's Slough Village of Bill Moore's Slough uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Birch Creek Birch Creek Birch Creek Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bishop Paiute Bishop Paiute Bishop Paiute Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Blackfeet Blackfeet Blackfeet Tribe of the Blackfeet Indian Reservation of Montana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Blue Lake Blue Lake Blue Lake Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bois Forte Bois Forte Minnesota Chippewa Tribe - Bois Forte Band (Nett Lake) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Brevig Mission Brevig Mission Native Village of Brevig Mission uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Bridgeport Indian Colony Bridgeport Indian Colony Bridgeport Indian Colony uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Buckland Buckland Native Village of Buckland uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Buena Vista Rancheria Buena Vista Rancheria Buena Vista Rancheria of Me-Wuk Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Burns Paiute Burns Paiute Burns Paiute Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cabazon Cabazon Cabazon Band of Mission Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cachil DeHe Cachil DeHe Cachil DeHe Band of Wintun Indians of the Colusa Indian Community of the Colusa Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Caddo Caddo Caddo Nation of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cahto Cahto Cahto Tribe of the Laytonville Rancheria uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cahuilla Cahuilla Cahuilla Band of Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
California Valley California Valley California Valley Miwok Tribe, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Campo Campo Campo Band of Diegueno Mission Indians of the Campo Indian Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cantwell Cantwell Native Village of Cantwell uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Capitan Grande Capitan Grande Capitan Grande Band of Diegueno Mission Indians of California (Barona Group of Capitan Grande Band of Mission Indians of the Barona Reservation, California) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Capitan Grande Band Capitan Grande Band Capitan Grande Band of Diegueno Mission Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Catawba Catawba Catawba Indian Nation (aka Catawba Indian Tribe of South Carolina) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cayuga Nation of New York Cayuga Nation of New York Cayuga Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cedarville Cedarville Cedarville Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chalkyitsik Chalkyitsik Chalkyitsik Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cheesh-Na Cheesh-Na Cheesh-Na Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chefornak Chefornak Village of Chefornak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chehalis Chehalis Confederated Tribes of the Chehalis Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chemehuevi Chemehuevi Chemehuevi Indian Tribe of the Chemehuevi Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chenega Chenega Native Village of Chenega (aka Chanega) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cher-Ae Heights Cher-Ae Heights Cher-Ae Heights Indian Community of the Trinidad Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cherokee Cherokee Cherokee Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chevak Chevak Chevak Native Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cheyenne River Cheyenne River Cheyenne and Arapaho Tribes, Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cheyenne River Sioux Tribe Cheyenne River Sioux Tribe Cheyenne River Sioux Tribe of the Cheyenne River Reservation, South Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cheyenne-Arapaho DEPRECATED: Cheyenne-Arapaho DEPRECATED: Cheyenne River Sioux Tribe of the Cheyenne River Reservation, SD uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chickahominy Indian Tribe DEPRECATED: Inc. DEPRECATED: Chickahominy Indian Tribe, Inc. uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chickahominy Indian Tribe, Inc. Chickahominy Indian Tribe, Inc. Chickahominy Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chickahominy Indians-Eastern Division Chickahominy Indians-Eastern Division Chickahominy Indian Tribe - Eastern Division uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chickaloon Chickaloon Chickaloon Native Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chickasaw Chickasaw The Chickasaw Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chicken Ranch Chicken Ranch Chicken Ranch Rancheria of Me-Wuk Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chignik Bay Chignik Bay Chignik Bay Tribal Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chignik Lagoon Chignik Lagoon Native Village of Chignik Lagoon uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chignik Lake Chignik Lake Chignik Lake Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chilkat Chilkat Chilkat Indian Village (Klukwan) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chilkoot Chilkoot Chilkoot Indian Association (Haines) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chinik Chinik Chinik Eskimo Community (Golovin) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chippewa-Cree Chippewa-Cree Chippewa Cree Indians of the Rocky Boy's Reservation, Montana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chitimacha Chitimacha Chitimacha Tribe of Louisiana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chitina Chitina Native Village of Chitina uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Choctaw Choctaw The Choctaw Nation of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chuathbaluk Chuathbaluk Native Village of Chuathbaluk (Russian Mission, Kuskokwim) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Chuloonawick Chuloonawick Chuloonawick Native Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Circle Circle Circle Native Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Citizen Potawatomi Citizen Potawatomi Citizen Potawatomi Nation, Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Clark's Point Clark's Point Village of Clarks Point uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cloverdale Cloverdale Cloverdale Rancheria of Pomo Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cocopah Cocopah Cocopah Tribe of Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Coeur D'Alene Coeur D'Alene Coeur D'Alene Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cold Springs Cold Springs Cold Springs Rancheria of Mono Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Colorado River Colorado River Colorado River Indian Tribes of the Colorado River Indian Reservation, Arizona and California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Comanche Comanche Comanche Nation, Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Confederated Colville Confederated Colville Confederated Tribes of the Colville Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Confederated Coos Confederated Coos Confederated Tribes of the Coos, Lower Umpqua and Siuslaw Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Confederated Goshute Confederated Goshute Confederated Tribes of the Goshute Reservation, Nevada and Utah uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Confederated Salish Confederated Salish Confederated Salish and Kootenai Tribes of the Flathead Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Confederated Yakama Confederated Yakama Confederated Tribes and Bands of the Yakama Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Coquille Coquille Coquille Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cortina Cortina Kletsel Dehe Band of Wintun Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Council Council Native Village of Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Coushatta Coushatta Coushatta Tribe of Louisiana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cow Creek Cow Creek Cow Creek Band of Umpqua Tribe of Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Cowlitz Cowlitz Cowlitz Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Coyote Valley Coyote Valley Coyote Valley Band of Pomo Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Craig Craig Craig Tribal Association uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Crooked Creek Crooked Creek Village of Crooked Creek uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Crow Crow Crow Tribe of Montana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Crow Creek Crow Creek Crow Creek Sioux Tribe of the Crow Creek Reservation, South Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Curyung Curyung Curyung Tribal Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Deering Deering Native Village of Deering uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Delaware Nation Delaware Nation Delaware Nation, Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Delaware Tribe Delaware Tribe Delaware Tribe of Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Diomede Diomede Native Village of Diomede (aka Inalik) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dot Lake Dot Lake Village of Dot Lake uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Douglas Douglas Douglas Indian Association uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dry Creek Dry Creek Dry Creek Rancheria Band of Pomo Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Duckwater Duckwater Duckwater Shoshone Tribe of the Duckwater Reservation, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eagle Eagle Native Village of Eagle uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eastern Cherokee Eastern Cherokee Eastern Band of Cherokee Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eastern Shawnee Eastern Shawnee Eastern Shawnee Tribe of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eastern Shoshone Eastern Shoshone Eastern Shoshone Tribe of the Wind River Reservation, Wyoming uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eek Eek Native Village of Eek uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Egegik Egegik Egegik Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eklutna Eklutna Eklutna Native Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ekuk Ekuk Native Village of Ekuk uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ekwok Ekwok Native Village of Ekwok uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Elem Elem Elem Indian Colony of Pomo Indians of the Sulphur Bank Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Elim IRA Elim IRA Native Village of Elim uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Elk Valley Elk Valley Elk Valley Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ely Shoshone Ely Shoshone Ely Shoshone Tribe of Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Emmonak Emmonak Emmonak Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Enterprise Enterprise Enterprise Rancheria of Maidu Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Evansville Evansville Evansville Village (aka Bettles Field) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ewiiaapaayp Ewiiaapaayp Ewiiaapaayp Band of Kumeyaay Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Eyak Eyak Native Village of Eyak (Cordova) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
False Pass False Pass Native Village of False Pass uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Federated Indians of Graton Federated Indians of Graton Federated Indians of Graton Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Flandreau Flandreau Flandreau Santee Sioux Tribe of South Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fond du Lac Fond du Lac Minnesota Chippewa Tribe - Fond du Lac Band uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Forest County Forest County Forest County Potawatomi Community, Wisconsin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fort Bidwell Fort Bidwell Fort Bidwell Indian Community of the Fort Bidwell Reservation of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fort Independence Fort Independence Fort Independence Indian Community of Paiute Indians of the Fort Independence Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fort McDermitt Fort McDermitt Fort McDermitt Paiute and Shoshone Tribes of the Fort McDermitt Indian Reservation, Nevada and Oregon uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fort McDowell Fort McDowell Fort McDowell Yavapai Nation, Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fort Mojave Fort Mojave Fort Mojave Indian Tribe of Arizona, California & Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fort Sill Fort Sill Fort Sill Apache Tribe of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Fort Yukon Fort Yukon Native Village of Fort Yukon uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Gakona Gakona Native Village of Gakona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Galena Galena Galena Village (aka Louden Village) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Gambell Gambell Native Village of Gambell uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Georgetown Georgetown Native Village of Georgetown uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Gila River Gila River Gila River Indian Community of the Gila River Indian Reservation, Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Goodnews Bay Goodnews Bay Native Village of Goodnews Bay uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grand Portage Grand Portage Minnesota Chippewa Tribe - Grand Portage Band uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grand Ronde Tribes Grand Ronde Tribes Confederated Tribes of the Grand Ronde Community of Oregon uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grand Traverse Grand Traverse Grand Traverse Band of Ottawa and Chippewa Indians, Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grayling Grayling Organized Village of Grayling (aka Holikachuk) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Greenville Greenville Greenville Rancheria uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Grindstone Grindstone Grindstone Indian Rancheria of Wintun-Wailaki Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Guidiville Guidiville Guidiville Rancheria of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Gulkana Gulkana Gulkana Village Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Habematolel Habematolel Habematolel Pomo of Upper Lake, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hamilton Hamilton Native Village of Hamilton uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hannahville Hannahville Hannahville Indian Community, Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Havasupai Havasupai Havasupai Tribe of the Havasupai Reservation, Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Healy Lake Healy Lake Healy Lake Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ho-Chunk Ho-Chunk Ho-Chunk Nation of Wisconsin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hoh Hoh Hoh Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Holy Cross Holy Cross Holy Cross Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hoonah Hoonah Hoonah Indian Association uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hoopa Hoopa Hoopa Valley Tribe, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hooper Bay Hooper Bay Native Village of Hooper Bay uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hopi Hopi Hopi Tribe of Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hopland Hopland Hopland Band of Pomo Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Houlton Houlton Houlton Band of Maliseet Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hualapai Hualapai Hualapai Indian Tribe of the Hualapai Indian Reservation, Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hughes Hughes Hughes Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Huslia Huslia Huslia Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hydaburg Hydaburg Hydaburg Cooperative Association uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Igiugig Igiugig Igiugig Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Iipay Iipay Iipay Nation of Santa Ysabel, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Iliamna Iliamna Village of Iliamna uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Inaja Inaja Inaja Band of Diegueno Mission Indians of the Inaja and Cosmit Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Inupiat Community of the Arctic Slope Inupiat Community of the Arctic Slope Inupiat Community of the Arctic Slope uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ione Ione Ione Band of Miwok Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Iowa of Kansas Iowa of Kansas Iowa Tribe of Kansas and Nebraska uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Iowa of Oklahoma Iowa of Oklahoma Iowa Tribe of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Iqugmiut Iqugmiut Iqugmiut Traditional Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Iqurmuit DEPRECATED: Iqurmuit DEPRECATED: Iqurmuit Traditional Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ivanof Bay Tribe Ivanof Bay Tribe Ivanof Bay Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Jackson Jackson Jackson Band of Miwuk Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Jamestown Jamestown Jamestown S'Klallam Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Jamul Jamul Jamul Indian Village of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Jena Jena Jena Band of Choctaw Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Jicarilla Jicarilla Jicarilla Apache Nation, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kaguyuk Kaguyuk Kaguyak Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kaibab Kaibab Kaibab Band of Paiute Indians of the Kaibab Indian Reservation, Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kake Kake Organized Village of Kake uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kaktovik Kaktovik Kaktovik Village (aka Barter Island) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kalispel Kalispel Kalispel Indian Community of the Kalispel Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kalskag Kalskag Village of Kalskag uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kaltag Kaltag Village of Kaltag uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kanatak Kanatak Native Village of Kanatak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Karluk Karluk Native Village of Karluk uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Karuk Karuk Karuk Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kasaan Kasaan Organized Village of Kasaan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kashia Kashia Kashia Band of Pomo Indians of the Stewarts Point Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kasigluk Kasigluk Kasigluk Traditional Elders Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kaw Kaw Kaw Nation, Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kenaitze Kenaitze Kenaitze Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ketchikan Ketchikan Ketchikan Indian Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kewa Pueblo DEPRECATED: Kewa Pueblo DEPRECATED: Kewa Pueblo uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Keweenaw Keweenaw Keweenaw Bay Indian Community, Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kialegee Kialegee Kialegee Tribal Town uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kiana Kiana Native Village of Kiana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kickapoo of Kansas Kickapoo of Kansas Kickapoo Tribe of Indians of the Kickapoo Reservation in Kansas uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kickapoo of Oklahoma Kickapoo of Oklahoma Kickapoo Tribe of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kickapoo of Texas Kickapoo of Texas Kickapoo Traditional Tribe of Texas uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
King Island King Island King Island Native Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
King Salmon King Salmon King Salmon Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kiowa Kiowa Kiowa Indian Tribe of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kipnuk Kipnuk Native Village of Kipnuk uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kivalina Kivalina Native Village of Kivalina uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Klamath Klamath Klamath Tribes uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Klawock Klawock Klawock Cooperative Association uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kluti Kaah Kluti Kaah Native Village of Kluti Kaah (aka Copper Center) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kluti-Kaah DEPRECATED: Kluti-Kaah DEPRECATED: Native Village of Kluti-Kaah (aka Copper Center) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Knik Knik Knik Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kobuk Kobuk Native Village of Kobuk uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Koi Koi Koi Nation of Northern California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kokhanok Kokhanok Kokhanok Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kongiganak Kongiganak Native Village of Kongiganak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kootenai Kootenai Kootenai Tribe of Idaho uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kotlik Kotlik Village of Kotlik uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kotzebue Kotzebue Native Village of Kotzebue uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Koyuk Koyuk Native Village of Koyuk uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Koyukuk Koyukuk Koyukuk Native Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kwethluk Kwethluk Organized Village of Kwethluk uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kwigillingok Kwigillingok Native Village of Kwigillingok uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Kwinhagak Kwinhagak Native Village of Kwinhagak (aka Quinhagak) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
La Jolla La Jolla La Jolla Band of Luiseno Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
La Posta La Posta La Posta Band of Diegueno Mission Indians of the La Posta Indian Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lac Courte Oreilles Lac Courte Oreilles Lac Courte Oreilles Band of Lake Superior Chippewa Indians of Wisconsin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lac du Flambeau Lac du Flambeau Lac du Flambeau Band of Lake Superior Chippewa Indians of the Lac du Flambeau Reservation of Wisconsin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lac Vieux Lac Vieux Lac Vieux Desert Band of Lake Superior Chippewa Indians of Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Larsen Bay Larsen Bay Native Village of Larsen Bay uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Las Vegas Las Vegas Las Vegas Tribe of Paiute Indians of the Las Vegas Indian Colony, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Leech Lake Leech Lake Minnesota Chippewa Tribe - Leech Lake Band uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Levelock Levelock Levelock Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lime Lime Lime Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Little River Little River Little River Band of Ottawa Indians, Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Little Shell Tribe Little Shell Tribe Little Shell Tribe of Chippewa Indians of Montana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Little Traverse Little Traverse Little Traverse Bay Bands of Odawa Indians, Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lone Pine Lone Pine Lone Pine Paiute-Shoshone Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Los Coyotes Los Coyotes Los Coyotes Band of Cahuilla and Cupeno Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lovelock Lovelock Lovelock Paiute Tribe of the Lovelock Indian Colony, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lower Brule Lower Brule Lower Brule Sioux Tribe of the Lower Brule Reservation, South Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lower Elwha Lower Elwha Lower Elwha Tribal Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lower Kalskag Lower Kalskag Village of Lower Kalskag uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lower Sioux Lower Sioux Lower Sioux Indian Community in the State of Minnesota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lummi Lummi Lummi Tribe of the Lummi Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Lytton Lytton Lytton Rancheria of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Makah Makah Makah Indian Tribe of the Makah Indian Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Manchester Manchester Manchester Band of Pomo Indians of the Manchester Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Manley Hot Springs Manley Hot Springs Manley Hot Springs Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Manokotak Manokotak Manokotak Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Manzanita Manzanita Manzanita Band of Diegueno Mission Indians of the Manzanita Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Marshall Marshall Native Village of Marshall (aka Fortuna Ledge) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mary's Igloo Mary's Igloo Native Village of Mary's Igloo uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mashantucket Pequot Mashantucket Pequot Mashantucket Pequot Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mashpee Mashpee Mashpee Wampanoag Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Match-e-be-nash-she-wish Band Match-e-be-nash-she-wish Band Match-e-be-nash-she-wish Band of Pottawatomi Indians of Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mcgrath Mcgrath McGrath Native Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mechoopda Mechoopda Mechoopda Indian Tribe of Chico Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mekoryuk Mekoryuk Native Village of Mekoryuk uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Menominee Menominee Menominee Indian Tribe of Wisconsin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mentasta Mentasta Mentasta Traditional Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mesa Grande Mesa Grande Mesa Grande Band of Diegueno Mission Indians of the Mesa Grande Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mescalero DEPRECATED: Mescalero DEPRECATED: Mescalero Apache Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mescalero Apache Mescalero Apache Mescalero Apache Tribe of the Mescalero Reservation, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Metlakatla Metlakatla Metlakatla Indian Community, Annette Island Reserve uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mi'kmaq Nation Mi'kmaq Nation Mi'kmaq Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Miami of Oklahoma Miami of Oklahoma Miami Tribe of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Miccosukee Miccosukee Miccosukee Tribe of Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Middletown Middletown Middletown Rancheria of Pomo Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mille Lacs Mille Lacs Minnesota Chippewa Tribe - Mille Lacs Band uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minnesota Chippewa Minnesota Chippewa Minnesota Chippewa Tribe, Minnesota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Minto Minto Native Village of Minto uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mississippi Choctaw Mississippi Choctaw Mississippi Band of Choctaw Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Moapa Moapa Moapa Band of Paiute Indians of the Moapa River Indian Reservation, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Modoc Modoc Modoc Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mohegan Mohegan Mohegan Tribe of Indians of Connecticut uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Monacan Indian Nation Monacan Indian Nation Monacan Indian Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Mooretown Mooretown Mooretown Rancheria of Maidu Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Morongo Morongo Morongo Band of Mission Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Muckleshoot Muckleshoot Muckleshoot Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Muscogee DEPRECATED: Muscogee DEPRECATED: The Muscogee (Creek) Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Muscogee (Creek) Nation Muscogee (Creek) Nation The Muscogee (Creek) Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Naknek Naknek Naknek Native Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nansemond Indian Tribe Nansemond Indian Tribe Nansemond Indian Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nanwalek Nanwalek Native Village of Nanwalek (aka English Bay) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Napaimute Napaimute Native Village of Napaimute uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Napakiak Napakiak Native Village of Napakiak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Napaskiak Napaskiak Native Village of Napaskiak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Narragansett Narragansett Narragansett Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Native Village of Atqasuk Native Village of Atqasuk Native Village of Atqasuk uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Navajo Navajo Navajo Nation, Arizona, New Mexico & Utah uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nelson Lagoon Nelson Lagoon Native Village of Nelson Lagoon uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nenana Nenana Nenana Native Association uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
New Koliganek New Koliganek New Koliganek Village Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
New Stuyahok New Stuyahok New Stuyahok Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Newhalen Newhalen Newhalen Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Newtok Newtok Newtok Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nez Perce Nez Perce Nez Perce Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nightmute Nightmute Native Village of Nightmute uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nikolai Nikolai Nikolai Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nikolski Nikolski Native Village of Nikolski uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ninilchik Ninilchik Ninilchik Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nisqually Nisqually Nisqually Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Noatak Noatak Native Village of Noatak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nome Nome Nome Eskimo Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nondalton Nondalton Nondalton Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nooksack Nooksack Nooksack Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Noorvik Noorvik Noorvik Native Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
North Fork North Fork Northfork Rancheria of Mono Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Northern Arapaho Northern Arapaho Northern Arapaho Tribe of the Wind River Reservation, Wyoming uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Northern Cheyenne Northern Cheyenne Northern Cheyenne Tribe of the Northern Cheyenne Indian Reservation, Montana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Northfork DEPRECATED: Northfork DEPRECATED: Northfork Rancheria of Mono Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Northway Northway Northway Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Northwestern Shoshone Northwestern Shoshone Northwestern Band of the Shoshone Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nottawaseppi Potawatomi Nottawaseppi Potawatomi Nottawaseppi Huron Band of the Potawatomi, Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nuiqsut Nuiqsut Native Village of Nuiqsut (aka Nooiksut) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nulato Nulato Nulato Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nunakauyarmiut Nunakauyarmiut Nunakauyarmiut Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nunam Iqua Nunam Iqua Native Village of Nunam Iqua uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Nunapitchuk Nunapitchuk Native Village of Nunapitchuk uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Oglala Sioux Oglala Sioux Oglala Sioux Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ohkay DEPRECATED: Ohkay DEPRECATED: Ohkay Owingeh uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ohkay Owingeh Ohkay Owingeh Ohkay Owingeh, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ohogamiut Ohogamiut Village of Ohogamiut uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ohogamuit DEPRECATED: Ohogamuit DEPRECATED: Village of Ohogamiut uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Omaha Omaha Omaha Tribe of Nebraska uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Oneida Oneida Oneida Indian Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Oneida Nation of New York DEPRECATED: Oneida Nation of New York DEPRECATED: Oneida Nation of New York uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Oneida Nation (Wisconsin) Oneida Nation (Wisconsin) Oneida Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Onondaga Onondaga Onondaga Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Orutsararmiut Orutsararmiut Orutsararmiut Traditional Native Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Osage DEPRECATED: Osage DEPRECATED: The Osage Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Osage Nation Osage Nation The Osage Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Oscarville Oscarville Oscarville Traditional Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Otoe-Missouria Otoe-Missouria Otoe-Missouria Tribe of Indians, Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ottawa of Oklahoma DEPRECATED: Ottawa of Oklahoma DEPRECATED: Ottawa Tribe of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ottawa Tribe of Oklahoma Ottawa Tribe of Oklahoma Ottawa Tribe of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ouzinkie Ouzinkie Native Village of Ouzinkie uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Paimiut Paimiut Native Village of Paimiut uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Paiute of Utah Paiute of Utah Paiute Indian Tribe of Utah (Cedar Band of Paiutes, Kanosh Band of Paiutes, Koosharem Band of Paiutes, Indian Peaks Band of Paiutes, and Shivwits Band of Paiutes) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Paiute-Shoshone Paiute-Shoshone Paiute-Shoshone Tribe of the Fallon Reservation and Colony, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pala Pala Pala Band of Mission Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pamunkey Indian Tribe Pamunkey Indian Tribe Pamunkey Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pascua Yaqui Pascua Yaqui Pascua Yaqui Tribe of Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Paskenta Paskenta Paskenta Band of Nomlaki Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Passamaquaddy Pleasant Point DEPRECATED: Passamaquaddy Pleasant Point DEPRECATED: Passamaquoddy Tribe - Pleasant Point uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Passamaquoddy Indian Township Passamaquoddy Indian Township Passamaquoddy Tribe - Indian Township uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Passamaquoddy Pleasant Point Passamaquoddy Pleasant Point Passamaquoddy Tribe - Pleasant Point uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Passamaquoddy Tribe Passamaquoddy Tribe Passamaquoddy Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pauloff Harbor Pauloff Harbor Pauloff Harbor Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pauma Pauma Pauma Band of Luiseno Mission Indians of the Pauma & Yuima Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pawnee Pawnee Pawnee Nation of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pechanga DEPRECATED: Pechanga DEPRECATED: Pechanga Band of Luiseno Mission Indians of the Pechanga Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pechanga Band of Indians Pechanga Band of Indians Pechanga Band of Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pedro Bay Pedro Bay Pedro Bay Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Penobscot Penobscot Penobscot Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Peoria DEPRECATED: Peoria DEPRECATED: Peoria Tribe of Indians of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Peoria Tribe of Oklahoma Peoria Tribe of Oklahoma Peoria Tribe of Indians of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Perryville Perryville Native Village of Perryville uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Petersburg Petersburg Petersburg Indian Association uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Picayune Picayune Picayune Rancheria of Chukchansi Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pilot Point Pilot Point Native Village of Pilot Point uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pilot Station Pilot Station Pilot Station Traditional Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pinoleville Pinoleville Pinoleville Pomo Nation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pit River Pit River Pit River Tribe, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pitka's Point Pitka's Point Pitka's Point Traditional Council uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Platinum Platinum Platinum Traditional Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Poarch Poarch Poarch Band of Creek Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Point Hope IRA Point Hope IRA Native Village of Point Hope uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Point Lay IRA Point Lay IRA Native Village of Point Lay uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pokagon Pokagon Pokagon Band of Potawatomi Indians, Michigan and Indiana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ponca of Nebraska Ponca of Nebraska Ponca Tribe of Nebraska uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ponca of Oklahoma Ponca of Oklahoma Ponca Tribe of Indians of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Port Gamble Port Gamble Port Gamble S'Klallam Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Port Graham Port Graham Native Village of Port Graham uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Port Heiden Port Heiden Native Village of Port Heiden uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Port Lions Port Lions Native Village of Port Lions uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Portage Creek Portage Creek Portage Creek Village (aka Ohgsenakale) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Potter Valley Potter Valley Potter Valley Tribe, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Prairie Band Prairie Band Prairie Band Potawatomi Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Prairie Island Prairie Island Prairie Island Indian Community in the State of Minnesota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pribilof Islands Aleut Communities Pribilof Islands Aleut Communities Pribilof Islands Aleut Communities uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Acoma Pueblo of Acoma Pueblo of Acoma, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Cochiti Pueblo of Cochiti Pueblo of Cochiti, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Isleta Pueblo of Isleta Pueblo of Isleta, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Jemez Pueblo of Jemez Pueblo of Jemez, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Laguna Pueblo of Laguna Pueblo of Laguna, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Nambe Pueblo of Nambe Pueblo of Nambe, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Picuris Pueblo of Picuris Pueblo of Picuris, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Pojoaque Pueblo of Pojoaque Pueblo of Pojoaque, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of San Felipe Pueblo of San Felipe Pueblo of San Felipe, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of San Ildefonso Pueblo of San Ildefonso Pueblo of San Ildefonso, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Sandia Pueblo of Sandia Pueblo of Sandia, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Santa Ana Pueblo of Santa Ana Pueblo of Santa Ana, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Santa Clara Pueblo of Santa Clara Pueblo of Santa Clara, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Taos Pueblo of Taos Pueblo of Taos, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Tesuque Pueblo of Tesuque Pueblo of Tesuque, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Zia Pueblo of Zia Pueblo of Zia, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pueblo of Zuni Pueblo of Zuni Zuni Tribe of the Zuni Reservation, New Mexico uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Puyallup Puyallup Puyallup Tribe of the Puyallup Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Pyramid Lake Pyramid Lake Pyramid Lake Paiute Tribe of the Pyramid Lake Reservation, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Qagan Tayagungin Qagan Tayagungin Qagan Tayagungin Tribe of Sand Point uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Qawalangin Qawalangin Qawalangin Tribe of Unalaska uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quapaw DEPRECATED: Quapaw DEPRECATED: The Quapaw Tribe of Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quapaw Tribe Quapaw Tribe Quapaw Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quartz Valley Quartz Valley Quartz Valley Indian Community of the Quartz Valley Reservation of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quechan Quechan Quechan Tribe of the Fort Yuma Indian Reservation, California & Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quileute Quileute Quileute Tribe of the Quileute Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Quinault Quinault Quinault Indian Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ramah DEPRECATED: Ramah DEPRECATED: Ramah Navajo Chapter uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ramah Navajo Chapter Ramah Navajo Chapter Ramah Navajo Chapter of the Navajo Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ramona Ramona Ramona Band of Cahuilla, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rampart Rampart Rampart Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rappahannock Tribe, Inc. Rappahannock Tribe, Inc. Rappahannock Tribe, Inc. uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Red Cliff Red Cliff Red Cliff Band of Lake Superior Chippewa Indians of Wisconsin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Red Devil Red Devil Village of Red Devil uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Red Lake Red Lake Red Lake Band of Chippewa Indians, Minnesota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Redding Redding Redding Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Redwood Valley Redwood Valley Redwood Valley or Little River Band of Pomo Indians of the Redwood Valley Rancheria California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Reno-Sparks Reno-Sparks Reno-Sparks Indian Colony, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Resighini Resighini Resighini Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rincon Rincon Rincon Band of Luiseno Mission Indians of the Rincon Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Robinson Robinson Robinson Rancheria uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rosebud Rosebud Rosebud Sioux Tribe of the Rosebud Indian Reservation, South Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Round Valley Round Valley Round Valley Indian Tribes, Round Valley Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ruby Ruby Native Village of Ruby uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sac & Fox Nation of Missouri in KS & NE Sac & Fox Nation of Missouri in Kansas and Nebraska Sac & Fox Nation of Missouri in Kansas and Nebraska uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sac & Fox Nation, Oklahoma Sac & Fox Nation, Oklahoma Sac & Fox Nation, Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sac & Fox of Mississippi Sac & Fox of Mississippi Sac & Fox Tribe of the Mississippi in Iowa uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sac and Fox Nation DEPRECATED: Oklahoma DEPRECATED: Sac and Fox Nation, Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sac and Fox Nation of Missouri in KS and NE DEPRECATED: Sac and Fox Nation of Missouri in Kansas and Nebraska DEPRECATED: Sac and Fox Nation of Missouri in Kansas and Nebraska uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Saginaw Chippewa Saginaw Chippewa Saginaw Chippewa Indian Tribe of Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Saint Paul Saint Paul Saint Paul Island uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Saint Regis Saint Regis Saint Regis Mohawk Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Salamatof Salamatof Salamatof Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Salamatoff DEPRECATED: Salamatoff DEPRECATED: Village of Salamatoff uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Salt River Salt River Salt River Pima-Maricopa Indian Community of the Salt River Reservation, Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Samish Samish Samish Indian Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
San Carlos San Carlos San Carlos Apache Tribe of the San Carlos Reservation, Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
San Juan San Juan San Juan Southern Paiute Tribe of Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
San Manuel DEPRECATED: San Manuel DEPRECATED: San Manuel Band of Mission Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
San Pasqual San Pasqual San Pasqual Band of Diegueno Mission Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Santa Rosa Santa Rosa Santa Rosa Indian Community of the Santa Rosa Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Santa Rosa of Cahuilla Santa Rosa of Cahuilla Santa Rosa Band of Cahuilla Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Santa Rosa of Chuilla DEPRECATED: Santa Rosa of Chuilla DEPRECATED: Santa Rosa Band of Cahuilla Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Santa Ynez Santa Ynez Santa Ynez Band of Chumash Mission Indians of the Santa Ynez Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Santee Sioux Santee Sioux Santee Sioux Nation, Nebraska uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Santo Domingo Santo Domingo Santo Domingo Pueblo uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sauk-Suiattle Sauk-Suiattle Sauk-Suiattle Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sault Ste. Marie Sault Ste. Marie Sault Ste. Marie Tribe of Chippewa Indians, Michigan uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Savoonga Savoonga Native Village of Savoonga uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Saxman Saxman Organized Village of Saxman uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Scammon Bay Scammon Bay Native Village of Scammon Bay uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Scotts Valley Scotts Valley Scotts Valley Band of Pomo Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Selawik Selawik Native Village of Selawik uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Seldovia Seldovia Seldovia Village Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Seminole Seminole Seminole Tribe of Florida uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Seminole Nation of Oklahoma Seminole Nation of Oklahoma The Seminole Nation of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Seminole of Oklahoma DEPRECATED: Seminole of Oklahoma DEPRECATED: The Seminole Nation of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Seneca Seneca Seneca Nation of Indians uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Seneca-Cayuga DEPRECATED: Seneca-Cayuga DEPRECATED: Seneca-Cayuga Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Seneca-Cayuga Nation Seneca-Cayuga Nation Seneca-Cayuga Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shageluk Shageluk Shageluk Native Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shakopee Shakopee Shakopee Mdewakanton Sioux Community of Minnesota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shaktoolik Shaktoolik Native Village of Shaktoolik uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shawnee DEPRECATED: Shawnee DEPRECATED: Shawnee Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shawnee Tribe Shawnee Tribe Shawnee Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sherwood Valley Sherwood Valley Sherwood Valley Rancheria of Pomo Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shingle Springs Shingle Springs Shingle Springs Band of Miwok Indians, Shingle Springs Rancheria (Verona Tract), California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shinnecock Shinnecock Shinnecock Indian Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shishmaref IRA Shishmaref IRA Native Village of Shishmaref uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shoalwater Shoalwater Shoalwater Bay Indian Tribe of the Shoalwater Bay Indian Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shoshone-Bannock Shoshone-Bannock Shoshone-Bannock Tribes of the Fort Hall Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shoshone-Paiute Shoshone-Paiute Shoshone-Paiute Tribes of the Duck Valley Reservation, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shungnak Shungnak Native Village of Shungnak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Siletz Tribe Siletz Tribe Confederated Tribes of Siletz Indians of Oregon uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sisseton-Wahpeton Sisseton-Wahpeton Sisseton-Wahpeton Oyate of the Lake Traverse Reservation, South Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sitka Sitka Sitka Tribe of Alaska uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Skagway Skagway Skagway Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Skokomish Skokomish Skokomish Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Skull Valley Skull Valley Skull Valley Band of Goshute Indians of Utah uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sleetmute Sleetmute Village of Sleetmute uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Snoqualmie Snoqualmie Snoqualmie Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Soboba Soboba Soboba Band of Luiseno Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sokaogon Sokaogon Sokaogon Chippewa Community, Wisconsin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Solomon Solomon Village of Solomon uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
South Naknek South Naknek South Naknek Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Southern Ute Southern Ute Southern Ute Indian Tribe of the Southern Ute Reservation, Colorado uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Spirit Lake Spirit Lake Spirit Lake Tribe, North Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Spokane Spokane Spokane Tribe of the Spokane Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Squaxin Squaxin Squaxin Island Tribe of the Squaxin Island Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
St. Croix St. Croix St. Croix Chippewa Indians of Wisconsin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
St. George St. George Saint George Island uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
St. Michael IRA St. Michael IRA Native Village of Saint Michael uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Standing Rock Standing Rock Standing Rock Sioux Tribe of North & South Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Stebbins Stebbins Stebbins Community Association uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Stevens Village Stevens Village Native Village of Stevens uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Stillaguamish Stillaguamish Stillaguamish Tribe of Indians of Washington uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Stockbridge Stockbridge Stockbridge Munsee Community, Wisconsin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Stony River Stony River Village of Stony River uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Summit Lake Summit Lake Summit Lake Paiute Tribe of Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sun'aq Sun'aq Sun'aq Tribe of Kodiak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Suquamish Suquamish Suquamish Indian Tribe of the Port Madison Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Susanville Susanville Susanville Indian Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Swinomish Swinomish Swinomish Indian Tribal Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Sycuan Sycuan Sycuan Band of the Kumeyaay Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Table Mountain Table Mountain Table Mountain Rancheria uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Takotna Takotna Takotna Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tanacross Tanacross Native Village of Tanacross uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tanana Tanana Native Village of Tanana uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tangirnaq Tangirnaq Tangirnaq Native Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tatitlek Tatitlek Native Village of Tatitlek uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tazlina Tazlina Native Village of Tazlina uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Te-Moak Te-Moak Te-Moak Tribe of Western Shoshone Indians of Nevada (Four constituent bands: Battle Mountain Band, Elko Band, South Fork Band and Wells Band) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tejon Tejon Tejon Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Telida Telida Telida Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Teller Teller Native Village of Teller uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tetlin Tetlin Native Village of Tetlin uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Thlopthlocco DEPRECATED: Thlopthlocco DEPRECATED: Thlopthlocco Tribal Town uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Thlopthlocco Tribal Town Thlopthlocco Tribal Town Thlopthlocco Tribal Town uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Three Affiliated Three Affiliated Three Affiliated Tribes of the Fort Berthold Reservation, North Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Timbi-sha Shoshone Timbi-sha Shoshone Timbisha Shoshone Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tlingit & Haida Tlingit & Haida Central Council of the Tlingit & Haida Indian Tribes uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Togiak Togiak Traditional Village of Togiak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tohono O'odham Tohono O'odham Tohono O'odham Nation of Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tolowa Dee-ni' Tolowa Dee-ni' Tolowa Dee-ni' Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tonawanda Tonawanda Tonawanda Band of Seneca uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tonkawa Tonkawa Tonkawa Tribe of Indians of Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tonto Apache Tonto Apache Tonto Apache Tribe of Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Torres Martinez Torres Martinez Torres Martinez Desert Cahuilla Indians, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tulalip Tulalip Tulalip Tribes of Washington uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tule River Tule River Tule River Indian Tribe of the Tule River Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tuluksak Tuluksak Tuluksak Native Community uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tunica-Biloxi Tunica-Biloxi Tunica-Biloxi Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tuntutuliak Tuntutuliak Native Village of Tuntutuliak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tununak Tununak Native Village of Tununak uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tuolumne Tuolumne Tuolumne Band of Me-Wuk Indians of the Tuolumne Rancheria of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Turtle Mountain Turtle Mountain Turtle Mountain Band of Chippewa Indians of North Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tuscarora Tuscarora Tuscarora Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Twenty-Nine Palms Twenty-Nine Palms Twenty-Nine Palms Band of Mission Indians of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Twin Hills Twin Hills Twin Hills Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Tyonek Tyonek Native Village of Tyonek uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ugashik Ugashik Ugashik Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Umatilla Tribe Umatilla Tribe Confederated Tribes of the Umatilla Indian Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Umkumiut Umkumiut Umkumiut Native Village uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unalakleet Unalakleet Native Village of Unalakleet uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unga Unga Native Village of Unga uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
United Auburn United Auburn United Auburn Indian Community of the Auburn Rancheria of California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
United Keetoowah DEPRECATED: United Keetoowah DEPRECATED: United Keetoowah Band of Cherokee Indians in Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
United Keetoowah Band United Keetoowah Band United Keetoowah Band of Cherokee Indians in Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Upper Mattaponi Tribe Upper Mattaponi Tribe Upper Mattaponi Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Upper Sioux Upper Sioux Upper Sioux Community, Minnesota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Upper Skagit Upper Skagit Upper Skagit Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ute Ute Ute Indian Tribe of the Uintah & Ouray Reservation, Utah uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ute Mountain DEPRECATED: Ute Mountain DEPRECATED: Ute Mountain Ute Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ute Mountain Ute Ute Mountain Ute Ute Mountain Ute Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Venetie Venetie Village of Venetie uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Venetie IRA Venetie IRA Native Village of Venetie Tribal Government (Arctic Village and Village of Venetie) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Viejas Viejas Capitan Grande Band of Diegueno Mission Indians of California: Viejas (Baron Long) Group of Capitan Grande Band of Mission Indians of the Viejas Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wainwright Wainwright Village of Wainwright uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wales Wales Native Village of Wales uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Walker River Walker River Walker River Paiute Tribe of the Walker River Reservation, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wampanoag Wampanoag Wampanoag Tribe of Gay Head (Aquinnah) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Warms Springs Tribe Warms Springs Tribe Confederated Tribes of the Warm Springs Reservation of Oregon uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Washoe Washoe Washoe Tribe of Nevada & California (Carson Colony, Dresslerville Colony, Woodfords Community, Stewart Community, & Washoe Ranches) uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
White Earth White Earth Minnesota Chippewa Tribe - White Earth Band uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
White Mountain White Mountain White Mountain Apache Tribe of the Fort Apache Reservation, Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
White Mountain AK White Mountain AK Native Village of White Mountain uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wichita Wichita Wichita and Affiliated Tribes (Wichita, Keechi, Waco & Tawakonie), Oklahoma uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wilton Wilton Wilton Rancheria, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Winnebago Winnebago Winnebago Tribe of Nebraska uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Winnemucca Winnemucca Winnemucca Indian Colony of Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wiyot Wiyot Wiyot Tribe, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wrangell Wrangell Wrangell Cooperative Association uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Wyandotte Wyandotte Wyandotte Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yakutat Yakutat Yakutat Tlingit Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yankton Yankton Yankton Sioux Tribe of South Dakota uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yavapai-Apache Yavapai-Apache Yavapai-Apache Nation of the Camp Verde Indian Reservation, Arizona uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yavapai-Prescott Yavapai-Prescott Yavapai-Prescott Indian Tribe uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yerington Yerington Yerington Paiute Tribe of the Yerington Colony and Campbell Ranch, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yocha Dehe Yocha Dehe Yocha Dehe Wintun Nation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yomba Shoshone Yomba Shoshone Yomba Shoshone Tribe of the Yomba Reservation, Nevada uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Ysleta Del Sur Ysleta Del Sur Ysleta del Sur Pueblo uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yuhaaviatam of San Manuel Nation Yuhaaviatam of San Manuel Nation Yuhaaviatam of San Manuel Nation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Yurok Yurok Yurok Tribe of the Yurok Reservation, California uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Zuni DEPRECATED: Zuni DEPRECATED: Zuni Tribe of the Zuni Reservation uri://ed-fi.org/TribalAffiliationDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • StaffDemographic.TribalAffiliation (optional collection)
  • StudentDemographic.TribalAffiliation (optional collection)

UDM primitive/simple type Number

TuitionCost #

dictionary-only type

The tuition for a person's participation in a program, service. or course.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 19
  • decimal places: 4

UDM primitive/simple type String

UniqueId #

dictionary-only type

A unique alphanumeric code assigned to a person by a system managing unique identifiers.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 32
Used By (4)
  • Contact.ContactUniqueId (required)
  • Person.PersonId (required)
  • Staff.StaffUniqueId (required)
  • Student.StudentUniqueId (required)

UDM primitive/simple type String

URI #

dictionary-only type

The public web site address (URL), file, or ftp locator.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 5
  • max length: 255
Used By (23)
  • LearningStandardEquivalenceAssociation.Namespace (required)
  • ContentStandard.URI (optional)
  • Assessment.Namespace (required)
  • AssessmentItem.AssessmentItemURI (optional)
  • Certification.Namespace (required)
  • CertificationExam.Namespace (required)
  • Credential.Namespace (required)
  • DescriptorMapping.Namespace (required)
  • DescriptorMapping.MappedNamespace (required)
  • EducationContent.Namespace (required)
  • EducationOrganization.WebSite (optional)
  • GradebookEntry.Namespace (required)
  • Intervention.Namespace (optional)
  • InterventionPrescription.Namespace (optional)
  • LearningStandard.URI (optional)
  • LearningStandard.Namespace (required)
  • ProfessionalDevelopmentEvent.Namespace (required)
  • Survey.Namespace (required)
  • Achievement.IssuerOriginURL (optional)
  • Achievement.CriteriaURL (optional)
  • Achievement.ImageURL (optional)
  • EducationContentSource.URI (optional collection)
  • LearningResource.UseRightsURL (optional)

UDM primitive/simple type Date

USInitialEntry #

dictionary-only type

The month, day, and year on which the student first entered the U.S.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentMigrantEducationProgramAssociation.USInitialEntry (optional)

UDM primitive/simple type Date

USInitialSchoolEntry #

dictionary-only type

The month, day, and year on which the student first entered a U.S. school.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentMigrantEducationProgramAssociation.USInitialSchoolEntry (optional)

UDM primitive/simple type Date

USMostRecentEntry #

dictionary-only type

The month, day, and year of the student's most recent entry into the U.S.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • StudentMigrantEducationProgramAssociation.USMostRecentEntry (optional)

UDM primitive/simple type String

Value #

dictionary-only type

The descriptor value that is being mapped to another value.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 50

Descriptor catalog Descriptor

Visa #

/ed-fi/descriptors/visaDescriptors

An indicator of a non-U.S. citizen's Visa type.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Assessment Registration, Educator Preparation Program, Enrollment, Recruiting and Staffing, Staff, Student Identification And Demographics
Source
UDM Handbook entry
Physical SQL snippets
edfi.VisaDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (7 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for VisaDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
B1 - Business Visa B1 - Business Visa B1 - Business Visa uri://ed-fi.org/VisaDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
B2 - Tourist Visa B2 - Tourist Visa B2 - Tourist Visa uri://ed-fi.org/VisaDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
F1 - Foreign Student Visa F1 - Foreign Student Visa F1 - Foreign Student Visa uri://ed-fi.org/VisaDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
H1 - Employment Visa H1 - Employment Visa H1 - Employment Visa uri://ed-fi.org/VisaDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
J1 - Exchange Scholar Visa J1 - Exchange Scholar Visa J1 - Exchange Scholar Visa uri://ed-fi.org/VisaDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
M1 - Foreign Student vocational/non-academic Visa M1 - Foreign Student pursuing vocational or non-academic studies Visa M1 - Foreign Student pursuing vocational or non-academic studies Visa uri://ed-fi.org/VisaDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Visa Other Visa Other Visa uri://ed-fi.org/VisaDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Citizenship.Visa (optional collection)

Descriptor catalog Descriptor

Weapon #

/ed-fi/descriptors/weaponDescriptors

This descriptor defines the types of weapon used during an incident.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Discipline
Source
UDM Handbook entry
Physical SQL snippets
edfi.WeaponDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (19 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for WeaponDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
BB gun The weapon involved was a BB gun. The weapon involved was a BB gun. uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Club Club Club uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Destructive Device Any explosive, bomb, grenade,poison gas; specific weapons Any explosive, incendiary (e.g., bomb, grenade), or poison gas; any weapon which may expel a projectile by explosive or another propellant with the barrel bore is more than one-half inch in diameter. uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Firearm Firearm Any weapon (including a starter gun) which will or is designed to or may readily be converted to expel a projectile by the action of an explosive; the frame or receiver of any such weapon; any firearm muffler or firearm silencer; or any destructive device. uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Handgun Handgun Any firearm which has a short stock and is designed to be held and fired by the use of a single hand. uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Knife DEPRECATED: Knife DEPRECATED: Knife uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Knife Greater Than Three Inches Knife with blade length greater than or equal to 3 inches Knife with blade length greater than or equal to 3 inches - the weapon involved was a knife with a blade 3 inches or greater in length. uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Knife Less Than 2.5 Inches Knife with blade length less than 2.5 inches Knife with blade length less than 2.5 inches - the weapon involved was a knife with a blade less than 2.5 inches in length. uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Knife Less Than Three Inches Knife with blade equal or greater than 2.5 inches and less than 3 inches Knife with blade length less than 3 inches in length - the weapon involved was a knife with a blade at least 2.5 inches in length, but less than 3 inches in length. uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
None No weapon was used in the incident. No weapon was used in the incident. uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Other Other uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Firearm Other Firearm Other Firearm uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Object Other Object Other Object uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Other Sharp Objects Other Sharp Objects Other Sharp Objects uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rifle A shoulder-fired weapon used to fire a single projectile per trigger pull. A weapon designed or redesigned, made or remade, and intended to be fired from the shoulder and designed or redesigned and made or remade to use the energy of an explosive to fire only a single projectile through a rifled bore for each single pull of the trigger. uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Rifle/Shotgun DEPRECATED: Rifle/Shotgun DEPRECATED: Rifle/Shotgun uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Shotgun Firearm with smooth bore for firing shot or a projectile A weapon designed or redesigned, made or remade, and intended to be fired from the shoulder and designed or redesigned and made or remade to use the energy of an explosive to fire through a smooth bore either a number of ball shots or a single projectile for each single pull of the trigger. uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Substance Used as Weapon Substance Used as Weapon Substance Used as Weapon uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown Unknown uri://ed-fi.org/WeaponDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (2)
  • StudentDisciplineIncidentBehaviorAssociation.Weapon (optional collection)
  • DisciplineIncident.Weapon (optional collection)

UDM primitive/simple type String

WeekIdentifier #

dictionary-only type

The school label for the academic week.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • min length: 5
  • max length: 80
Used By (1)
  • AcademicWeek.WeekIdentifier (required)

UDM primitive/simple type String

Whereabouts #

dictionary-only type

The location, typically City and State, for the institution.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • max length: 75
Used By (2)
  • CurrentPosition.Location (required)
  • SurveyResponse.Location (optional)

UDM primitive/simple type Date

WithdrawDate #

dictionary-only type

The date the application was withdrawn by the applicant.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Used By (1)
  • Application.WithdrawDate (optional)

Descriptor catalog Descriptor

WithdrawReason #

/ed-fi/descriptors/withdrawReasonDescriptors

The descriptor holds the reason why the applicant withdrew the application.

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Recruiting and Staffing
Source
UDM Handbook entry
Physical SQL snippets
edfi.WithdrawReasonDescriptor
Platform overlay
edfi_descriptor_code GAP-A4
Trace
EITD-000 EITD-001 GAP-A4
Descriptor Values (5 Ed-Fi seed values)
Allowed values: the rows below are the Ed-Fi standard seed values for WithdrawReasonDescriptor. District-local values are allowed only through the governed registry in edfi.edfi_descriptor_code and must carry standard_status. GAP-A4
CodeValueShortDescriptionDescriptionNamespaceEffective datesStatusSource
Displeased Displeased Displeased with the offer or hiring process uri://ed-fi.org/WithdrawReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Dropped out Dropped out No longer searching uri://ed-fi.org/WithdrawReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Hired Elsewhere Hired Elsewhere Accepted other offer uri://ed-fi.org/WithdrawReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Not Eligible Not Eligible Unable to submit required documents uri://ed-fi.org/WithdrawReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Unknown Unknown Unknown reason uri://ed-fi.org/WithdrawReasonDescriptor not date-limited in source ed_fi_standard Ed-Fi descriptor XML
Used By (1)
  • Application.WithdrawReason (optional)

UDM primitive/simple type Number

YearsOfService #

dictionary-only type

Years of service

Origin
pass-through from Ed-Fi v6.1 EITD-000
Domains
Source does not list a domain
Source
UDM Handbook entry
Physical SQL snippets
No SQL table snippet in handbook
Platform overlay
No canonical overlay; reused inside resources
Trace
EITD-000 EITD-001
Field Reference (0)
Field Type Requiredness Meaning Constraints / Range Source / ITD Origin
No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below.
Type Characteristics
  • total digits: 5
  • decimal places: 2
Used By (2)
  • RecruitmentEventAttendeeQualifications.YearsOfServiceCurrentPlacement (optional)
  • RecruitmentEventAttendeeQualifications.YearsOfServiceTotal (required)