Class Context
Represents an XBRL context, which defines the reporting period, instant, and scenario information for a specific XBRL fact.
public class Context : XbrlItem
- Inheritance
-
Context
- Inherited Members
Remarks
The Context class provides details about the time period or instant to which an XBRL fact applies, as well as any associated scenario information. It includes properties for start and end dates, an instant date, and scenario dimensions.
Properties
EndDate
Gets the end date of the event or process in string format.
public required string EndDate { get; init; }
Property Value
Instant
Gets the timestamp representing the exact moment in time.
public required string Instant { get; init; }
Property Value
Scenario
Gets the collection of explicit members that define the scenario.
public required Context.ExplicitMember[] Scenario { get; init; }
Property Value
StartDate
Gets the start date of the event or process in string format.
public required string StartDate { get; init; }