Self-Serve pro plan data fields
When using the self-serve pro plan, there are several additional fields that you can select to retrieve data from.

These correspond to the following data fields in the Nexar API:
Lead Time
SupPart.estimatedFactoryLeadDays
Tech Specs and Lifecycle Status
To use Lifecycle Status, you must have Tech Specs included. You cannot select the former without the latter. The specific fields that you can access with Tech Specs are:
SupPart.specs
SupPartResultSet.specsViewAttributeGroups
SupPartResultSet.specAggs
Datasheets
SupPart.documentCollections
SupPart.bestDatasheet
SupPart.referenceDesigns
Enterprise Specific data fields
With enterprise plans, you can access all the data available in the API.
ECAD Modules
SupPart.cad
Outlined below are the data fields in an example query:
query additionalDataFields {
  supSearchMpn(q: "example") {
    results {
      part {
        #Lead Time
        estimatedFactoryLeadDays
        #Tech Specs and Lifecycle Status
        specs {
          ...
        }
        #Datasheets
        documentCollections {
          ...
        }
        #Datasheets
        bestDatasheet {
          ...
        }
        #Datasheets
        referenceDesigns {
          ...
        }
        #ECAD Module
        cad {
          ...
        }
      }
    }
    #Tech Specs
    specsViewAttributeGroups {
      ...
    }
    #Tech Specs
    specAggs(attributeNames: "example") {
      ...
    }
  }
}Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article