OBJECT

GradingReport

The base grading report object.

link GraphQL Schema definition

  • type GradingReport {
  • # Date item was examined by GIA.
  • report_date: String
  • # Date item was examined by GIA, in ISO-8601 format.
  • report_date_iso: String
  • # Unique GIA report number registered in GIA's database.
  • report_number: String!
  • # The type of GIA report.
  • report_type: String
  • # The type of GIA report, in machine-readable format.
  • report_type_code: ReportTypeCode
  • # The grading results as shown on the GIA report.
  • results: ReportResults
  • # Links to other files, such as images and PDFs.
  • links: Links
  • # Quota remaining after this report is returned.
  • quota: Quota
  • # Any special information regarding your report request, for example if your
  • # original requested report has been updated to a different report number.
  • info_message: String
  • # If report is part of digital program.
  • is_digital: Boolean
  • # If report data has been issued as an in-progress grading report. A PDF version
  • # is not available at this time.
  • is_sleeve: Boolean
  • # Metadata for attached assets along with download links, equivalent of links in
  • # array form.
  • assets: [ReportAsset!]
  • # Industry disclosures
  • industry_disclosures: IndustryDisclosures
  • # Supplemental grading report
  • supplemental_report_results: [SupplementalReportResults]
  • }