Zend certified PHP/Magento developer

How to find device ID of PCIe-interfaced SSD?

I’m trying to find the vendor ID:device ID signature (VID:DID) of a PCIe-interfaced non-volatile memory device, but am only seeing the vendor ID duplicated twice.

$ sudo smartctl --json --all /dev/nvme0 | grep pci -A 3
  "nvme_pci_vendor": {
    "id": 4932,
    "subsystem_id": 4932
  },

If I then try to use lspci to filter on those vendor IDs, I can get more than one device ID which doesn’t help me uniquely associate the smartctl data with a device.

$ lspci -nn | grep 1344
01:00.0 Non-Volatile memory controller [0108]: Micron Technology Inc Device [1344:6001] (rev 03)
02:00.0 Non-Volatile memory controller [0108]: Micron Technology Inc Device [1344:6002] (rev 03)

How can I identify the device ID of a PCIe storage device I measure health stats on via smartctl?