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.
Ed-Fi Data Standard v6.1.0Source contract and version statement.
UDM HandbookDefinitions, datatypes, cardinality, usage, SQL snippets, references.
Model ReferenceDomain context, entity/reference/descriptor pages, diagrams.
Default DescriptorsSeed descriptor values; district-local values stay governed.
Ed-Fi GET RequestsOffset, limit, total counts, and list-request conventions.
Ed-Fi Cursor GuidanceCursor mode as an optional high-volume paging path.
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.
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.
Ed-Fi ODS SQL snippet
edfi.AbsenceEventCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AcademicHonorCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AcademicSubjectDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.AccommodationDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.AccountTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AccreditationStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AchievementCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AdditionalCreditTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AddressCharacteristicDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AddressTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AdministrationEnvironmentDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.AidTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AncestryEthnicOriginDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileAddress #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileAddressCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileAddressPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileApplicantCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileBackgroundCheck #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileDisability #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileDisabilityDesignation #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileEducatorPreparationProgramName #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileElectronicMail #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileGradePointAverage #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileHighlyQualifiedAcademicSubject #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileIdentificationDocument #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileInternationalAddress #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileLanguage #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileLanguageUse #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfilePersonalIdentificationDocument #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileRace #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileTelephone #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicantProfileVisa #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ApplicationEventResultDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicationEventTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicationRecruitmentEventAttendance #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicationScoreResult #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicationSourceDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicationStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ApplicationTerm #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.AssessmentAdministrationAssessmentBatteryPart #
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentAdministrationPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentAssessedGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.AssessmentBatteryPartObjectiveAssessment #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentContentStandard #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentContentStandardAuthor #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentIdentificationCode #
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.AssessmentItemCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentItemLearningStandard #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentItemPossibleResponse #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentItemResultDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentLanguage #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentPerformanceLevel #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentPeriodDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentPlatformType #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentProgram #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentReportingMethodDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentScore #
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.AssessmentSection #
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.
Ed-Fi ODS SQL snippet
edfi.AssignmentLateStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AttemptStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.AttendanceEventCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.BackgroundCheckStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.BackgroundCheckTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.BalanceSheetDimensionReportingTag #
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.
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.
Ed-Fi ODS SQL snippet
edfi.BehaviorDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.BellScheduleClassPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.BellScheduleDate #
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.
Ed-Fi ODS SQL snippet
edfi.BellScheduleGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.BusRouteDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CalendarDateCalendarEvent #
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.
Ed-Fi ODS SQL snippet
edfi.CalendarEventDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CalendarGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.CalendarTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CandidateAddress #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateAddressCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateAddressPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateBackgroundCheck #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateCharacteristicDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateDisability #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateDisabilityDesignation #
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.
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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.CandidateElectronicMail #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateEPPProgramDegree #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CandidateIdentificationDocument #
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.
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.
Ed-Fi ODS SQL snippet
edfi.CandidateIndicator #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateInternationalAddress #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateLanguage #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateLanguageUse #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateOtherName #
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.
Ed-Fi ODS SQL snippet
edfi.CandidatePersonalIdentificationDocument #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateRace #
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.
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.
Ed-Fi ODS SQL snippet
edfi.CandidateTelephone #
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.
Ed-Fi ODS SQL snippet
edfi.CandidateVisa #
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.
Ed-Fi ODS SQL snippet
edfi.CareerPathwayDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CertificationCertificationExam #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CertificationExamStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CertificationExamTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CertificationFieldDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CertificationGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.CertificationLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CertificationRoute #
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.
Ed-Fi ODS SQL snippet
edfi.CertificationRouteDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CertificationStandardDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CharterApprovalAgencyTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CharterStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ChartOfAccountReportingTag #
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.
Ed-Fi ODS SQL snippet
edfi.CitizenshipStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ClassPeriodMeetingTime #
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.
Ed-Fi ODS SQL snippet
edfi.ClassroomPositionDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CohortProgram #
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.
Ed-Fi ODS SQL snippet
edfi.CohortScopeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CohortTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CohortYearTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CompetencyLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ContactAddress #
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.
Ed-Fi ODS SQL snippet
edfi.ContactAddressCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.ContactAddressPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.ContactElectronicMail #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ContactIdentificationSystemDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ContactInternationalAddress #
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.
Ed-Fi ODS SQL snippet
edfi.ContactLanguage #
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.
Ed-Fi ODS SQL snippet
edfi.ContactLanguageUse #
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.
Ed-Fi ODS SQL snippet
edfi.ContactOtherName #
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.
Ed-Fi ODS SQL snippet
edfi.ContactPersonalIdentificationDocument #
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.
Ed-Fi ODS SQL snippet
edfi.ContactTelephone #
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.
Ed-Fi ODS SQL snippet
edfi.ContentClassDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.CostRateDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CoteachingStyleObservedDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CountryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CourseAcademicSubject #
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.
Ed-Fi ODS SQL snippet
edfi.CourseAttemptResultDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CourseCompetencyLevel #
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.
Ed-Fi ODS SQL snippet
edfi.CourseDefinedByDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CourseGPAApplicabilityDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CourseIdentificationCode #
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.
Ed-Fi ODS SQL snippet
edfi.CourseIdentificationSystemDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CourseLearningStandard #
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.
Ed-Fi ODS SQL snippet
edfi.CourseLevelCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.CourseLevelCharacteristicDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CourseOfferedGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CourseOfferingCourseLevelCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.CourseOfferingCurriculumUsed #
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.
Ed-Fi ODS SQL snippet
edfi.CourseOfferingOfferedGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.CourseRepeatCodeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CourseTranscriptAcademicSubject #
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.
Ed-Fi ODS SQL snippet
edfi.CourseTranscriptAlternativeCourseIdentificationCode #
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.
Ed-Fi ODS SQL snippet
edfi.CourseTranscriptCourseProgram #
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.
Ed-Fi ODS SQL snippet
edfi.CourseTranscriptCreditCategory #
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.
Ed-Fi ODS SQL snippet
edfi.CourseTranscriptEarnedAdditionalCredits #
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.
Ed-Fi ODS SQL snippet
edfi.CourseTranscriptPartialCourseTranscriptAwards #
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.
Ed-Fi ODS SQL snippet
edfi.CourseTranscriptSection #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CredentialAcademicSubject #
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.
Ed-Fi ODS SQL snippet
edfi.CredentialEndorsement #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CredentialEventTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CredentialFieldDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CredentialGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.CredentialStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CredentialStudentAcademicRecord #
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.
Ed-Fi ODS SQL snippet
edfi.CredentialTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CreditCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CreditTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.CrisisTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CTEProgramServiceDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.CurriculumUsedDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.DegreeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.DeliveryMethodDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.DescriptorMappingModelEntity #
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.
Ed-Fi ODS SQL snippet
edfi.DiagnosisDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.DiplomaLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.DiplomaTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.DisabilityDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.DisabilityDesignationDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.DisciplineActionDiscipline #
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.
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.
Ed-Fi ODS SQL snippet
edfi.DisciplineActionStaff #
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.
Ed-Fi ODS SQL snippet
edfi.DisciplineActionStudentDisciplineIncidentBehaviorAssociation #
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.
Ed-Fi ODS SQL snippet
edfi.DisciplineDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.DisciplineIncidentBehavior #
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.
Ed-Fi ODS SQL snippet
edfi.DisciplineIncidentExternalParticipant #
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.
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.
Ed-Fi ODS SQL snippet
edfi.DisciplineIncidentWeapon #
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.
Ed-Fi ODS SQL snippet
edfi.DisplacedStudentStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.DualCreditInstitutionDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.DualCreditTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.DurationIntervalDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EconomicDisadvantageDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EducationalEnvironmentDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.EducationContentAppropriateGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.EducationContentAppropriateSex #
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.
Ed-Fi ODS SQL snippet
edfi.EducationContentAuthor #
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.
Ed-Fi ODS SQL snippet
edfi.EducationContentDerivativeSourceEducationContent #
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.
Ed-Fi ODS SQL snippet
edfi.EducationContentDerivativeSourceLearningResourceMetadataURI #
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.
Ed-Fi ODS SQL snippet
edfi.EducationContentDerivativeSourceURI #
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.
Ed-Fi ODS SQL snippet
edfi.EducationContentLanguage #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.EducationOrganizationAddress #
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.
Ed-Fi ODS SQL snippet
edfi.EducationOrganizationAddressCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.EducationOrganizationAddressPeriod #
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.
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.
Ed-Fi ODS SQL snippet
edfi.EducationOrganizationCategory #
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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.EducationOrganizationIndicator #
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.
Ed-Fi ODS SQL snippet
edfi.EducationOrganizationIndicatorPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.EducationOrganizationInstitutionTelephone #
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.
Ed-Fi ODS SQL snippet
edfi.EducationOrganizationInternationalAddress #
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.
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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.EducationPlanDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.EducatorPreparationProgramGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.EducatorRoleDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ElectronicMailTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EligibilityDelayReasonDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EligibilityEvaluationTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EmploymentStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EnglishLanguageExamDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EnrollmentTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EntryGradeLevelReasonDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EntryTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EPPDegreeTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EPPProgramPathwayDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.EvaluationDelayReasonDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.EvaluationElementRatingLevel #
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.
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.
Ed-Fi ODS SQL snippet
edfi.EvaluationElementRatingResult #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.EvaluationObjectiveRatingLevel #
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.
Ed-Fi ODS SQL snippet
edfi.EvaluationObjectiveRatingResult #
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.
Ed-Fi ODS SQL snippet
edfi.EvaluationPeriodDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.EvaluationRatingLevel #
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.
Ed-Fi ODS SQL snippet
edfi.EvaluationRatingLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EvaluationRatingResult #
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.
Ed-Fi ODS SQL snippet
edfi.EvaluationRatingReviewer #
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.
Ed-Fi ODS SQL snippet
edfi.EvaluationRatingReviewerReceivedTraining #
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.
Ed-Fi ODS SQL snippet
edfi.EvaluationRatingStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.EvaluationTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EventCircumstanceDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EventComplianceDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.EventReasonDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ExitWithdrawTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.FederalLocaleCodeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.FieldworkExperienceCoteaching #
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.
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.
Ed-Fi ODS SQL snippet
edfi.FieldworkTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.FinancialCollectionDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.FrequencyIntervalDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.FunctionDimensionReportingTag #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.FundDimensionReportingTag #
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.
Ed-Fi ODS SQL snippet
edfi.FundingSourceDescriptor #
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.GoalTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.GradebookEntryLearningStandard #
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.
Ed-Fi ODS SQL snippet
edfi.GradebookEntryTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.GradeLearningStandardGrade #
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.
Ed-Fi ODS SQL snippet
edfi.GradeLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.GradePointAverageTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.GradeTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.GradingPeriodDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.GraduationPlanCreditsByCourse #
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.
Ed-Fi ODS SQL snippet
edfi.GraduationPlanCreditsByCourseCourse #
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.
Ed-Fi ODS SQL snippet
edfi.GraduationPlanCreditsByCreditCategory #
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.
Ed-Fi ODS SQL snippet
edfi.GraduationPlanCreditsBySubject #
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.
Ed-Fi ODS SQL snippet
edfi.GraduationPlanRequiredAssessment #
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.
Ed-Fi ODS SQL snippet
edfi.GraduationPlanRequiredAssessmentPerformanceLevel #
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.
Ed-Fi ODS SQL snippet
edfi.GraduationPlanRequiredAssessmentScore #
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.
Ed-Fi ODS SQL snippet
edfi.GraduationPlanRequiredCertification #
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.
Ed-Fi ODS SQL snippet
edfi.GraduationPlanTypeDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.HireStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.HiringSourceDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.HomelessProgramServiceDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.IDEAEventTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.IDEAPartDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.IdentificationDocumentUseDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.IEPGoalTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.IEPStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ImmunizationTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.IncidentLocationDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.IndicatorDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.IndicatorGroupDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.IndicatorLevelDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.InstructionalSettingDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.InteractivityStyleDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.InternetAccessDescriptor #
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.InterventionAppropriateGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionAppropriateSex #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionClassDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionDiagnosis #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionEducationContent #
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.
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.
Ed-Fi ODS SQL snippet
edfi.InterventionInterventionPrescription #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionLearningResourceMetadataURI #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionMeetingTime #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionPopulationServed #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.InterventionPrescriptionAppropriateGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionPrescriptionAppropriateSex #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionPrescriptionDiagnosis #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionPrescriptionEducationContent #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionPrescriptionLearningResourceMetadataURI #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionPrescriptionPopulationServed #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionPrescriptionURI #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionStaff #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.InterventionStudyAppropriateGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionStudyAppropriateSex #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionStudyEducationContent #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionStudyInterventionEffectiveness #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionStudyLearningResourceMetadataURI #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionStudyPopulationServed #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionStudyStateAbbreviation #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionStudyURI #
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.
Ed-Fi ODS SQL snippet
edfi.InterventionURI #
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.
Ed-Fi ODS SQL snippet
edfi.LanguageDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.LanguageUseDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.LearningStandardAcademicSubject #
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.
Ed-Fi ODS SQL snippet
edfi.LearningStandardCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.LearningStandardContentStandard #
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.
Ed-Fi ODS SQL snippet
edfi.LearningStandardContentStandardAuthor #
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.LearningStandardGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.LearningStandardIdentificationCode #
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.
Ed-Fi ODS SQL snippet
edfi.LearningStandardScopeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.LengthOfContractDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.LevelOfEducationDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.LicenseStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.LicenseTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.LimitedEnglishProficiencyDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.LocalAccountReportingTag #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.LocaleDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.LocalEducationAgencyAccountability #
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.
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.
Ed-Fi ODS SQL snippet
edfi.LocalEducationAgencyFederalFunds #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
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.
Ed-Fi ODS SQL snippet
edfi.MediumOfInstructionDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.MethodCreditEarnedDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.ModelEntityDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.MonitoredDescriptor #
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.NetworkPurposeDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ObjectDimensionReportingTag #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ObjectiveAssessmentAssessmentItem #
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.
Ed-Fi ODS SQL snippet
edfi.ObjectiveAssessmentLearningStandard #
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.
Ed-Fi ODS SQL snippet
edfi.ObjectiveAssessmentParentObjectiveAssessment #
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.
Ed-Fi ODS SQL snippet
edfi.ObjectiveAssessmentPerformanceLevel #
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.
Ed-Fi ODS SQL snippet
edfi.ObjectiveAssessmentScore #
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.
Ed-Fi ODS SQL snippet
edfi.ObjectiveRatingLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.OpenStaffPositionAcademicSubject #
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.
Ed-Fi ODS SQL snippet
edfi.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.
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.
Ed-Fi ODS SQL snippet
edfi.OpenStaffPositionEventTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.OpenStaffPositionInstructionalGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.OpenStaffPositionReasonDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.OperationalStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.OperationalUnitDimensionReportingTag #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.OtherNameTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ParticipationDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ParticipationStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.PathMilestoneStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.PathMilestoneTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.PathPhasePathMilestone #
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.
Ed-Fi ODS SQL snippet
edfi.PathPhaseStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.PerformanceBaseConversionDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.PerformanceEvaluationGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.PerformanceEvaluationRatingLevel #
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.
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.
Ed-Fi ODS SQL snippet
edfi.PerformanceEvaluationRatingResult #
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.
Ed-Fi ODS SQL snippet
edfi.PerformanceEvaluationRatingReviewer #
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.
Ed-Fi ODS SQL snippet
edfi.PerformanceEvaluationRatingReviewerReceivedTraining #
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.
Ed-Fi ODS SQL snippet
edfi.PerformanceEvaluationTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.PerformanceLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
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.
Ed-Fi ODS SQL snippet
edfi.PlatformTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.PopulationServedDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.PostingResultDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.PostSecondaryEventCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
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.
Ed-Fi ODS SQL snippet
edfi.PostSecondaryInstitutionMediumOfInstruction #
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.
Ed-Fi ODS SQL snippet
edfi.PreviousCareerDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.PrimaryLearningDeviceAccessDescriptor #
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.
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.
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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.ProficiencyDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ProgramAssignmentDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ProgramCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.ProgramCharacteristicDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ProgramDimensionReportingTag #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ProgramEvaluationElementProgramEvaluationLevel #
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.
Ed-Fi ODS SQL snippet
edfi.ProgramEvaluationLevel #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ProgramEvaluationObjectiveProgramEvaluationLevel #
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.
Ed-Fi ODS SQL snippet
edfi.ProgramEvaluationPeriodDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ProgramEvaluationTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ProgramLearningStandard #
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.
Ed-Fi ODS SQL snippet
edfi.ProgramTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ProgressDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ProgressLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ProjectDimensionReportingTag #
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.
Ed-Fi ODS SQL snippet
edfi.ProviderCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ProviderProfitabilityDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ProviderStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.PublicationStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.QuantitativeMeasureDatatypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.QuantitativeMeasureTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.QuestionFormDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.RaceDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.RatingLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ReasonExitedDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ReasonNotTestedDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.RecognitionTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.RecruitmentEventAttendanceCurrentPosition #
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.
Ed-Fi ODS SQL snippet
edfi.RecruitmentEventAttendanceCurrentPositionGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.RecruitmentEventAttendanceDisability #
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.
Ed-Fi ODS SQL snippet
edfi.RecruitmentEventAttendanceDisabilityDesignation #
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.
Ed-Fi ODS SQL snippet
edfi.RecruitmentEventAttendancePersonalIdentificationDocument #
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.
Ed-Fi ODS SQL snippet
edfi.RecruitmentEventAttendanceRace #
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.
Ed-Fi ODS SQL snippet
edfi.RecruitmentEventAttendanceRecruitmentEventAttendeeQualifications #
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.
Ed-Fi ODS SQL snippet
edfi.RecruitmentEventAttendanceTelephone #
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.
Ed-Fi ODS SQL snippet
edfi.RecruitmentEventAttendanceTouchpoint #
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.
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.
Ed-Fi ODS SQL snippet
edfi.RecruitmentEventTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.RelationDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.RepeatIdentifierDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.ReportCardGrade #
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.
Ed-Fi ODS SQL snippet
edfi.ReportCardGradePointAverage #
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.
Ed-Fi ODS SQL snippet
edfi.ReportCardStudentCompetencyObjective #
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.
Ed-Fi ODS SQL snippet
edfi.ReporterDescriptionDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ReportingTagDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ResidencyStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ResponseIndicatorDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ResponsibilityDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.RestraintEventProgram #
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.
Ed-Fi ODS SQL snippet
edfi.RestraintEventReason #
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.
Ed-Fi ODS SQL snippet
edfi.RestraintEventReasonDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ResultDatatypeTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.RetestIndicatorDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.RubricRatingLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.SalaryTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.SchoolCategory #
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.
Ed-Fi ODS SQL snippet
edfi.SchoolCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.SchoolChoiceBasisDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.SchoolChoiceImplementStatusDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.SchoolGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.SchoolTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.Section504DisabilityDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.SectionCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.SectionCharacteristicDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.SectionClassPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.SectionCourseLevelCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.SectionOfferedGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.SectionProgram #
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.
Ed-Fi ODS SQL snippet
edfi.SectionTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.SeparationDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.SeparationReasonDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ServiceDeliveryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ServiceDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ServiceLocationTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ServicePrescriptionDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.ServiceProviderTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.SessionAcademicWeek #
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.
Ed-Fi ODS SQL snippet
edfi.SessionGradingPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.SexDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.SourceDimensionReportingTag #
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.
Ed-Fi ODS SQL snippet
edfi.SourceSystemDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.SpecialEducationExitReasonDescriptor #
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.
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.
Ed-Fi ODS SQL snippet
edfi.SpecialEducationSettingDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StaffClassificationDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StaffCredential #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StaffDemographicAncestryEthnicOrigin #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDemographicIdentificationDocument #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDemographicLanguage #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDemographicLanguageUse #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDemographicRace #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDemographicTribalAffiliation #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDemographicVisa #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StaffDirectoryAddress #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDirectoryAddressCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDirectoryAddressPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDirectoryElectronicMail #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDirectoryInternationalAddress #
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.
Ed-Fi ODS SQL snippet
edfi.StaffDirectoryTelephone #
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.
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.
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.
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.
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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.StaffEducatorPreparationProgram #
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.
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.
Ed-Fi ODS SQL snippet
edfi.StaffEducatorResearch #
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.
Ed-Fi ODS SQL snippet
edfi.StaffHighlyQualifiedAcademicSubject #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StaffIdentificationSystemDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StaffLeaveEventCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.StaffOtherName #
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.
Ed-Fi ODS SQL snippet
edfi.StaffPersonalIdentificationDocument #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StaffRecognition #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StaffSchoolAssociationAcademicSubject #
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.
Ed-Fi ODS SQL snippet
edfi.StaffSchoolAssociationGradeLevel #
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.
Ed-Fi ODS SQL snippet
edfi.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.
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.
Ed-Fi ODS SQL snippet
edfi.StateAbbreviationDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StateEducationAgencyAccountability #
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.
Ed-Fi ODS SQL snippet
edfi.StateEducationAgencyFederalFunds #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentAcademicRecordAcademicHonor #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAcademicRecordClassRanking #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAcademicRecordDiploma #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAcademicRecordGradePointAverage #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAcademicRecordRecognition #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAcademicRecordReportCard #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentAssessmentAccommodation #
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.
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.
Ed-Fi ODS SQL snippet
edfi.StudentAssessmentIndicator #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAssessmentItem #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAssessmentPerformanceLevel #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAssessmentPeriod #
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.
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.
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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.StudentAssessmentScoreResult #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAssessmentStudentObjectiveAssessment #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAssessmentStudentObjectiveAssessmentPerformanceLevel #
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.
Ed-Fi ODS SQL snippet
edfi.StudentAssessmentStudentObjectiveAssessmentScoreResult #
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.
Ed-Fi ODS SQL snippet
edfi.StudentCharacteristicDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentCohortAssociationSection #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentCompetencyObjectiveGeneralStudentProgramAssociation #
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.
Ed-Fi ODS SQL snippet
edfi.StudentCompetencyObjectiveStudentSectionAssociation #
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.
Ed-Fi ODS SQL snippet
edfi.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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicAncestryEthnicOrigin #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicDisability #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicDisabilityDesignation #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicIdentificationDocument #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicLanguage #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicLanguageUse #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicRace #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicStudentCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicStudentCharacteristicPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicTribalAffiliation #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDemographicVisa #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentDirectoryAddress #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDirectoryAddressCharacteristic #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDirectoryAddressPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDirectoryElectronicMail #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDirectoryInternationalAddress #
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.
Ed-Fi ODS SQL snippet
edfi.StudentDirectoryTelephone #
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentHealthAdditionalImmunization #
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.
Ed-Fi ODS SQL snippet
edfi.StudentHealthAdditionalImmunizationDate #
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.
Ed-Fi ODS SQL snippet
edfi.StudentHealthRequiredImmunization #
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.
Ed-Fi ODS SQL snippet
edfi.StudentHealthRequiredImmunizationDate #
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentIdentificationSystemDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentIEPAccommodation #
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.
Ed-Fi ODS SQL snippet
edfi.StudentIEPDisability #
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.
Ed-Fi ODS SQL snippet
edfi.StudentIEPDisabilityDesignation #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentIEPGoalAchievementPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.StudentIEPGoalIDEAEvent #
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.
Ed-Fi ODS SQL snippet
edfi.StudentIEPIDEAEvent #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentIEPServiceDeliveryIDEAEvent #
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.
Ed-Fi ODS SQL snippet
edfi.StudentIEPServiceDeliveryProvider #
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.StudentOtherName #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentPathMilestoneStatusEvent #
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.
Ed-Fi ODS SQL snippet
edfi.StudentPathPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentPathPhaseStatusEvent #
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.
Ed-Fi ODS SQL snippet
edfi.StudentPathPhaseStatusPeriod #
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.
Ed-Fi ODS SQL snippet
edfi.StudentPersonalIdentificationDocument #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentProgramAssociationService #
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentProgramEvaluationExternalEvaluator #
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.
Ed-Fi ODS SQL snippet
edfi.StudentProgramEvaluationStudentEvaluationElement #
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.
Ed-Fi ODS SQL snippet
edfi.StudentProgramEvaluationStudentEvaluationObjective #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentSchoolAssociationAlternativeGraduationPlan #
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.
Ed-Fi ODS SQL snippet
edfi.StudentSchoolAssociationEducationPlan #
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.
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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentSectionAssociationProgram #
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.StudentTransportationStudentBusDetails #
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.
Ed-Fi ODS SQL snippet
edfi.StudentTransportationStudentBusDetailsTravelDayofWeek #
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.
Ed-Fi ODS SQL snippet
edfi.StudentTransportationStudentBusDetailsTravelDirection #
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.
Ed-Fi ODS SQL snippet
edfi.SubmissionStatusDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.SupporterMilitaryConnectionDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.SurveyCategoryDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.SurveyLevelDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.SurveyQuestionMatrix #
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.SurveyQuestionResponseChoice #
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.
Ed-Fi ODS SQL snippet
edfi.SurveyQuestionResponseSurveyQuestionMatrixElementResponse #
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.
Ed-Fi ODS SQL snippet
edfi.SurveyQuestionResponseValue #
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.
Ed-Fi ODS SQL snippet
edfi.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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.SurveyResponseSurveyLevel #
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.
Ed-Fi ODS SQL snippet
edfi.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.
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.
Ed-Fi ODS SQL snippet
edfi.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.
Ed-Fi ODS SQL snippet
edfi.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.
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.TeachingCredentialBasisDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.TeachingCredentialDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.TechnicalSkillsAssessmentDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.TelephoneNumberTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.TermDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.TitleIPartAParticipantDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.TitleIPartAProgramServiceDescriptor #
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.
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.
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.
Ed-Fi ODS SQL snippet
edfi.TransportationTypeDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.TravelDayofWeekDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.TravelDirectionDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.TribalAffiliationDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.VisaDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.WeaponDescriptor #
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.
Ed-Fi ODS SQL snippet
edfi.WithdrawReasonDescriptor #
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.
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.
| Field | Type | Requiredness | Meaning | Example | ITD | Origin |
| 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.
| Field | Type | Requiredness | Meaning | Example | ITD | Origin |
| 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.
| Field | Type | Requiredness | Meaning | Example | ITD | Origin |
| 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.
| Field | Type | Requiredness | Meaning | Example | ITD | Origin |
| 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.
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.
| Field | Type | Requiredness | Meaning | Example | ITD | Origin |
| 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.
| Field | Type | Requiredness | Meaning | Example | ITD | Origin |
| 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.
| Field | Type | Requiredness | Meaning | Constraints / Range | Example | ITD | Origin |
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.
| Field | Type | Requiredness | Meaning | Constraints / Range | Example | ITD | Origin |
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.
record_state #
Owner: edfi_draft_record.record_state. Type: TEXT enum. Trace: GAP-A5.
| Value | Meaning |
draft | Entered or imported but not canonical; never appears in ordinary Ed-Fi lists and cannot satisfy references. |
canonical | Validated, acknowledged, and visible through canonical list/detail endpoints. |
rejected | Failed validation or governance checks; retained with validation_errors for correction. |
soft_deleted | Formerly 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.
| Value | Meaning |
api | A caller explicitly requested delete through a public API operation. |
import | A later import or sync removed or replaced the source row. |
correction | A privileged correction workflow invalidated the prior record. |
retention_policy | A configured retention policy removed ordinary visibility while preserving audit facts. |
standard_status #
Owner: edfi_descriptor_code.standard_status. Type: TEXT enum. Trace: GAP-A4.
| Value | Meaning |
ed_fi_standard | Seeded from an Ed-Fi descriptor value in the ed-fi.org namespace. |
district_local | Tenant-governed local descriptor value outside the ed-fi.org namespace. |
platform_extension | Platform-owned governance value needed to operate the surface. |
deprecated | Retained 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.
| Value | Meaning |
queued | The platform accepted the job but has not started row processing. |
processing | Rows are being validated, canonicalized, exported, or reported. |
completed | The job finished with no row-level errors. |
completed_with_errors | The job finished and retained per-row errors for caller review. |
failed | The job could not complete because of a job-level error. |
cancelled | The 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.
| Code | Meaning | Trace |
edfi:platform3_roster_required | A write named a student, staff, school, class, course, section, or enrollment anchor that does not exist in OneRoster. | ITD |
edfi:id_provenance_conflict | A 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_delete | A caller attempted a hard delete through an ordinary Ed-Fi operation. | ITD |
edfi:descriptor_not_governed | A descriptor value is missing from the governed descriptor registry and was not written through the descriptor-create path. | ITD |
edfi:draft_not_canonical | A draft record was used where only a canonical acknowledged record is allowed. | ITD |
edfi:invalid_query_parameter | A list endpoint received an unsupported, malformed, or mixed paging/filter parameter, including a request that combines cursor with offset. | ITD |
edfi:if_match_required | A mutation that can overwrite visible work did not include If-Match. | ITD |
edfi:etag_mismatch | The supplied If-Match value does not match the current canonical ETag. | ITD |
edfi:idempotency_conflict | An Idempotency-Key was replayed with a different request hash for the same tenant, route, and operation. | ITD |
edfi:privacy_redacted | A 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
- 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
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
- 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 |
ReferenceInlineCommonProperty |
required |
The achievement earned by the individual upon fulfilling specified criteria. |
object reference; required |
Ed-Fi field source |
pass-through |
| AcademicHonorCategory AcademicHonorCategoryDescriptor |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
DateDATE |
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 |
DateDATE |
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
- 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
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
- 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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
DateDATE |
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 |
DateDATE |
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 |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(35) |
required |
An accountability rating level, designation, or assessment. |
max length 35 characters; required |
Ed-Fi field source |
pass-through |
| RatingDate RatingDate |
DateDATE |
optional |
The date the rating was awarded. |
calendar date in ISO 8601 full-date form; optional |
Ed-Fi field source |
pass-through |
| SchoolYear SchoolYearTypeReference |
ReferenceSchoolYearEnumerationProperty |
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 |
StringVARCHAR(35) |
optional |
The organization that assessed the rating. |
max length 35 characters; optional |
Ed-Fi field source |
pass-through |
| RatingProgram RatingProgram |
StringVARCHAR(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- 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 |
StringVARCHAR(60) |
optional |
The title assigned to the achievement. |
max length 60 characters; optional |
Ed-Fi field source |
pass-through |
| AchievementCategory AchievementCategoryDescriptor |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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
- 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
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
- 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 |
StringVARCHAR(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 |
DateDATE |
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(50) |
optional |
The apartment, room, or suite number of an address. |
max length 50 characters; optional |
Ed-Fi field source |
pass-through |
| BuildingSiteNumber BuildingSiteNumber |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(20) |
optional |
The geographic latitude of the physical address. |
max length 20 characters; optional |
Ed-Fi field source |
pass-through |
| Longitude Longitude |
StringVARCHAR(20) |
optional |
The geographic longitude of the physical address. |
max length 20 characters; optional |
Ed-Fi field source |
pass-through |
| Period Periods |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
An indication that the address should not be published. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| CongressionalDistrict CongressionalDistrict |
StringVARCHAR(30) |
optional |
The congressional district in which an address is located. |
max length 30 characters; optional |
Ed-Fi field source |
pass-through |
| Locale LocaleDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(75) |
required |
The contact's first name. |
max length 75 characters; required |
Ed-Fi field source |
pass-through |
| LastSurname LastSurname |
StringVARCHAR(75) |
required |
The contact's last name. |
max length 75 characters; required |
Ed-Fi field source |
pass-through |
| LoginId LoginId |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
StringVARCHAR(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
- 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 |
StringVARCHAR(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 |
ReferenceInlineCommonProperty |
required |
Full legal name of the person. |
object reference; required |
Ed-Fi field source |
pass-through |
| Sex SexDescriptor |
ReferenceDescriptorProperty |
optional |
A person's birth sex. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| GenderIdentity GenderIdentity |
StringVARCHAR(60) |
optional |
The gender the person identifies themselves as. |
max length 60 characters; optional |
Ed-Fi field source |
pass-through |
| BirthDate BirthDate |
DateDATE |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
optional collection |
The set of elements that describes an international address. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Telephone Telephones |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty 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 |
ReferenceInlineCommonProperty |
optional |
Contains information relative to citizenship status and its associated probationary documentation. |
object reference; optional |
Ed-Fi field source |
pass-through |
| Language Languages |
ReferenceCommonProperty |
optional collection |
The language(s) the individual uses to communicate. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| BackgroundCheck BackgroundChecks |
ReferenceCommonProperty |
optional collection |
Applicant background check history and disposition. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Disability Disabilities |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
Indicator of whether individual is a first generation college student. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ApplicantCharacteristic ApplicantCharacteristics |
ReferenceCommonProperty |
optional collection |
Reflects important characteristics of the applicant's home situation. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| HighestCompletedLevelOfEducation HighestCompletedLevelOfEducationDescriptor |
ReferenceDescriptorProperty 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 |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty 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 |
ReferenceCommonProperty |
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 |
StringVARCHAR(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
optional |
The date of acceptance, if offered. |
calendar date in ISO 8601 full-date form; optional |
Ed-Fi field source |
pass-through |
| ApplicationSource ApplicationSourceDescriptor |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
optional |
The source for the application. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| WithdrawDate WithdrawDate |
DateDATE |
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 |
ReferenceDescriptorProperty |
optional |
Reason applicant withdrew application. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| ScoreResult ScoreResults |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
optional |
The open staff position associated with the application. |
object reference; optional |
Ed-Fi field source |
pass-through |
| RecruitmentEventAttendance RecruitmentEventAttendances |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
DateDATE |
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 |
DateDATE |
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 |
NumberINT |
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 |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceSchoolYearEnumerationProperty |
required |
The identifier for the school year. |
object reference; required |
Ed-Fi field source |
pass-through |
| Term TermDescriptor |
ReferenceDescriptorProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(255) |
required |
The title or name of the assessment. |
max length 255 characters; required |
Ed-Fi field source |
pass-through |
| AssessmentIdentificationCode IdentificationCodes |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceCommonProperty |
optional collection |
Definition of the scores to be expected from this assessment. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| AssessmentPerformanceLevel PerformanceLevels |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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 |
NumberINT |
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 |
DateDATE |
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 |
NumberDECIMAL(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 |
StringVARCHAR(100) |
optional |
Reflects the specific nomenclature used for assessment. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| AssessmentPeriod Periods |
ReferenceCommonProperty |
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 |
StringVARCHAR(60) |
optional |
The assessment family this assessment is a member of. |
max length 60 characters; optional |
Ed-Fi field source |
pass-through |
| SectionOrProgramChoice SectionOrProgramChoice |
ReferenceChoiceProperty |
optional |
The section(s) to which the assessment is associated. |
object reference; optional |
Ed-Fi field source |
pass-through |
| Namespace Namespace |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
BooleanBOOLEAN |
optional |
Indicates that the assessment is adaptive. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| PlatformType PlatformTypes |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
optional collection |
The anticipated dates for the assessment or administration window. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| AssessmentBatteryPart AssessmentBatteryParts |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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 |
StringVARCHAR(1024) |
optional |
The text of the item. |
max length 1024 characters; optional |
Ed-Fi field source |
pass-through |
| PossibleResponse PossibleResponses |
ReferenceCommonProperty |
optional collection |
A possible response to an assessment item. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| ExpectedTimeAssessed ExpectedTimeAssessed |
NumberVARCHAR(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 |
StringVARCHAR(100) |
optional |
Reflects the specific nomenclature used for assessment item. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| LearningStandard LearningStandards |
ReferenceDomainEntityProperty |
optional collection |
Learning standard tested by this item. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Assessment AssessmentReference |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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
- 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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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
- 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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(35) |
optional |
The minimum score possible on the assessment. |
max length 35 characters; optional |
Ed-Fi field source |
pass-through |
| MaximumScore MaximumScore |
StringVARCHAR(35) |
optional |
The maximum score possible on the assessment. |
max length 35 characters; optional |
Ed-Fi field source |
pass-through |
| ResultDatatypeType ResultDatatypeTypeDescriptor |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
required collection |
Learning standard associated with the score range. |
object reference; required collection |
Ed-Fi field source |
pass-through |
| ScoreRangeId ScoreRangeId |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(35) |
required |
The minimum score in the score range. |
max length 35 characters; required |
Ed-Fi field source |
pass-through |
| MaximumScore MaximumScore |
StringVARCHAR(35) |
required |
The maximum score in the score range. |
max length 35 characters; required |
Ed-Fi field source |
pass-through |
| ObjectiveAssessment ObjectiveAssessmentReference |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(255) |
optional |
The reported reason for a student's absence. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| EducationalEnvironment EducationalEnvironmentDescriptor |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
StringVARCHAR(100) |
optional |
A description of the account balance sheet dimension. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTags |
ReferenceDescriptorProperty 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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
- 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
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
required collection |
The class periods that compose this bell schedule. |
object reference; required collection |
Ed-Fi field source |
pass-through |
| Date Dates |
DateDATE |
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 |
StringVARCHAR(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 |
TimeTIME |
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 |
TimeTIME |
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 |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
DateDATE |
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 |
StringVARCHAR(30) |
optional |
The city the student was born in. |
max length 30 characters; optional |
Ed-Fi field source |
pass-through |
| BirthStateAbbreviation BirthStateAbbreviationDescriptor |
ReferenceDescriptorProperty 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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 |
DateDATE |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
required |
Indicates the type of calendar. |
object reference; required; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| GradeLevel GradeLevels |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceSchoolYearEnumerationProperty |
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
- 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 |
DateDATE |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
StringVARCHAR(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 |
ReferenceInlineCommonProperty |
required |
Full legal name of the person. |
object reference; required |
Ed-Fi field source |
pass-through |
| OtherName OtherNames |
ReferenceCommonProperty |
optional collection |
Other names associated with a person. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Sex SexDescriptor |
ReferenceDescriptorProperty |
required |
The sex of the person. |
object reference; required; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| GenderIdentity GenderIdentity |
StringVARCHAR(60) |
optional |
The gender the candidate identifies themselves as. |
max length 60 characters; optional |
Ed-Fi field source |
pass-through |
| BirthData BirthData |
ReferenceInlineCommonProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
optional collection |
The set of elements that describes an international address. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Telephone Telephones |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
StringVARCHAR(255) |
optional |
Locator for the candidate's photo. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| HispanicLatinoEthnicity HispanicLatinoEthnicity |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty 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 |
ReferenceInlineCommonProperty |
optional |
Contains information relative to citizenship status and its associated probationary documentation. |
object reference; optional |
Ed-Fi field source |
pass-through |
| EconomicDisadvantage EconomicDisadvantageDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
optional collection |
Reflects important characteristics of the candidate. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| LimitedEnglishProficiency LimitedEnglishProficiencyDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
optional collection |
The language(s) the individual uses to communicate. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Disability Disabilities |
ReferenceCommonProperty |
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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
optional collection |
Indicator(s) or metric(s) computed for the candidate. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| LoginId LoginId |
StringVARCHAR(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 |
NumberDECIMAL(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 |
ReferenceCommonProperty |
optional |
Applicant background check history and disposition. |
object reference; optional |
Ed-Fi field source |
pass-through |
| EnglishLanguageExam EnglishLanguageExamDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
Indicates whether an individual is a first-generation college student. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| EPPProgramDegree EPPProgramDegrees |
ReferenceCommonProperty |
optional collection |
Details of the educator preparation program degree. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Person PersonReference |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
StringVARCHAR(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
- 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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
optional collection |
Information around the area(s) of specialization for an individual. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| CohortYear CohortYears |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(200) |
optional |
The name for a group of indicators. |
max length 200 characters; optional |
Ed-Fi field source |
pass-through |
| IndicatorName IndicatorName |
StringVARCHAR(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 |
DateDATE |
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 |
DateDATE |
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 |
StringVARCHAR(60) |
required |
The value of the indicator or metric. |
max length 60 characters; required |
Ed-Fi field source |
pass-through |
| DesignatedBy DesignatedBy |
StringVARCHAR(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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(64) |
required |
The title of the certification. |
max length 64 characters; required |
Ed-Fi field source |
pass-through |
| EducationOrganization EducationOrganizationReference |
ReferenceDomainEntityProperty |
optional |
The education organization that authorizes the certification, often a state education agency. |
object reference; optional |
Ed-Fi field source |
pass-through |
| CertificationLevel CertificationLevelDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
optional |
The field of certification. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| GradeLevel GradeLevels |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
optional collection |
The certification exams required for the certification. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| EffectiveDate EffectiveDate |
DateDATE |
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 |
DateDATE |
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(60) |
required |
The title of the certification exam. |
max length 60 characters; required |
Ed-Fi field source |
pass-through |
| EducationOrganization EducationOrganizationReference |
ReferenceDomainEntityProperty |
optional |
The education organization associated with the certification exam. |
object reference; optional |
Ed-Fi field source |
pass-through |
| CertificationExamType CertificationExamTypeDescriptor |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
NumberINT |
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 |
NumberDECIMAL(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 |
BooleanBOOLEAN |
optional |
Indicator that the person passed the certification exam. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| CertificationExamStatus CertificationExamStatusDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- 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
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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(100) |
optional |
A descriptive name for the account. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| BalanceSheetBalanceSheetDimension BalanceSheetDimensionReference |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional |
References the function dimension with which the chart of account is associated. |
object reference; optional |
Ed-Fi field source |
pass-through |
| FundFundDimension FundDimensionReference |
ReferenceDomainEntityProperty |
optional |
References the fund dimension with which the chart of account is associated. |
object reference; optional |
Ed-Fi field source |
pass-through |
| ObjectObjectDimension ObjectDimensionReference |
ReferenceDomainEntityProperty |
optional |
References the object dimension with which the chart of account is associated. |
object reference; optional |
Ed-Fi field source |
pass-through |
| OperationalUnitOperationalUnitDimension OperationalUnitDimensionReference |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional |
References the program dimension with which the chart of account is associated. |
object reference; optional |
Ed-Fi field source |
pass-through |
| ProjectProjectDimension ProjectDimensionReference |
ReferenceDomainEntityProperty |
optional |
References the project dimension with which the chart of account is associated. |
object reference; optional |
Ed-Fi field source |
pass-through |
| SourceSourceDimension SourceDimensionReference |
ReferenceDomainEntityProperty |
optional |
References the source dimension with which the chart of account is associated. |
object reference; optional |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTags |
ReferenceCommonProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceCommonProperty |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
optional collection |
The meeting time(s) for a class period. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| OfficialAttendancePeriod OfficialAttendancePeriod |
BooleanBOOLEAN |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
NumberINT |
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 |
NumberINT |
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 |
NumberINT |
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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(1024) |
optional |
The description of the cohort and its purpose. |
max length 1024 characters; optional |
Ed-Fi field source |
pass-through |
| CohortType CohortTypeDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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
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
- 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 |
ReferenceSchoolYearEnumerationProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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
- 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
Used By (1)
- CohortYear.CohortYearType (required)
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
StringVARCHAR(120) |
optional |
The Identifier for the competency objective. |
max length 120 characters; optional |
Ed-Fi field source |
pass-through |
| Objective Objective |
StringVARCHAR(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 |
StringVARCHAR(1024) |
optional |
The description of the student competency objective. |
max length 1024 characters; optional |
Ed-Fi field source |
pass-through |
| ObjectiveGradeLevel ObjectiveGradeLevelDescriptor |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
ReferenceInlineCommonProperty |
required |
Full legal name of the person. |
object reference; required |
Ed-Fi field source |
pass-through |
| OtherName OtherNames |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(60) |
optional |
The gender the contact identifies themselves as. |
max length 60 characters; optional |
Ed-Fi field source |
pass-through |
| Address Addresses |
ReferenceCommonProperty |
optional collection |
Contact's address, if different from the student address. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| InternationalAddress InternationalAddresses |
ReferenceCommonProperty |
optional collection |
The set of elements that describes an international address. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Telephone Telephones |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
optional |
Relates the contact to a generic person. |
object reference; optional |
Ed-Fi field source |
pass-through |
| HighestCompletedLevelOfEducation HighestCompletedLevelOfEducationDescriptor |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(50) |
optional |
The version identifier for the content. |
max length 50 characters; optional |
Ed-Fi field source |
pass-through |
| URI URI |
StringVARCHAR(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 |
ReferenceChoiceProperty |
optional |
The date or year that this content was first published. |
object reference; optional |
Ed-Fi field source |
pass-through |
| PublicationStatus PublicationStatusDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
optional |
Optionally relates the entity mandating the use of the content standard. |
object reference; optional |
Ed-Fi field source |
pass-through |
| BeginDate BeginDate |
DateDATE |
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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
DateDATE |
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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
NumberINT |
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 |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
StringVARCHAR(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 |
NumberINT |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceInlineCommonProperty |
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 |
ReferenceInlineCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional collection |
Learning standard(s) to be taught by the course. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| MaxCompletionsForCredit MaxCompletionsForCredit |
NumberINT |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(120) |
optional |
The organization code or name assigning the Identification Code. |
max length 120 characters; optional |
Ed-Fi field source |
pass-through |
| CourseCatalogURL CourseCatalogURL |
StringVARCHAR(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
- 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
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
- 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
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
NumberINT |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
required |
The course being offered by the school. |
object reference; required |
Ed-Fi field source |
pass-through |
| CourseLevelCharacteristic CourseLevelCharacteristics |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceInlineCommonProperty |
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 |
ReferenceInlineCommonProperty |
optional |
The number of credits a student earned for completing a given course. |
object reference; optional |
Ed-Fi field source |
pass-through |
| EarnedAdditionalCredits EarnedAdditionalCredits |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional collection |
The section(s) associated with the course transcript. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| ResponsibleTeacherStaff ResponsibleTeacherStaffReference |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceCommonProperty |
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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 |
StringVARCHAR(255) |
required |
The namespace for the credential. |
max length 255 characters; required |
Ed-Fi field source |
pass-through |
| CredentialType CredentialTypeDescriptor |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
StringVARCHAR(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 |
StringVARCHAR(64) |
optional |
The title of the certification obtained by the person. |
max length 64 characters; optional |
Ed-Fi field source |
pass-through |
| Certification CertificationReference |
ReferenceDomainEntityProperty |
optional |
Reference to the certification associated with the person's credential. |
object reference; optional |
Ed-Fi field source |
pass-through |
| CertificationRoute CertificationRouteDescriptor |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
ReferenceDomainEntityProperty |
optional |
The person who obtained and is holding the credential. |
object reference; optional |
Ed-Fi field source |
pass-through |
| StudentAcademicRecord StudentAcademicRecords |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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
- 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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
ReferenceInlineCommonProperty |
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 |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceInlineCommonProperty |
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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceInlineCommonProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
DateDATE |
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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
True if service is a primary service. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ServiceBeginDate ServiceBeginDate |
DateDATE |
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 |
DateDATE |
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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(75) |
required |
The formal name of the education organization. |
max length 75 characters; required |
Ed-Fi field source |
pass-through |
| Location Location |
StringVARCHAR(75) |
required |
The location, typically city and state, for the institution. |
max length 75 characters; required |
Ed-Fi field source |
pass-through |
| PositionTitle PositionTitle |
StringVARCHAR(100) |
required |
The descriptive name of an individual's position. |
max length 100 characters; required |
Ed-Fi field source |
pass-through |
| AcademicSubject AcademicSubjectDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
DateDATE |
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 |
DateDATE |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceInlineCommonProperty |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
StringVARCHAR(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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(80) |
optional |
A description of the disability diagnosis. |
max length 80 characters; optional |
Ed-Fi field source |
pass-through |
| OrderOfDisability OrderOfDisability |
NumberINT |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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
- 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
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
- 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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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 |
DateDATE |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional collection |
The staff responsible for enforcing the discipline action. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| ResponsibilitySchool ResponsibilitySchoolReference |
ReferenceDomainEntityProperty |
required |
School responsible for student's discipline. |
object reference; required |
Ed-Fi field source |
pass-through |
| AssignmentSchool AssignmentSchoolReference |
ReferenceDomainEntityProperty |
optional |
School where student is transferred for discipline. |
object reference; optional |
Ed-Fi field source |
pass-through |
| IEPPlacementMeetingIndicator IEPPlacementMeetingIndicator |
BooleanBOOLEAN |
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 |
ReferenceAssociationProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
DateDATE |
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 |
TimeTIME |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(1024) |
optional |
The description for an incident. |
max length 1024 characters; optional |
Ed-Fi field source |
pass-through |
| ReporterDescription ReporterDescriptionDescriptor |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(75) |
optional |
Identifies the reporter of the discipline incident by name. |
max length 75 characters; optional |
Ed-Fi field source |
pass-through |
| Behavior Behaviors |
ReferenceCommonProperty |
optional collection |
Describes behavior by category and provides a detailed description. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Weapon Weapons |
ReferenceDescriptorProperty 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 |
BooleanBOOLEAN |
optional |
Indicator of whether the incident was reported to law enforcement. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| CaseNumber CaseNumber |
StringVARCHAR(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 |
NumberMONEY |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No 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
- 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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained fields in the Ed-Fi Handbook for this UDM entry. See type characteristics, usage, source link, and Used By references below. |
Used By (1)
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- 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 |
StringVARCHAR(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 |
ReferenceChoiceProperty |
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 |
NumberMONEY |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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
- 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 |
ReferenceDomainEntityProperty |
optional collection |
Relates the education content source to the education content. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| LearningResourceMetadataURI LearningResourceMetadataURIs |
StringVARCHAR(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 |
StringVARCHAR(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
- 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 |
NumberINT |
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 |
StringVARCHAR(75) |
required |
The full, legally accepted name of the institution. |
max length 75 characters; required |
Ed-Fi field source |
pass-through |
| ShortNameOfInstitution ShortNameOfInstitution |
StringVARCHAR(75) |
optional |
A short name for the institution. |
max length 75 characters; optional |
Ed-Fi field source |
pass-through |
| EducationOrganizationCategory Categories |
ReferenceDescriptorProperty 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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(60) |
optional |
The person, organization, or department that defined the metric. |
max length 60 characters; optional |
Ed-Fi field source |
pass-through |
| IndicatorValue IndicatorValue |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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
- 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 |
NumberINT |
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 |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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
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
- 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 |
NumberINT |
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 |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
DateDATE |
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 |
StringVARCHAR(60) |
optional |
The title of the research experience. |
max length 60 characters; optional |
Ed-Fi field source |
pass-through |
| ResearchExperienceDescription ResearchExperienceDescription |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
BooleanBOOLEAN |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
optional |
Type of employment separation. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| SeparationReason SeparationReasonDescriptor |
ReferenceDescriptorProperty |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceSchoolYearEnumerationProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- 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
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
- 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
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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(255) |
optional |
The long description of the evaluation. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| MinNumericRating MinNumericRating |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
optional |
The type of the evaluation. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| EvaluationRatingLevel RatingLevels |
ReferenceCommonProperty |
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 |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
NumberINT |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
optional |
The type of the evaluation. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| ElementRatingLevel RatingLevels |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
optional collection |
The numerical summary rating or score for the evaluation element. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| EvaluationElementRatingLevel EvaluationElementRatingLevelDescriptor |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
| Feedback Feedback |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(255) |
optional |
The long description of the evaluation objective. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| SortOrder SortOrder |
NumberINT |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
optional collection |
The numerical summary rating or score for the evaluation objective. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| ObjectiveRatingLevel ObjectiveRatingLevelDescriptor |
ReferenceDescriptorProperty |
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 |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateTimeTIMESTAMP |
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 |
ReferenceCommonProperty |
optional collection |
The person(s) that conducted the performance evaluation. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| EvaluationRatingResult Results |
ReferenceCommonProperty |
optional collection |
The numerical summary rating or score for the evaluation. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| EvaluationRatingLevel EvaluationRatingLevelDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
optional |
The section associated with a classroom evaluation. |
object reference; optional |
Ed-Fi field source |
pass-through |
| EvaluationRatingStatus EvaluationRatingStatusDescriptor |
ReferenceDescriptorProperty |
optional |
The status of the performance evaluation. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| ActualDuration ActualDuration |
NumberINT |
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
- 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
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
- 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
- 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 |
ReferenceDomainEntityProperty |
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 |
NumberINT |
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 |
StringVARCHAR(1024) |
required |
The evaluation criterion description for the evaluation rubric dimension. |
max length 1024 characters; required |
Ed-Fi field source |
pass-through |
| EvaluationRubricRatingLevel EvaluationRubricRatingLevelDescriptor |
ReferenceDescriptorProperty 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 |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- 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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
StringVARCHAR(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
- 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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional |
The school the fieldwork experience is conducted in. |
object reference; optional |
Ed-Fi field source |
pass-through |
| EducatorPreparationProgram EducatorPreparationProgramReference |
ReferenceDomainEntityProperty |
optional |
The educator preparation program the fieldwork experience is associated with. |
object reference; optional |
Ed-Fi field source |
pass-through |
| FieldworkType FieldworkTypeDescriptor |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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 |
BooleanBOOLEAN |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
StringVARCHAR(100) |
optional |
A description of the account function dimension. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTags |
ReferenceDescriptorProperty 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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
StringVARCHAR(100) |
optional |
A description of the account fund dimension. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTags |
ReferenceDescriptorProperty 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceCommonProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
DateDATE |
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 |
ReferenceDomainEntityProperty |
optional |
The evaluation element associated with the goal. |
object reference; optional |
Ed-Fi field source |
pass-through |
| EvaluationObjective EvaluationObjectiveReference |
ReferenceDomainEntityProperty |
optional |
The evaluation objective associated with the goal. |
object reference; optional |
Ed-Fi field source |
pass-through |
| GoalType GoalTypeDescriptor |
ReferenceDescriptorProperty |
optional |
The type of the goal. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| GoalDescription GoalDescription |
StringVARCHAR(1024) |
optional |
The description of the goal. |
max length 1024 characters; optional |
Ed-Fi field source |
pass-through |
| DueDate DueDate |
DateDATE |
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 |
BooleanBOOLEAN |
optional |
Indicator that the goal was completed. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| CompletedDate CompletedDate |
DateDATE |
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 |
| ParentGoal ParentGoalReference |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
Used By (1)
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
NumberDECIMAL(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceAssociationProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
optional collection |
A collection of learning standards associated with the grade. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| CurrentGradeIndicator CurrentGradeIndicator |
BooleanBOOLEAN |
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 |
DateDATE |
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 |
StringVARCHAR(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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(255) |
required |
The local identifier assigned to a section. |
max length 255 characters; required |
Ed-Fi field source |
pass-through |
| Section SectionReference |
ReferenceDomainEntityProperty |
optional |
The section associated with the gradebook entry. |
object reference; optional |
Ed-Fi field source |
pass-through |
| DateAssigned DateAssigned |
DateDATE |
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 |
StringVARCHAR(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 |
StringVARCHAR(1024) |
optional |
A description of the assignment, homework, or classroom assessment. |
max length 1024 characters; optional |
Ed-Fi field source |
pass-through |
| DueDate DueDate |
DateDATE |
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 |
TimeTIME |
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 |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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 |
ReferenceDomainEntityProperty |
optional |
Identifies the grading period for the gradebook entry. |
object reference; optional |
Ed-Fi field source |
pass-through |
| LearningStandard LearningStandards |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- 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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
NumberINT |
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 |
ReferenceSchoolYearEnumerationProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceInlineCommonProperty |
required |
The total number of credits required for graduation under this plan. |
object reference; required |
Ed-Fi field source |
pass-through |
| CreditsBySubject CreditsBySubjects |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceSchoolYearEnumerationProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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
- 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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
True if service is a primary service. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ServiceBeginDate ServiceBeginDate |
DateDATE |
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 |
DateDATE |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(2048) |
optional |
Detailed and summary notes recorded during the event. |
max length 2048 characters; optional |
Ed-Fi field source |
pass-through |
| EventReason EventReasonDescriptor |
ReferenceDescriptorProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(60) |
optional |
The title of the document given by the issuer. |
max length 60 characters; optional |
Ed-Fi field source |
pass-through |
| PersonalInformationVerification PersonalInformationVerificationDescriptor |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
StringVARCHAR(120) |
optional |
The unique identifier on the issuer's identification system. |
max length 120 characters; optional |
Ed-Fi field source |
pass-through |
| IssuerName IssuerName |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
- 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(150) |
required |
The first line of the address. |
max length 150 characters; required |
Ed-Fi field source |
pass-through |
| AddressLine2 AddressLine2 |
StringVARCHAR(150) |
optional |
The second line of the address. |
max length 150 characters; optional |
Ed-Fi field source |
pass-through |
| AddressLine3 AddressLine3 |
StringVARCHAR(150) |
optional |
The third line of the address. |
max length 150 characters; optional |
Ed-Fi field source |
pass-through |
| AddressLine4 AddressLine4 |
StringVARCHAR(150) |
optional |
The fourth line of the address. |
max length 150 characters; optional |
Ed-Fi field source |
pass-through |
| Country CountryDescriptor |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(20) |
optional |
The geographic latitude of the physical address. |
max length 20 characters; optional |
Ed-Fi field source |
pass-through |
| Longitude Longitude |
StringVARCHAR(20) |
optional |
The geographic longitude of the physical address. |
max length 20 characters; optional |
Ed-Fi field source |
pass-through |
| BeginDate BeginDate |
DateDATE |
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 |
DateDATE |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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 |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceInlineCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceCommonProperty |
optional collection |
The times at which this intervention is scheduled to meet. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Staff Staffs |
ReferenceDomainEntityProperty |
optional collection |
Relates the staff member associated with the Intervention. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| EducationOrganization EducationOrganizationReference |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
NumberINT |
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 |
NumberINT |
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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
NumberINT |
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 |
ReferenceDescriptorProperty |
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
- 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
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
- 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 |
ReferenceInlineCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
NumberINT |
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 |
NumberINT |
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 |
StringVARCHAR(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
- 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 |
ReferenceInlineCommonProperty |
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 |
ReferenceDomainEntityProperty |
required |
Reference to the intervention prescription being studied. |
object reference; required |
Ed-Fi field source |
pass-through |
| InterventionEffectiveness InterventionEffectivenesses |
ReferenceCommonProperty |
optional collection |
Measurement of the effectiveness of the intervention study per diagnosis. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Participants Participants |
NumberINT |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
True if service is a primary service. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ServiceBeginDate ServiceBeginDate |
DateDATE |
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 |
DateDATE |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(75) |
required |
A short description or name of the entity. |
max length 75 characters; required |
Ed-Fi field source |
pass-through |
| Description Description |
StringVARCHAR(1024) |
optional |
An extended written representation of the education content. |
max length 1024 characters; optional |
Ed-Fi field source |
pass-through |
| Author Authors |
StringVARCHAR(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 |
BooleanBOOLEAN |
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 |
StringVARCHAR(50) |
optional |
The organization credited with publishing the resource. |
max length 50 characters; optional |
Ed-Fi field source |
pass-through |
| TimeRequired TimeRequired |
NumberVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
ReferenceInlineCommonProperty |
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 |
ReferenceChoiceProperty |
optional |
The date or year that this content was first published. |
object reference; optional |
Ed-Fi field source |
pass-through |
| AppropriateSex AppropriateSexes |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
StringVARCHAR(10) |
optional |
The version identifier for the content. |
max length 10 characters; optional |
Ed-Fi field source |
pass-through |
| LearningStandard LearningStandardReference |
ReferenceDomainEntityProperty |
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
- 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 |
StringVARCHAR(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 |
ReferenceInlineCommonProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
required |
The content standard from which the learning standard was derived. |
object reference; required |
Ed-Fi field source |
pass-through |
| URI URI |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
NumberDECIMAL(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
NumberINT |
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 |
NumberINT |
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 |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
NumberINT |
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 |
StringVARCHAR(100) |
optional |
A descriptive name for the account. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| ChartOfAccount ChartOfAccountReference |
ReferenceDomainEntityProperty |
required |
References the chart of account with which the local account is associated. |
object reference; required |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTags |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
NumberMONEY |
required |
Current balance for the account. |
required |
Ed-Fi field source |
pass-through |
| FinancialCollection FinancialCollectionDescriptor |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
NumberMONEY |
required |
Current balance for the account. |
required |
Ed-Fi field source |
pass-through |
| FinancialCollection FinancialCollectionDescriptor |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
NumberMONEY |
required |
Current balance for the account. |
required |
Ed-Fi field source |
pass-through |
| FinancialCollection FinancialCollectionDescriptor |
ReferenceDescriptorProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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 |
NumberINT |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
optional |
For subdistricts; the LEA the subdistrict is a component of. |
object reference; optional |
Ed-Fi field source |
pass-through |
| EducationServiceCenter EducationServiceCenterReference |
ReferenceDomainEntityProperty |
optional |
The ESC of which the LEA is an organizational component. |
object reference; optional |
Ed-Fi field source |
pass-through |
| StateEducationAgency StateEducationAgencyReference |
ReferenceDomainEntityProperty |
optional |
The SEA of which the LEA is an organizational component. |
object reference; optional |
Ed-Fi field source |
pass-through |
| FederalLocaleCode FederalLocaleCodeDescriptor |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceSchoolYearEnumerationProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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
- 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
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
- 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 |
NumberINT |
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 |
| InnovativeProgramsFundsReceived InnovativeProgramsFundsReceived |
NumberMONEY |
optional |
The total Title V, Part A funds received by LEAs. |
optional |
Ed-Fi field source |
pass-through |
| SchoolImprovementAllocation SchoolImprovementAllocation |
NumberMONEY |
optional |
The amount of Section 1003(a) and 1003(g) allocations to LEAs. |
optional |
Ed-Fi field source |
pass-through |
| SchoolImprovementReservedFundsPercentage SchoolImprovementReservedFundsPercentage |
NumberDECIMAL(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 |
NumberMONEY |
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 |
NumberMONEY |
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 |
NumberDECIMAL(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
NumberMONEY |
required |
Current balance for the account. |
required |
Ed-Fi field source |
pass-through |
| FinancialCollection FinancialCollectionDescriptor |
ReferenceDescriptorProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
NumberMONEY |
required |
Current balance for the account. |
required |
Ed-Fi field source |
pass-through |
| FinancialCollection FinancialCollectionDescriptor |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
NumberINT |
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 |
NumberINT |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- 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 |
TimeTIME |
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 |
TimeTIME |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
True if service is a primary service. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ServiceBeginDate ServiceBeginDate |
DateDATE |
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 |
DateDATE |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(75) |
optional |
The individual's maiden name. |
max length 75 characters; optional |
Ed-Fi field source |
pass-through |
| PreferredFirstName PreferredFirstName |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
True if service is a primary service. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ServiceBeginDate ServiceBeginDate |
DateDATE |
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 |
DateDATE |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
StringVARCHAR(100) |
optional |
A description of the account object dimension. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTags |
ReferenceDescriptorProperty 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
NumberDECIMAL(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 |
ReferenceCommonProperty |
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 |
NumberDECIMAL(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
optional collection |
References individual test items, if appropriate. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| LearningStandard LearningStandards |
ReferenceDomainEntityProperty |
optional collection |
Learning standard tested by this objective assessment. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| ParentObjectiveAssessment ParentObjectiveAssessments |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(100) |
optional |
The descriptive name of an individual's position. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| RequisitionNumber RequisitionNumber |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceSchoolYearEnumerationProperty |
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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
Indicator of whether the open staff position is currently active. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| MaxSalary MaxSalary |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
StringVARCHAR(20) |
optional |
Identifier assigned to the position to be filled. |
max length 20 characters; optional |
Ed-Fi field source |
pass-through |
| Term TermDescriptor |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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
- 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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
StringVARCHAR(100) |
optional |
A description of the account operational unit dimension. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTags |
ReferenceDescriptorProperty 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
NumberINT |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
DateDATE |
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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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)
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
NumberINT |
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 |
StringVARCHAR(1024) |
optional |
Additional information describing the path's phase. |
max length 1024 characters; optional |
Ed-Fi field source |
pass-through |
| PathMilestone PathMilestones |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(255) |
optional |
The long description of the performance evaluation. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| Term TermDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceSchoolYearEnumerationProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
optional |
An indicator of whether the performance evaluation was announced or not. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| CoteachingStyleObserved CoteachingStyleObservedDescriptor |
ReferenceDescriptorProperty |
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 |
NumberINT |
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 |
ReferenceCommonProperty |
optional collection |
The numerical summary rating or score for the performance evaluation. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| PerformanceEvaluationRatingLevel PerformanceEvaluationRatingLevelDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
optional collection |
The person(s) that conducted the performance evaluation. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| ScheduleDate ScheduleDate |
DateDATE |
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 |
TimeTIME |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
DateDATE |
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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(1024) |
optional |
Additional text provided to define the response value. |
max length 1024 characters; optional |
Ed-Fi field source |
pass-through |
| CorrectResponse CorrectResponse |
BooleanBOOLEAN |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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
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
- 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 |
NumberINT |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
NumberINT |
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 |
BooleanBOOLEAN |
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 |
BooleanBOOLEAN |
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 |
StringVARCHAR(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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
| LearningStandard LearningStandards |
ReferenceDomainEntityProperty |
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
- 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
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
- 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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
StringVARCHAR(100) |
optional |
A description of the account program dimension. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTags |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(255) |
optional |
The long description of the program evaluation. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| ProgramEvaluationLevel Levels |
ReferenceCommonProperty |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional |
The program evaluation objective associated with this program evaluation element, if applicable. |
object reference; optional |
Ed-Fi field source |
pass-through |
| ProgramEvaluationElementTitle ProgramEvaluationElementTitle |
StringVARCHAR(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 |
StringVARCHAR(255) |
optional |
The long description of the program evaluation element. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| ElementProgramEvaluationLevel ProgramEvaluationLevels |
ReferenceCommonProperty |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(255) |
optional |
The long description of the program evaluation objective. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| ObjectiveProgramEvaluationLevel ProgramEvaluationLevels |
ReferenceCommonProperty |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
StringVARCHAR(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
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
- 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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
StringVARCHAR(100) |
optional |
A description of the account project dimension. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTags |
ReferenceDescriptorProperty 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
BooleanBOOLEAN |
optional |
Indicates that this provider was the Primary Service Provider. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ProviderCode ProviderCode |
StringVARCHAR(16) |
optional |
A code assigned to the service provider. |
max length 16 characters; optional |
Ed-Fi field source |
pass-through |
| ServiceProviderType ServiceProviderTypeDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
DateDATE |
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 |
NumberSMALLINT |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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
- 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
NumberDECIMAL(6, 3) |
required |
The score value for the quantitive measure. |
numeric precision 6, scale 3; required |
Ed-Fi field source |
pass-through |
| StandardError StandardError |
NumberDECIMAL(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
- 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
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
- 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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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
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
- 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 |
DateDATE |
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 |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceInlineCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
DateDATE |
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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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 |
DateDATE |
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 |
StringVARCHAR(255) |
optional |
The long description of the event. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| EventTitle EventTitle |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
required |
The type of event. |
object reference; required; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| EventLocation EventLocation |
StringVARCHAR(255) |
optional |
The location of the event. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| EducationOrganization EducationOrganizationReference |
ReferenceDomainEntityProperty |
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
- 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 |
StringVARCHAR(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 |
BooleanBOOLEAN |
optional |
Indicator of whether the prospect applied for a position. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| CurrentPosition CurrentPosition |
ReferenceCommonProperty |
optional |
The current position of the prospect. |
object reference; optional |
Ed-Fi field source |
pass-through |
| Disability Disabilities |
ReferenceCommonProperty |
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 |
StringVARCHAR(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 |
BooleanBOOLEAN |
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 |
BooleanBOOLEAN |
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 |
ReferenceInlineCommonProperty |
required |
Full legal name of the person. |
object reference; required |
Ed-Fi field source |
pass-through |
| Notes Notes |
StringVARCHAR(255) |
optional |
Additional notes about the prospect. |
max length 255 characters; optional |
Ed-Fi field source |
pass-through |
| PreScreeningRating PreScreeningRating |
NumberINT |
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 |
ReferenceCommonProperty |
optional |
The qualifications of a prospective educator. |
object reference; optional |
Ed-Fi field source |
pass-through |
| RecruitmentEventAttendeeType RecruitmentEventAttendeeTypeDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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 |
BooleanBOOLEAN |
optional |
Indicator of whether the prospect was a referral. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ReferredBy ReferredBy |
StringVARCHAR(50) |
optional |
The person making the referral. |
max length 50 characters; optional |
Ed-Fi field source |
pass-through |
| Sex SexDescriptor |
ReferenceDescriptorProperty |
optional |
A person's birth sex. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| GenderIdentity GenderIdentity |
StringVARCHAR(60) |
optional |
The gender the person identifies themselves as. |
max length 60 characters; optional |
Ed-Fi field source |
pass-through |
| SocialMediaNetworkName SocialMediaNetworkName |
StringVARCHAR(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 |
StringVARCHAR(50) |
optional |
The user name of the person on social media. |
max length 50 characters; optional |
Ed-Fi field source |
pass-through |
| Telephone Telephones |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
BooleanBOOLEAN |
required |
An indication of whether the prospect is eligible for the position. |
boolean true/false; required |
Ed-Fi field source |
pass-through |
| CapacityToServe CapacityToServe |
BooleanBOOLEAN |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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
- 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
Career Fair |
Career Fair |
Career Fair |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional collection |
The student competency evaluations associated for this grading period. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| GradePointAverage GradePointAverages |
ReferenceCommonProperty |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
NumberINT |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(100) |
optional |
The value associated with the reporting tag. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTagDescriptor |
ReferenceDescriptorProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
optional collection |
Score required to be met or exceeded. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| RequiredAssessmentPerformanceLevel PerformanceLevel |
ReferenceCommonProperty |
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
- 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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
optional |
Reference to the certification associated with a person's graduation plan. |
object reference; optional |
Ed-Fi field source |
pass-through |
| CertificationRoute CertificationRouteDescriptor |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
StringVARCHAR(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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- 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 |
NumberINT |
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 |
NumberINT |
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 |
StringVARCHAR(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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 |
StringVARCHAR(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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional collection |
The special education program associated with the restraint event. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| School SchoolReference |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDomainEntityProperty |
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 |
NumberINT |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(1024) |
required |
The criterion description for the rubric dimension. |
max length 1024 characters; required |
Ed-Fi field source |
pass-through |
| DimensionOrder DimensionOrder |
NumberINT |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
- 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 |
NumberINT |
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 |
NumberINT |
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 |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
NumberINT |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
optional |
LEA of which the School is an organizational component. |
object reference; optional |
Ed-Fi field source |
pass-through |
| CharterApprovalAgencyType CharterApprovalAgencyTypeDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceSchoolYearEnumerationProperty |
optional |
The school year in which a charter school was initially approved. |
object reference; optional |
Ed-Fi field source |
pass-through |
| FederalLocaleCode FederalLocaleCodeDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
True if service is a primary service. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ServiceBeginDate ServiceBeginDate |
DateDATE |
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 |
DateDATE |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
NumberINT |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceInlineCommonProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional |
The physical school location in which the section is taught. |
object reference; optional |
Ed-Fi field source |
pass-through |
| Location LocationReference |
ReferenceDomainEntityProperty |
optional |
The location, typically a classroom, where the section meets. |
object reference; optional |
Ed-Fi field source |
pass-through |
| ClassPeriod ClassPeriods |
ReferenceDomainEntityProperty |
optional collection |
The class period during which the section meets. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Program Programs |
ReferenceDomainEntityProperty |
optional collection |
Optional reference to program to which the section is associated. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| CourseLevelCharacteristic CourseLevelCharacteristics |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
BooleanBOOLEAN |
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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
ReferenceDomainEntityProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
ReferenceDomainEntityProperty |
required collection |
The Section(s) to which the assessment is associated. |
object reference; required collection |
Ed-Fi field source |
pass-through |
| Program Programs |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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
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
- 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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
NumberDECIMAL(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
- 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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
True if service is a primary service. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ServiceBeginDate ServiceBeginDate |
DateDATE |
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 |
DateDATE |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDomainEntityProperty |
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 |
BooleanBOOLEAN |
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
- 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
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
- 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 |
StringVARCHAR(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 |
ReferenceSchoolYearEnumerationProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
NumberINT |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional collection |
Grading periods associated with the session. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| AcademicWeek AcademicWeeks |
ReferenceDomainEntityProperty |
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No 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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
StringVARCHAR(100) |
optional |
A description of the account source dimension. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| ReportingTag ReportingTags |
ReferenceDescriptorProperty 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
True if service is a primary service. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ServiceBeginDate ServiceBeginDate |
DateDATE |
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 |
DateDATE |
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 |
ReferenceCommonProperty |
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
- 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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
ReferenceInlineCommonProperty |
required |
Full legal name of the person. |
object reference; required |
Ed-Fi field source |
pass-through |
| OtherName OtherNames |
ReferenceCommonProperty |
optional collection |
Other names associated with a person. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| BirthDate BirthDate |
DateDATE |
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 |
ReferenceDescriptorProperty 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 |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
StringVARCHAR(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 |
BooleanBOOLEAN |
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 |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
optional collection |
The legal document giving authorization to perform teaching assignment services. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Person PersonReference |
ReferenceDomainEntityProperty |
optional |
Relates the staff to a generic person. |
object reference; optional |
Ed-Fi field source |
pass-through |
| HighlyQualifiedAcademicSubject HighlyQualifiedAcademicSubjects |
ReferenceDescriptorProperty 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 |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
optional collection |
The educator preparation program(s) completed by the teacher. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| OpenStaffPosition OpenStaffPositionReference |
ReferenceDomainEntityProperty |
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
- 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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(40) |
optional |
Expanded reason for the staff absence. |
max length 40 characters; optional |
Ed-Fi field source |
pass-through |
| HoursAbsent HoursAbsent |
NumberDECIMAL(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 |
ReferenceDomainEntityProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceInlineCommonProperty |
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 |
StringVARCHAR(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 |
BooleanBOOLEAN |
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 |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
optional collection |
The set of elements that describes an international address. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Telephone Telephones |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(100) |
optional |
The descriptive name of an individual's position. |
max length 100 characters; optional |
Ed-Fi field source |
pass-through |
| BeginDate BeginDate |
DateDATE |
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 |
DateDATE |
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 |
NumberINT |
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 |
ReferenceAssociationProperty |
optional |
A reference to the employment association. |
object reference; optional |
Ed-Fi field source |
pass-through |
| Credential CredentialReference |
ReferenceDomainEntityProperty |
optional |
Reference to the credential that is the basis for this assignment. |
object reference; optional |
Ed-Fi field source |
pass-through |
| FullTimeEquivalency FullTimeEquivalency |
NumberDECIMAL(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 |
NumberDECIMAL(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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceInlineCommonProperty |
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 |
StringVARCHAR(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 |
NumberDECIMAL(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 |
DateDATE |
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 |
NumberMONEY |
optional |
Hourly wage associated with the employment position being reported. |
optional |
Ed-Fi field source |
pass-through |
| AnnualWage AnnualWage |
NumberMONEY |
optional |
Annual wage associated with the employment position being reported. |
optional |
Ed-Fi field source |
pass-through |
| Credential CredentialReference |
ReferenceDomainEntityProperty |
optional |
Reference to the credential that is the basis for this employment. |
object reference; optional |
Ed-Fi field source |
pass-through |
| BackgroundCheck BackgroundChecks |
ReferenceCommonProperty |
optional collection |
Staff background check history and disposition. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| ProbationCompleteDate ProbationCompleteDate |
DateDATE |
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 |
ReferenceCommonProperty |
optional |
Information regarding the salary of a staff member. |
object reference; optional |
Ed-Fi field source |
pass-through |
| LengthOfContract LengthOfContractDescriptor |
ReferenceDescriptorProperty |
optional |
The length of contract. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| Seniority Seniorities |
ReferenceCommonProperty |
optional collection |
Entries of job experience contributing to the computations of seniority. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| TenureTrack TenureTrack |
BooleanBOOLEAN |
optional |
An indication that the staff is on track for tenure. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| Tenured Tenured |
BooleanBOOLEAN |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(40) |
optional |
Expanded reason for the staff leave. |
max length 40 characters; optional |
Ed-Fi field source |
pass-through |
| SubstituteAssigned SubstituteAssigned |
BooleanBOOLEAN |
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 |
ReferenceDomainEntityProperty |
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
- 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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceSchoolYearEnumerationProperty |
optional |
Identifier for a school year. |
object reference; optional |
Ed-Fi field source |
pass-through |
| ProgramAssignment ProgramAssignmentDescriptor |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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 |
BooleanBOOLEAN |
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 |
NumberDECIMAL(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
NumberINT |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceSchoolYearEnumerationProperty |
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 |
BooleanBOOLEAN |
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
- 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 |
NumberINT |
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 |
NumberMONEY |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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 |
StringVARCHAR(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 |
ReferenceInlineCommonProperty |
required |
Full legal name of the person. |
object reference; required |
Ed-Fi field source |
pass-through |
| OtherName OtherNames |
ReferenceCommonProperty |
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 |
ReferenceInlineCommonProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceSchoolYearEnumerationProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
optional collection |
Academic distinctions earned by or awarded to the student. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| ClassRanking ClassRanking |
ReferenceCommonProperty |
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 |
ReferenceInlineCommonProperty |
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 |
ReferenceInlineCommonProperty |
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 |
ReferenceInlineCommonProperty |
optional |
The number of credits an individual attempted to earn in this session. |
object reference; optional |
Ed-Fi field source |
pass-through |
| SessionEarnedCredits SessionEarnedCredits |
ReferenceInlineCommonProperty |
optional |
The number of credits an individual earned in this session. |
object reference; optional |
Ed-Fi field source |
pass-through |
| Diploma Diplomas |
ReferenceCommonProperty |
optional collection |
Diploma(s) earned by the student. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| GradePointAverage GradePointAverages |
ReferenceCommonProperty |
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 |
DateDATE |
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 |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
StringVARCHAR(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 |
DateTimeTIMESTAMP |
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 |
DateTimeTIMESTAMP |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceCommonProperty |
optional collection |
The performance level(s) achieved for the student assessment. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| EventCircumstance EventCircumstanceDescriptor |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceSchoolYearEnumerationProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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 |
NumberINT |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceSchoolYearEnumerationProperty |
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
StringVARCHAR(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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
optional |
Indicator of the response. |
object reference; optional; value must resolve through governed descriptor registry |
Ed-Fi field source |
pass-through |
| AssessmentItemResult AssessmentItemResultDescriptor |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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 |
NumberVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
NumberINT |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceAssociationProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
optional |
A reference to the education organization expected to administer the assessment. |
object reference; optional |
Ed-Fi field source |
pass-through |
| AssessmentGradeLevel AssessmentGradeLevelDescriptor |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty 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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
NumberDECIMAL(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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
optional collection |
The time periods for which characteristic was effective. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| DesignatedBy DesignatedBy |
StringVARCHAR(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
- 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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceChoiceProperty |
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
- 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 |
ReferenceAssociationProperty |
optional collection |
Relates the student and section associated with the competency objective. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| GeneralStudentProgramAssociation GeneralStudentProgramAssociations |
ReferenceAssociationProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
BooleanBOOLEAN |
optional |
Indicator of whether the student lives with the associated contact. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| EmergencyContactStatus EmergencyContactStatus |
BooleanBOOLEAN |
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 |
NumberINT |
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 |
StringVARCHAR(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 |
BooleanBOOLEAN |
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
- 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 |
BooleanBOOLEAN |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceInlineCommonProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
BooleanBOOLEAN |
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 |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
optional collection |
The set of elements that describes an international address. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Telephone Telephones |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
TimeTIME |
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 |
StringVARCHAR(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 |
NumberDECIMAL(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 |
StringVARCHAR(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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
optional collection |
A record of additional immunizations satisfactorily received and reported. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| NonMedicalImmunizationExemption NonMedicalImmunizationExemptionDescriptor |
ReferenceDescriptorProperty |
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 |
DateDATE |
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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
State defined definition for awaiting foster care. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| HomelessUnaccompaniedYouth HomelessUnaccompaniedYouth |
BooleanBOOLEAN |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
optional |
The time period for which the goal is applicable or effective. |
object reference; optional |
Ed-Fi field source |
pass-through |
| IDEAEvent IDEAEvents |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
ReferenceDomainEntityProperty |
optional collection |
A reference to one or more student IDEA events. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| Provider Providers |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
NumberINT |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
StringVARCHAR(200) |
optional |
The name for a group of indicators. |
max length 200 characters; optional |
Ed-Fi field source |
pass-through |
| IndicatorName IndicatorName |
StringVARCHAR(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 |
StringVARCHAR(60) |
required |
The value of the indicator or metric. |
max length 60 characters; required |
Ed-Fi field source |
pass-through |
| Period Periods |
ReferenceCommonProperty |
optional collection |
The time periods for which the indicator was effective. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| DesignatedBy DesignatedBy |
StringVARCHAR(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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
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 |
StringVARCHAR(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 |
NumberINT |
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
- 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 |
ReferenceInlineCommonProperty |
required |
Details of the attendance event. |
object reference; required |
Ed-Fi field source |
pass-through |
| Student StudentReference |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
NumberINT |
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
- 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 |
ReferenceCommonProperty |
optional collection |
Results of yearly English language assessment. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| EnglishLearnerParticipation EnglishLearnerParticipation |
BooleanBOOLEAN |
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 |
ReferenceCommonProperty |
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 |
NumberINT |
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
- 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 |
BooleanBOOLEAN |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty 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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
optional collection |
The performance level(s) achieved for the objective assessment. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| ObjectiveAssessment ObjectiveAssessmentReference |
ReferenceDomainEntityProperty |
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 |
NumberINT |
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 |
DateTimeTIMESTAMP |
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 |
DateTimeTIMESTAMP |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
BooleanBOOLEAN |
optional |
Indicator on whether the student has completed the path milestone. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| PathMilestoneStatusEvent PathMilestoneStatusEvent |
ReferenceCommonProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceInlineCommonProperty |
required |
Details of the attendance event. |
object reference; required |
Ed-Fi field source |
pass-through |
| Student StudentReference |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
NumberINT |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
ReferenceDomainEntityProperty |
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 |
NumberINT |
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 |
NumberDECIMAL(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 |
ReferenceDescriptorProperty 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 |
| StaffEvaluatorStaff StaffEvaluatorStaffReference |
ReferenceDomainEntityProperty |
optional |
Reference to the staff that evaluated the student. |
object reference; optional |
Ed-Fi field source |
pass-through |
| ExternalEvaluator ExternalEvaluators |
StringVARCHAR(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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceSchoolYearEnumerationProperty |
optional |
The school year associated with the student's enrollment. |
object reference; optional |
Ed-Fi field source |
pass-through |
| EntryDate EntryDate |
DateDATE |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceSchoolYearEnumerationProperty |
optional |
Projected high school graduation year. |
object reference; optional |
Ed-Fi field source |
pass-through |
| SchoolChoiceTransfer SchoolChoiceTransfer |
BooleanBOOLEAN |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty 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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
optional |
The primary graduation plan associated with the student enrolled in the school. |
object reference; optional |
Ed-Fi field source |
pass-through |
| AlternativeGraduationPlan AlternativeGraduationPlans |
ReferenceDomainEntityProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceDomainEntityProperty |
optional |
A reference to the student's calendar. |
object reference; optional |
Ed-Fi field source |
pass-through |
| FullTimeEquivalency FullTimeEquivalency |
NumberDECIMAL(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 |
BooleanBOOLEAN |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty 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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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
- 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 |
ReferenceInlineCommonProperty |
required |
Details of the attendance event. |
object reference; required |
Ed-Fi field source |
pass-through |
| Student StudentReference |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
NumberINT |
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 |
TimeTIME |
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 |
TimeTIME |
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
- 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 |
BooleanBOOLEAN |
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 |
ReferenceCommonProperty |
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
- 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 |
BooleanBOOLEAN |
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 |
BooleanBOOLEAN |
optional |
Indicates whether student has a Section 504 accommodation plan. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| Section504Disability Section504DisabilityDescriptor |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceInlineCommonProperty |
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
- 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 |
ReferenceInlineCommonProperty |
required |
Details of the attendance event. |
object reference; required |
Ed-Fi field source |
pass-through |
| Student StudentReference |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
NumberINT |
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 |
TimeTIME |
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 |
TimeTIME |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
optional collection |
The staff providing special education services to the student. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| SpecialEducationHoursPerWeek SpecialEducationHoursPerWeek |
NumberDECIMAL(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 |
NumberDECIMAL(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 |
BooleanBOOLEAN |
optional |
Indicator that the student's IEP requires a shortened school day. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ReductionInHoursPerWeekComparedToPeers ReductionInHoursPerWeekComparedToPeers |
NumberDECIMAL(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 |
BooleanBOOLEAN |
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 |
BooleanBOOLEAN |
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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
optional |
Indicates the evaluation completed status. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| EligibilityEvaluationDate EligibilityEvaluationDate |
DateDATE |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
NumberINT |
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 |
DateDATE |
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 |
BooleanBOOLEAN |
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 |
ReferenceDescriptorProperty |
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 |
DateDATE |
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 |
DateDATE |
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 |
DateDATE |
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
- 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 |
ReferenceDescriptorProperty |
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 |
ReferenceCommonProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(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 |
ReferenceCommonProperty |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
StringVARCHAR(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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
optional |
The education organization associated with the survey. |
object reference; optional |
Ed-Fi field source |
pass-through |
| SurveyTitle SurveyTitle |
StringVARCHAR(255) |
required |
The title of the survey. |
max length 255 characters; required |
Ed-Fi field source |
pass-through |
| SchoolYear SchoolYearTypeReference |
ReferenceSchoolYearEnumerationProperty |
required |
The school year associated with the survey. |
object reference; required |
Ed-Fi field source |
pass-through |
| Session SessionReference |
ReferenceDomainEntityProperty |
optional |
The session associated with the survey. |
object reference; optional |
Ed-Fi field source |
pass-through |
| SurveyCategory SurveyCategoryDescriptor |
ReferenceDescriptorProperty |
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 |
NumberINT |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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 |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDescriptorProperty |
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 |
StringVARCHAR(1024) |
required |
The text of the question. |
max length 1024 characters; required |
Ed-Fi field source |
pass-through |
| ResponseChoice ResponseChoices |
ReferenceCommonProperty |
optional collection |
The optional list of possible responses to a survey question. |
object reference; optional collection |
Ed-Fi field source |
pass-through |
| SurveySection SurveySectionReference |
ReferenceDomainEntityProperty |
optional |
Reference to the survey section. |
object reference; optional |
Ed-Fi field source |
pass-through |
| Matrix Matrices |
ReferenceCommonProperty |
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
- 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 |
StringVARCHAR(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 |
NumberINT |
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 |
StringVARCHAR(2048) |
optional |
The text response(s) for the question. |
max length 2048 characters; optional |
Ed-Fi field source |
pass-through |
| NoResponse NoResponse |
BooleanBOOLEAN |
optional |
Indicates there was no response to the question. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| MinNumericResponse MinNumericResponse |
NumberINT |
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 |
NumberINT |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
BooleanBOOLEAN |
optional |
Indicates there was no response to the question. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| SurveyQuestionResponseValue Values |
ReferenceCommonProperty |
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 |
ReferenceCommonProperty |
optional collection |
For matrix questions, the response for each row of the matrix. |
object reference; optional collection |
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
- 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 |
NumberINT |
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 |
NumberINT |
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 |
StringVARCHAR(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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
ReferenceDomainEntityProperty |
required |
The student respondent for a survey. |
object reference; required |
Ed-Fi field source |
pass-through |
| Contact ContactReference |
ReferenceDomainEntityProperty |
required |
The contact respondent for a survey. |
object reference; required |
Ed-Fi field source |
pass-through |
| Staff StaffReference |
ReferenceDomainEntityProperty |
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
- 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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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 |
DateDATE |
required |
Date of the survey response. |
calendar date in ISO 8601 full-date form; required |
Ed-Fi field source |
pass-through |
| ResponseTime ResponseTime |
NumberINT |
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 |
ReferenceDescriptorProperty 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 |
StringVARCHAR(128) |
optional |
Email address of the respondent. |
max length 128 characters; optional |
Ed-Fi field source |
pass-through |
| FullName FullName |
StringVARCHAR(80) |
optional |
Full name of the respondent. |
max length 80 characters; optional |
Ed-Fi field source |
pass-through |
| Location Location |
StringVARCHAR(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 |
ReferenceChoiceProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
StringVARCHAR(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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
NumberDECIMAL(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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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 |
NumberDECIMAL(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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- 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 |
ReferenceDomainEntityProperty |
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 |
ReferenceDomainEntityProperty |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- 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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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 |
StringVARCHAR(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 |
ReferenceDescriptorProperty |
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 |
NumberINT |
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 |
BooleanBOOLEAN |
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 |
BooleanBOOLEAN |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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 |
ReferenceDescriptorProperty |
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 |
BooleanBOOLEAN |
optional |
True if service is a primary service. |
boolean true/false; optional |
Ed-Fi field source |
pass-through |
| ServiceBeginDate ServiceBeginDate |
DateDATE |
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 |
DateDATE |
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
- 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
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
- 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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- 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 |
StringVARCHAR(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 |
DateDATE |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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 |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- 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
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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
Origin |
| No contained 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
- 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
| CodeValue | ShortDescription | Description | Namespace | Effective dates | Status | Source |
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
- Physical SQL snippets
- No SQL table snippet in handbook
- Platform overlay
- No canonical overlay; reused inside resources
- Trace
- EITD-000 EITD-001
Field Reference (0)
| Field |
Type |
Requiredness |
Meaning |
Constraints / Range |
Source / ITD |
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)