Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PropertyTypeDescription
ProcessingIdGUIDA unique GUID identifying the processing request.
FilingIdintThe filing ID of a processed XBRL file, if processing was successful.
StatusenumThe status of the actual processing job, RanToCompletion (5) means the process finished. See more details in the table below.
FilingIdintThe filing ID of a processed XBRL file, if processing was successful.
FilingVersionIdintThe filing version ID of a processed XBRL file, if processing was successful.
IsRejectedbooleanTrue if filing is rejected, if processing was successful.
IsServerErrorbooleanTrue if any server error happened during processing, this usually means that an manual investigation has to be started.

Md5Hash

stringThe MD5 hash calculated on the XBRL file, if processing was successful.
IsDuplicateFilingbooleanIf true, a duplicate filing is detected and processing was successful.
DuplicateFilingIdintThe ID of the filing detected as a duplicate, if processing was successful.
DuplicateFilingXbrlProcessingIdGUIDThe GUID of the processing that processed the duplicate filing.
ValidationResultsList<ValidationResult>The XBRL validation results and messages from the XBRL processing, for more details see table below.
IsXbrlValidbooleanThe information if the XBRL file is valid (considering warnings as valid).

Processing Job Status

The job status property of the ProcessingResult can have the following states:

StateInteger ValueDescription
Created0The job has been initialized but has not yet been scheduled.
WaitingForActivation1

The job is waiting to be activated and scheduled internally.

WaitingToRun2The job has been scheduled for execution but has not yet begun executing.
Running3The job is running but has not yet completed.
WaitingForChildrenToComplete4

The job has finished executing and is implicitly waiting for attached child tasks to complete.

RanToCompletion5The job completed execution successfully.
Canceled6

The job has been manually cancelled.

Faulted7The job completed due to an unhandled exception. This usually means that the job will retried, and that a manual investigation has to be started.

Validation Results

The validation results are returned as a list of ValidationResult nodes. Those have the following properties:

...