Table of Contents

Class Context

Namespace
Manpuku.Edinet.Xbrl
Assembly
Manpuku.Edinet.Xbrl.dll

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

string

Instant

Gets the timestamp representing the exact moment in time.

public required string Instant { get; init; }

Property Value

string

Scenario

Gets the collection of explicit members that define the scenario.

public required Context.ExplicitMember[] Scenario { get; init; }

Property Value

ExplicitMember[]

StartDate

Gets the start date of the event or process in string format.

public required string StartDate { get; init; }

Property Value

string