yearTimePeriodDefinition resource type

Namespace: microsoft.graph.industryData

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents annual time periods such as academic or fiscal years. This resource allows the association of incoming data to a year to help build historical data, day-by-day, year-over-year, as time progresses. In the case of data domain for education rostering, this is commonly referred to as an academic year. The approach is aligned to an academic year versus a calendar year.

Methods

Method Return type Description
Create yearTimePeriodDefinition microsoft.graph.industryData.yearTimePeriodDefinition Create a new yearTimePeriodDefinition object.
List yearTimePeriodDefinitions microsoft.graph.industryData.yearTimePeriodDefinition collection Get a list of the yearTimePeriodDefinition objects and their properties.
Get yearTimePeriodDefinition microsoft.graph.industryData.yearTimePeriodDefinition Read the properties and relationships of a yearTimePeriodDefinition object.
Update yearTimePeriodDefinition microsoft.graph.industryData.yearTimePeriodDefinition Update the properties of a yearTimePeriodDefinition object.
Delete yearTimePeriodDefinition None Delete a yearTimePeriodDefinition object.

Properties

Property Type Description
displayName String The name of the year. Maximum supported length is 100 characters.
endDate Date The last day of the year using ISO 8601 format for date.
startDate Date The first day of the year using ISO 8601 format for date.
year microsoft.graph.industryData.yearReferenceValue A pointer to a year entry in the referenceDefinition collection.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.industryData.yearTimePeriodDefinition",
  "displayName": "String",
  "endDate": "String (date)",
  "startDate": "String (date)",
  "year": {
    "@odata.type": "microsoft.graph.industryData.yearReferenceValue"
  }
}