Manufacturers publish compliance documents to declare their compliance with certain environmental or ethical standards.
You can access the compliance documents of a part through the 'documentCollections' field. Here, you can retrieve the following:
- name - Document name
- pageCount - Document page count
- createdAt - Date of creation
- url - URL of document
- creditString - name of document provider
- creditUrl - URL of document provider
- mimeType- document type
See the example query below:
query complianceDocs {
  supSearchMpn(q: "BAS4007E6327HTSA1", limit: 2) {
    results {
      description
      part {
        manufacturer {
          name
        }
        documentCollections {
          name
          documents {
            name
            pageCount
            createdAt
            url
            creditString
            creditUrl
            mimeType
          }
        }
      }
    }
  }
}This query will give the response below, with compliance documents found under "documentCollections":
{
  "data": {
    "supSearchMpn": {
      "results": [
        {
          "description": "Rectifier Diode, Schottky, 2 Element, 0.12A, 40V V(RRM), Silicon",
          "part": {
            "manufacturer": {
              "name": "Infineon"
            },
            "documentCollections": [
              {
                "name": "TME",
                "documents": [
                  {
                    "name": "Datasheet",
                    "pageCount": 15,
                    "createdAt": "2013-01-11T09:37:35Z",
                    "url": "https://datasheet.octopart.com/BAS4007E6327HTSA1-Infineon-datasheet-38586392.pdf",
                    "creditString": "TME",
                    "creditUrl": "http://www.tme.eu/en/",
                    "mimeType": "application/pdf"
                  }
                ]
              },
              {
                "name": "_legacy Avnet",
                "documents": [
                  {
                    "name": "Datasheet",
                    "pageCount": 15,
                    "createdAt": "2007-04-27T08:44:01Z",
                    "url": "https://datasheet.octopart.com/BAS4007E6327HTSA1-Infineon-datasheet-5318301.pdf",
                    "creditString": "_legacy Avnet",
                    "creditUrl": "",
                    "mimeType": "application/pdf"
                  }
                ]
              },
              {
                "name": "Compliance Statements",
                "documents": [
                  {
                    "name": "Conflict Mineral Statement",
                    "pageCount": null,
                    "createdAt": null,
                    "url": "http://sigma.octopart.com/conflict_mineral_statement/Infineon-company-51.pdf",
                    "creditString": "",
                    "creditUrl": "",
                    "mimeType": "application/pdf"
                  }
                ]
              }
            ]
          }
        },
        {
          "description": "Rectifier Diode Schottky Si 0.12A Automotive 4-Pin SOT-143 T/R",
          "part": {
            "manufacturer": {
              "name": "Cypress Semiconductor"
            },
            "documentCollections": []
          }
        }
      ]
    }
  },
  "extensions": {
    "requestId": "7bacf870-196c-4719-a8df-ab09f3f47716"
  }
}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