Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Feature/academies api contracts #17

Merged
merged 2 commits into from
Jan 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
namespace Dfe.Academies.Contracts.V1.EducationalPerformance
{
/// <summary>
/// Absence Data Response
/// </summary>
public class SchoolAbsenceDataDto
{
/// <summary>
/// Acdemic Year
/// </summary>
public string Year { get; set; }

/// <summary>
///Percentage of possible mornings or afternoons recorded as an absence from school for whatever reason,
///whether authorised or unauthorised, across the full academic year.
/// </summary>
public string? OverallAbsence { get; set; }

/// <summary>
///The percentage of pupils missing 10% or more of the mornings or afternoons they could attend,
///meaning that if a pupil’s overall rate of absence is 10% or higher across the full academic
///year they will be classified as persistently absent.
/// </summary>
public string? PersistentAbsence { get; set; }
}
}
Loading