14 SEPTEMBER 2026 · capExpertAPI · CAP-2031 / CAP-680
What converts, and in what order
The backfill is a list of descriptors — one per column, or per key inside a document column, that holds a file path. Each names where its files are now, who they belong to, and where they go. This is that list, in the order the seeder walks it — every row says which column the value is read from and which account it is filed under.
- Descriptors
- 122was 123 before QR came out
- Wave 1 — own their files
- 6334 columns + 29 document keys
- Wave 2 — borrow a destination
- 59all folder-derived
- Owner fallbacks
- 36+2 that apply to all
the short answerThe order you asked for is already the order the seeder runs. Every one of the nine keys you named holds its own file, so all nine are in wave 1. The six camp_inventory_items.additional_details keys that mirror them are borrowers, so all six are in wave 2 and cannot be seeded until wave 1 has finished. No change is needed to get that sequence.
Why there are two wavesseedAll()
The split is not about column shape. It is about who owns the file.
A borrowing key holds a path that some other column already owns — a vendor’s quote copied into a facility’s inventory record, say. It must not derive its own destination, because the account it would resolve is the account of the record holding the copy, not the account of the record that owns the file. So it looks the owning row up in the ledger and takes that row’s destination whole. That only works if the owning row is already there.
file-migration-seed.service.tsseedAll
“The columns that own their files first, then the keys that borrow from them. The order is the whole point: a borrower reads the ledger for the row that owns its file, so that row has to be there. Within a wave every descriptor runs at once, up to the pool.”
verbatim from the source
Inside a wave, descriptors are grouped by physical column and the groups run concurrently. Two descriptors naming one column run one after the other — without that, both pass the duplicate guard before either inserts, which was measured at 1,569 doubled reference keys and 3,196 extra rows.
The keys you named9 + 6
The nine you listed, then the mirrors that must follow them. The tag says which wave each falls in.
copilot_launch_proposals.equipment_condition_attachmentwave 1 · owns its file
copilot_launch_proposals.quotewave 1 · owns its file
copilot_launch_proposals.service_agreementwave 1 · owns its file
copilot_launch_proposals.warranty_documentwave 1 · owns its file
copilot_requests.attachmentswave 1 · owns its file
copilot_requests.quotewave 1 · owns its file
equipment_categories.default_imagewave 1 · owns its file
equipment_models.fileswave 1 · owns its file
equipment_models.imageswave 1 · owns its file
camp_inventory_items.additional_details.copilotReq.attachmentswave 2 · borrows
camp_inventory_items.additional_details.copilotReq.quotewave 2 · borrows
camp_inventory_items.additional_details.ezrfpRequest.attachmentswave 2 · borrows
camp_inventory_items.additional_details.ezrfpRequest.quotewave 2 · borrows
camp_inventory_items.additional_details.quotewave 2 · borrows
camp_inventory_items.additional_details.warrantyDocumentwave 2 · borrows
Where the owner falls back36 + 2
Every destination needs an account to file under. 36 of the 122 descriptors name more than one candidate and take the first that is set; two further fallbacks live in the seeder itself and apply to any descriptor.
camp_inventory_items.account_id → copilot_parent_requests.account_id18 descriptors
The largest chain by far. An inventory line is filed under its own account, and under the CoPilot parent request’s account where the line does not resolve one.
t.buyer_id → t.seller_id8 descriptors
A shipping estimate or a cart belongs to the buyer; where there is no buyer it is filed under the seller. Covers all five shipping_estimates descriptors plus carts.additional_details.
a four-deep chain on docusign5 descriptors
DOCUSIGN_FACILITY: the CoPilot parent request’s account, else the pre-order’s facility account, else the buy order’s buyer, else the marketplace listing’s account. Four places a DocuSign attachment’s owner can come from, in that order.
i.account_id → the sticker’s own account3 descriptors
Sticker data is filed under the inventory item it was read from, and under the sticker’s account when the item does not resolve.
po_requests and transfer_requests2 descriptors
PO_REQUEST_ACCOUNT is a three-deep chain — the CoPilot request’s parent account, else the pre-order’s facility, else the marketplace buy order’s buyer. transfer_requests.additional_details is the plain buyer-then-seller rule.
the document managerapplies to every descriptor
In ownDestination: COALESCE(s.account_id, dm.account_id). A row naming no owner of its own is filed under whoever document_manager says owns that object — the only place a path with no owning row can be traced to an account. Without it an export named only by the mail that carried it had nowhere to go.
a borrowed key with no owning rowapplies to wave 2
A borrower normally takes the destination of the wave 1 row that owns its file. Where no such row exists it derives its own rather than seeding as skipped: the module from the folder the file sits in, the account from the record holding it. Without that, 2,214 files on dev stayed on their legacy path for good — and every one was an orphan, named by no other column.
Wave 1 — descriptors that own their files63
OWN_DESTINATION_DESCRIPTORS. The seeder runs all 63 as one wave. 34 read the path straight off a column (DIRECT_COLUMN_DESCRIPTORS); 29 read it from a key inside a document column where the file is that record’s own (OWNED_KEY_DESCRIPTORS). Value read from is blank wherever the descriptor name already says which column the value comes out of.
descriptorvalue read fromhowfiled undermodule
account_details.attachmenthow any path in textowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
admin_queue.file_namehow any path in textowner t.created_forfolder-derived5 refs → 5 objectsstoredinventory/service-contract/Inventory_07-23-2025_01-25-49.xlsx→doc/CAP-5C03EF3C/assets/service-contract/Inventory_07-23-2025_01-25-49.xlsx
asset_registries.profilehow any path in textowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
bill_of_sale_requests.file_namehow scalarowner t.buyer_idBillOfSale8 refs → 8 objectsstoredbill-of-sales/Bill_of_sale_1719399829631YNTCW.pdf→doc/CAP-1H3MLDP/bill-of-sales/Bill_of_sale_1719399829631YNTCW.pdf
budget_planning.attachmentshow any path in textowner t.account_idfolder-derived144 refs → 144 objectsstoredinventory/images/52133jp_1714133471547.jpg→img/CAP-69429037/assets/52133jp_1714133471547.jpg
camp_inventory_items.imageshow arrayowner t.account_idAssetImage36 refs → 36 objectsstored2jpe_1739369050211.jpeg→img/CAP-L9J3AE1/assets/2jpe_1739369050211.jpeg
capture_billings.invoice_pathhow any path in textowner t.facility_account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
chat_messages.texthow scalarowner t.account_idChatAttachment56 refs → 56 objectsstoredchat-message-documents/FT10pn_1788465758241.png→doc/CAP-4PIUFMO/chat-message/FT10pn_1788465758241.png
copilot_launch_proposals.equipment_condition_attachmenthow any path in textowner cl.account_idfolder-derived1 refs → 1 objectsstoredinventory/images/2jp_1713209028801.jpg→img/CAP-NZGX3N7/assets/2jp_1713209028801.jpg
copilot_launch_proposals.quotehow raw SQLowner (inline)CopilotQuote5,823 refs → 5,823 objectsstoredezrfp-quote/SBjp_1765815201961.jpg→doc/CAP-4PIUFMO/copilot-quote/SBjp_1765815201961.jpg 1 missing
copilot_launch_proposals.service_agreementhow any path in textowner cl.account_idfolder-derived56 refs → 56 objectsstoredservice-agreement/mx7pd_1738873779305.pdf→doc/CAP-89288AF6/service-agreement/mx7pd_1738873779305.pdf
copilot_launch_proposals.warranty_documenthow any path in textowner cl.account_idfolder-derived637 refs → 637 objectsstoredezrfp-warranty/3500pn_1784306226321.png→doc/CAP-4PIUFMO/copilot/warranty/3500pn_1784306226321.png
copilot_requests.attachmentshow raw SQLowner (inline)CopilotAttachment674 refs → 674 objectsstoredezrfp/attachments/1_1785741174740.jpeg→doc/CAP-DF34CC62/copilot/attachments/1_1785741174740.jpeg
copilot_requests.quotehow raw SQLowner (inline)CopilotQuote105 refs → 105 objectsstoredezrfp-quote/3pd_1743789811900.pdf→doc/CAP-F264599C/copilot-quote/3pd_1743789811900.pdf
copilot_requests.warrantyhow any path in textowner cp.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
document_manager.file_pathhow any path in textowner t.account_idfolder-derived8,871 refs → 8,871 objectsstoreddocument-manager/sample.pdf→doc/CAP-D0A6F959/document-manager/sample.pdf 7 missing
docusign_requests.attachmentshow any path in textowner copilot_parent_requests.account_idelse copilot_pre_orders.facility_account_id else transactions.buyer_account_id else marketplace.account_idfolder-derived53 refs → 53 objectsstoredpa-documents/pa_17859333878490C35Y.pdf→doc/CAP-048YNSJ/pa-documents/pa_17859333878490C35Y.pdf 1 missing
equipment_categories.default_imagehow scalarowner NULL::intCategoryImage50 refs → 50 objectsstoredcategories/default_Lasers.jpg→img/category/default_Lasers.jpg
equipment_models.fileshow comma-joinedowner NULL::intModelSpecFile5,088 refs → 5,088 objectsstoredinventory/user-manual/pd_1680717912714.pdf→doc/model-library/spec-files/pd_1680717912714.pdf
equipment_models.imageshow comma-joinedowner NULL::intModelImage8,197 refs → 8,197 objectsstoredinventory/images/2jpe_1740525017252.jpeg→img/model-library/2jpe_1740525017252.jpeg
ezestimator_requests.file_pathhow any path in textowner NULL::intfolder-derivedno rowsnothing on this clone holds a legacy path at this key
feedbacks.attachmenthow raw SQLowner u.account_idFeedback2 refs → 2 objectsstoredfeedback/Patient_Transfer_Equipmentjp_1726124748277.jpg→doc/CAP-YZLV4WS/feedback/Patient_Transfer_Equipmentjp_1726124748277.jpg
file_import_logs.file_namehow any path in textowner t.imported_forfolder-derived13 refs → 13 objectsstoredonboard-file/SMRxls_1754039187097.xlsx→doc/CAP-A0D8AA63/onboarding/SMRxls_1754039187097.xlsx
inventory_historical_records.biomed_filehow any path in textowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
inventory_sticker_details.sticker_namehow raw SQLowner i.account_idelse s.account_idAssetImage745,064 refs → 745,064 objectsstoredinventory/images/1.jpeg→img/CAP-00993423/assets/1.jpeg 114 missing
po_requests.attachmenthow any path in textowner copilot_requests.account_idelse copilot_pre_orders.facility_account_id else marketplace.buyer_account_idfolder-derived126 refs → 126 objectsstoredcer-documents/POpd_1728574946152.pdf→doc/CAP-1SM7RH4/cer-documents/POpd_1728574946152.pdf
profiles.hospital_logohow any path in textowner t.account_idfolder-derived7 refs → 7 objectsstoredprofile/demopn_1690230324629.png→img/CAP-TBKS34C/user/profile/demopn_1690230324629.png
report_requests.file_pathhow any path in textowner t.account_idfolder-derived3 refs → 3 objectsstoredreports/1/procurement-requests_96464a92-09db-4c31-8058-27c474d10405.pdf→doc/CAP-BBA2A600/export/4805/reports/procurement-requests_96464a92-09db-4c31-8058-27c474d10405.pdf
settings.attribute_valuehow any path in textowner NULL::intfolder-derivedno rowsnothing on this clone holds a legacy path at this key
shipping_estimates.bol_documenthow any path in textowner t.buyer_idelse t.seller_idfolder-derived10 refs → 10 objectsstoreddocument-manager/shipping-documents/Bill of Lading 1723049821076_1723049821076.pdf→doc/CAP-YZLV4WS/shipping-document/Bill of Lading 1723049821076_1723049821076.pdf 7 missing
shipping_estimates.file_namehow any path in textowner t.buyer_idelse t.seller_idfolder-derived73 refs → 73 objectsstoredshipping-estimate-documents/1719313921710_8ZGNYRWQZK.pdf→doc/CAP-SHEKHLI/shipping-document/1719313921710_8ZGNYRWQZK.pdf
shipping_estimates.original_filenamehow any path in textowner t.buyer_idelse t.seller_idfolder-derived8 refs → 8 objectsstoredshipping-estimate-documents/1723048922062_1723048922062.pdf→doc/CAP-YZLV4WS/shipping-document/1723048922062_1723048922062.pdf
users.profilehow scalarowner t.account_idProfilePhoto29 refs → 29 objectsstoredprofile/fhcpn_1682440728613.png→img/CAP-NJQJGDJ/user/profile/fhcpn_1682440728613.png
warranties.filehow comma-joinedowner t.account_idAssetWarranty19 refs → 19 objectsstoredinventory/warranty/testpn_1726128710484.png→doc/CAP-ZF1R4RK/assets/warranty/testpn_1726128710484.png
accounts.images_attachment.assetTagfrom $."assetTag"how jsonowner t.idAccountAssetTags54 refs → 54 objectsstoredaccount-tags/asset-tags/IMG_3631jpe_1763316058263.jpeg→doc/CAP-8BA14B57/account-tags/asset-tags/IMG_3631jpe_1763316058263.jpeg
accounts.images_attachment.biomedTagfrom $."biomedTag"how jsonowner t.idAccountBiomedTags33 refs → 33 objectsstoredaccount-tags/biomed-tags/ucdweb_1776704489486.webp→doc/CAP-2C88EDC4/account-tags/biomed-tags/ucdweb_1776704489486.webp
accounts.images_attachment.logofrom $."logo"how raw SQLowner (inline)AccountLogo11 refs → 11 objectsstoredprofile/CSA_Mainjp_1738712930274.jpg→img/CAP-E70DF228/logo/CSA_Mainjp_1738712930274.jpg
accounts.images_attachment.small_logofrom $."smallLogo"how raw SQLowner (inline)AccountLogo11 refs → 11 objectsstoredprofile/SCA_Iconjpe_1748363593973.jpeg→img/CAP-HYBN2G6/logo/SCA_Iconjpe_1748363593973.jpeg
camp_inventory_items.additional_details.cad.cadUrlfrom $."cad"."cadUrl"how jsonowner t.account_idfolder-derived16 refs → 16 objectsstoreddocument-manager/IntuitiveDemo.xlsx→doc/CAP-D0A6F959/document-manager/IntuitiveDemo.xlsx
camp_inventory_items.additional_details.transferDetail.fileNamefrom $."transferDetail"."fileName"how jsonowner t.account_idfolder-derived51 refs → 51 objectsstoredinventory/images/IMG_7703pn_1741881622325.png→img/CAP-QXBF2LV/assets/IMG_7703pn_1741881622325.png
copilot_launch_proposals.additional_details.specifications[*].fileNamefrom $."specifications"[*]."fileName"how jsonowner cl.account_idfolder-derived210 refs → 210 objectsstoredezrfp/attachments/Axia_TL3pd_1785116273284.pdf→doc/CAP-2B57D7B5/copilot/attachments/Axia_TL3pd_1785116273284.pdf
copilot_parent_requests.action_logs[*].equipments[*].changes[*].newfrom $."equipments"[*]."changes"[*]."new"how jsonowner t.account_idfolder-derived118 refs → 118 objectsstoredezrfp-quote/NFS050625pd_1746718161003.pdf→doc/CAP-BF737973/copilot-quote/NFS050625pd_1746718161003.pdf
copilot_parent_requests.action_logs[*].equipments[*].changes[*].oldfrom $."equipments"[*]."changes"[*]."old"how jsonowner t.account_idfolder-derived52 refs → 52 objectsstoredezrfp-quote/7pd_1743790127661.pdf→doc/CAP-F264599C/copilot-quote/7pd_1743790127661.pdf
copilot_requests.proposal_summary.comparisonViewAttachmentfrom $."comparisonViewAttachment"how jsonowner cp.account_idCopilotAttachment764 refs → 764 objectsstoredezrfp/attachments/comparison_view_1781759661451.pdf→doc/CAP-9W2CJW6/copilot/attachments/comparison_view_1781759661451.pdf
file_imports.additional_details.derivedExcelPdf.filePathfrom $."derivedExcelPdf"."filePath"how jsonowner dm.account_idAssetRegistry44 refs → 44 objectsstoredinventory/asset-registry/ASSETS50587xls_1758736512374_JSON_derived.pdf→doc/CAP-AP07IP1/assets/asset-registry/ASSETS50587xls_1758736512374_JSON_derived.pdf
inventory_transfers.transfer_details.fileNamefrom $."fileName"how jsonowner t.account_idfolder-derived26 refs → 26 objectsstoredinventory/images/IMG_7703pn_1741881622325.png→img/CAP-QXBF2LV/assets/IMG_7703pn_1741881622325.png
po_requests.additional_details.comparisonView.fileNamefrom $."comparisonView"."fileName"how jsonowner cp.account_idCopilotAttachment23 refs → 23 objectsstoredezrfp/attachments/comparison_view_1758248283912.pdf→doc/CAP-AD714621/copilot/attachments/comparison_view_1758248283912.pdf
shipping_estimates.quote_email_details.attachments[*]from $."attachments"[*]how jsonowner t.buyer_idelse t.seller_idfolder-derived80 refs → 80 objectsstoreddocument-manager/shipping-documents/1719313921710_8ZGNYRWQZK.pdf→doc/CAP-SHEKHLI/shipping-document/1719313921710_8ZGNYRWQZK.pdf
shipping_estimates.shipping_responses[*].fileNamefrom $[*]."fileName"how jsonowner t.buyer_idelse t.seller_idfolder-derived92 refs → 92 objectsstoreddocument-manager/shipping-documents/1719313921710_8ZGNYRWQZK.pdf→doc/CAP-SHEKHLI/shipping-document/1719313921710_8ZGNYRWQZK.pdf
transaction_equipment_details.equipment_details.childInventories[*].equipmentCategoryData.imgfrom $."childInventories"[*]."equipmentCategoryData"."img"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived1 refs → 1 objectsstoredcategories/Stirrups.jpg→img/category/Stirrups.jpg
transaction_equipment_details.equipment_details.equipmentCategoryData.imgfrom $."equipmentCategoryData"."img"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived77 refs → 39 objectsstoredcategories/C_Arms.jpg→img/category/C_Arms.jpg
transaction_equipment_details.equipment_details.referenceImagesfrom $."referenceImages"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idModelImage71 refs → 22 objectsstoredinventory/images/0_12jp_1709196811360.jpg→img/model-library/0_12jp_1709196811360.jpg
transaction_equipment_details.equipment_details.tradeInventoryDetail.equipmentCategoryData.imgfrom $."tradeInventoryDetail"."equipmentCategoryData"."img"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived1 refs → 1 objectsstoredcategories/C_Arms.jpg→img/category/C_Arms.jpg
transaction_equipment_details.equipment_details.userManualPdffrom $."userManualPdf"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived2 refs → 2 objectsstoredinventory/user-manual/1670236966908_FCF1K3IWFOQF8UYU.pdf→doc/CAP-F4O8AS0/assets/user-manual/1670236966908_FCF1K3IWFOQF8UYU.pdf
transactions.billOfSalefrom transactions.additional_documents $."billOfSale"how jsonowner t.seller_account_idBillOfSale4 refs → 4 objectsstoredbill-of-sales/Bill_of_sale_1719443418692NW0TY.pdf→doc/CAP-F4O8AS0/bill-of-sales/Bill_of_sale_1719443418692NW0TY.pdf
transactions.bolDocumentfrom transactions.additional_documents $."bolDocument"how jsonowner bo.buyer_account_idShippingDocument7 refs → 7 objectsstoredshipping-estimate-documents/Bill of Lading 1727077146621_1727077146621.pdf→doc/CAP-SHEKHLI/shipping-document/Bill of Lading 1727077146621_1727077146621.pdf 4 missing
transactions.buyerInvoicefrom transactions.additional_documents $."buyerInvoice"how jsonowner bo.buyer_account_idInventoryInvoicePdf879 refs → 879 objectsstoredinventory-invoice-pdf/1719401401075.pdf→doc/CAP-1H3MLDP/invoice/1719401401075.pdf 251 missing
transactions.cerDocumentfrom transactions.additional_documents $."cerDocument"how jsonowner bo.buyer_account_idCerDocument10 refs → 10 objectsstoredcer-documents/TEST_CERpd_1719249141001.pdf→doc/CAP-YZLV4WS/cer-documents/TEST_CERpd_1719249141001.pdf
transactions.poAttachmentsfrom transactions.additional_documents $."poAttachments"how raw SQLowner bo.buyer_account_idTransactionPoAttachment467 refs → 467 objectsstoredcer-documents/AA7862621pd_1732219672360.pdf→doc/CAP-67JYD14/transaction/po-attachment/AA7862621pd_1732219672360.pdf
transactions.poDocumentfrom transactions.additional_documents $."poDocument"how jsonowner bo.buyer_account_idDocumentManagerPurchaseOrders650 refs → 650 objectsstoredinventory/images/CE7753-607.pdf→doc/CAP-CBBDMBJ/document-manager/purchase-orders/CE7753-607.pdf
transactions.sellerInvoicefrom transactions.additional_documents $."sellerInvoice"how jsonowner t.seller_account_idInventoryInvoicePdf879 refs → 879 objectsstoredinventory-invoice-pdf/1749665767858.pdf→doc/CAP-2AXX856/invoice/1749665767858.pdf 349 missing
transactions.shippingQuotefrom transactions.additional_documents $."shippingQuote"how jsonowner bo.buyer_account_idShippingDocument23 refs → 23 objectsstoredshipping-estimate-documents/1727076790316_62OQUBQSQVGG.pdf→doc/CAP-SHEKHLI/shipping-document/1727076790316_62OQUBQSQVGG.pdf
users.agreement_details.namefrom $."name"how jsonowner t.account_idEula1,099 refs → 1,099 objectsstoredeula/eula_henry_schein→doc/CAP-5D0G2HF/eula/eula_henry_schein 5 missing
Wave 2 — keys that borrow a destination59
BORROWED_KEY_DESCRIPTORS. Every one is folder-derived: the module comes from the folder the file sits in, and the destination is taken from whichever wave 1 row owns it. A reference no row owns falls back to deriving its own. Value read from is blank wherever the descriptor name already says which column the value comes out of.
descriptorvalue read fromhowfiled undermodule
asset_registries.extracted_datahow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
biomeds.extracted_data.biomedFilefrom $."biomedFile"how jsonowner t.account_idfolder-derived162 refs → 162 objectsstoredinventory/biomed-import/SCSCpd_1772816205687.pdf→doc/CAP-955E9A5F/assets/biomed-import/SCSCpd_1772816205687.pdf
budget_planning.additional_detailshow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
buy_orders.buyer_details.primaryUser.profilefrom $."primaryUser"."profile"how jsonowner t.buyer_account_idfolder-derived3 refs → 3 objectsstoredprofile/peteselfiejpe_1682613401029.jpeg→img/CAP-1H3MLDP/user/profile/peteselfiejpe_1682613401029.jpeg
camp_inventory_items.additional_details.copilotReq.attachmentsfrom $."copilotReq"."attachments"how jsonowner t.account_idfolder-derived48 refs → 48 objectsstoredezrfp/attachments/unnamedjp_1746568542906.jpg→doc/CAP-5C4F4312/copilot/attachments/unnamedjp_1746568542906.jpg
camp_inventory_items.additional_details.copilotReq.quotefrom $."copilotReq"."quote"how jsonowner t.account_idfolder-derived7 refs → 7 objectsstoredezrfp-quote/NIMpd_1769202557178.pdf→doc/CAP-FCPXDEG/copilot-quote/NIMpd_1769202557178.pdf
camp_inventory_items.additional_details.ezrfpRequest.attachmentsfrom $."ezrfpRequest"."attachments"how jsonowner t.account_idfolder-derived7 refs → 7 objectsstoredezrfp/attachments/IMG_5881jpe_1724282537395.jpeg→doc/CAP-1SLV4WS/copilot/attachments/IMG_5881jpe_1724282537395.jpeg
camp_inventory_items.additional_details.ezrfpRequest.quotefrom $."ezrfpRequest"."quote"how jsonowner t.account_idfolder-derived1 refs → 1 objectsstoredezrfp-quote/Conmed_Equipment_Quote_1219_1pd_1699983479471.pdf→doc/CAP-F4O8AS0/copilot-quote/Conmed_Equipment_Quote_1219_1pd_1699983479471.pdf
camp_inventory_items.additional_details.quotefrom $."quote"how jsonowner t.account_idfolder-derived645 refs → 640 objectsstoredezrfp-quote/6707pd_1773087763712.pdf→doc/CAP-0EIVDCM/copilot-quote/6707pd_1773087763712.pdf
camp_inventory_items.additional_details.warrantyDocumentfrom $."warrantyDocument"how jsonowner t.account_idfolder-derived36 refs → 36 objectsstoredezrfp-warranty/CapLogopn_1728499088494.png→doc/CAP-0FJYIZP/copilot/warranty/CapLogopn_1728499088494.png
camp_inventory_items.denovo_detailshow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
camp_inventory_items.remi_additional_detailhow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
carts.additional_detailshow jsonowner t.buyer_idelse t.seller_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
chatbot_threads.messageshow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
copilot_launch_proposals.additional_details.parentQuotefrom $."parentQuote"how jsonowner cl.account_idfolder-derived1,128 refs → 1,127 objectsstoredezrfp-quote/7163pd_1778775521826.pdf→doc/CAP-0EIVDCM/copilot-quote/7163pd_1778775521826.pdf
copilot_launch_proposals.additional_details.poAttachmentfrom $."poAttachment"how jsonowner cl.account_idfolder-derived83 refs → 83 objectsstoreddocument-manager/purchase-orders/POpd_1752756239666.pdf→doc/CAP-0EIVDCM/document-manager/purchase-orders/POpd_1752756239666.pdf
asset_registries.additional_detailshow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
copilot_launch_proposals.componentshow jsonowner cl.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
copilot_launch_proposals.service_componentshow jsonowner cl.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
copilot_pre_orders.additional_details.poAttachments[*].attachmentfrom $."poAttachments"[*]."attachment"how jsonowner t.facility_account_idfolder-derived110 refs → 110 objectsstoreddocument-manager/purchase-orders/3900_001pd_1778250324424.pdf→doc/CAP-LBAJ8F1/transaction/po-attachment/3900_001pd_1778250324424.pdf
copilot_requests.additional_details.inventorySnapshot.images[*]from $."inventorySnapshot"."images"[*]how jsonowner cp.account_idfolder-derived24 refs → 24 objectsstoredinventory/images/1jpe_1701536057310.jpeg→img/CAP-1SLV4WS/assets/1jpe_1701536057310.jpeg
copilot_requests.additional_details.serviceContract.serviceContractFilefrom $."serviceContract"."serviceContractFile"how jsonowner cp.account_idfolder-derived2 refs → 2 objectsstoredinventory/service-contract/LEGENT_ORTHOPEDIC_HOSPITALpd_1777916597468.pdf→doc/CAP-1SLV4WS/assets/service-contract/LEGENT_ORTHOPEDIC_HOSPITALpd_1777916597468.pdf
denovo_projects.additional_details.denovoTemplate.filePathfrom $."denovoTemplate"."filePath"how jsonowner t.account_idfolder-derived9 refs → 9 objectsstoreddocument-manager/DNP-3EA49T11_denovo_template1777566361092.xlsx→doc/CAP-48F4B6AD/document-manager/DNP-3EA49T11_denovo_template1777566361092.xlsx
denovo_projects.additional_details.formData.cadDocuments[*].filePathfrom $."formData"."cadDocuments"[*]."filePath"how jsonowner t.account_idfolder-derived10 refs → 10 objectsstoreddenovo-projects/CADTest1pd_1771825536051.pdf→doc/CAP-73321883/denovo-projects/CADTest1pd_1771825536051.pdf
denovo_projects.additional_details.formData.optionalDocuments[*].filePathfrom $."formData"."optionalDocuments"[*]."filePath"how jsonowner t.account_idfolder-derived3 refs → 3 objectsstoreddenovo-projects/USHV_Spring_Listxls_1777131669825.xlsx→doc/CAP-596A94BD/denovo-projects/USHV_Spring_Listxls_1777131669825.xlsx
denovo_projects.additional_details.formData.purchasingFormulary[*].filePathfrom $."formData"."purchasingFormulary"[*]."filePath"how jsonowner t.account_idfolder-derived1 refs → 1 objectsstoredpurchasing-formulary/Cedarwood_FHC_List_Sheetpd_1777064710141.pdf→doc/CAP-1F18E093/purchasing-formulary/Cedarwood_FHC_List_Sheetpd_1777064710141.pdf
denovo_projects.additional_details.formData.w9Attachment[*].filePathfrom $."formData"."w9Attachment"[*]."filePath"how jsonowner t.account_idfolder-derived3 refs → 3 objectsstoreddenovo-projects/W9_USHV_1pd_1776967102156.pdf→doc/CAP-596A94BD/denovo-projects/W9_USHV_1pd_1776967102156.pdf
denovo_projects.equipment_planning_datahow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
denovo_projects.extracted_datahow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
docusign_requests.details.preOrderItems[*].proposal.additionalDetails.parentQuotefrom $."preOrderItems"[*]."proposal"."additionalDetails"."parentQuote"how jsonowner copilot_parent_requests.account_idelse copilot_pre_orders.facility_account_id else transactions.buyer_account_id else marketplace.account_idfolder-derived1 refs → 1 objectsstoredezrfp-quote/CARM_Quotepd_1788365640765.pdf→doc/CAP-0FJYIZP/copilot-quote/CARM_Quotepd_1788365640765.pdf
docusign_requests.details.preOrderItems[*].proposal.quotefrom $."preOrderItems"[*]."proposal"."quote"how jsonowner copilot_parent_requests.account_idelse copilot_pre_orders.facility_account_id else transactions.buyer_account_id else marketplace.account_idfolder-derived1 refs → 1 objectsstoredezrfp-quote/CARM_Quotepd_1788365640765.pdf→doc/CAP-0FJYIZP/copilot-quote/CARM_Quotepd_1788365640765.pdf
docusign_requests.request_payload.preOrderItems[*].proposal.additionalDetails.parentQuotefrom $."preOrderItems"[*]."proposal"."additionalDetails"."parentQuote"how jsonowner copilot_parent_requests.account_idelse copilot_pre_orders.facility_account_id else transactions.buyer_account_id else marketplace.account_idfolder-derived1 refs → 1 objectsstoredezrfp-quote/CARM_Quotepd_1788365640765.pdf→doc/CAP-0FJYIZP/copilot-quote/CARM_Quotepd_1788365640765.pdf
docusign_requests.request_payload.preOrderItems[*].proposal.quotefrom $."preOrderItems"[*]."proposal"."quote"how jsonowner copilot_parent_requests.account_idelse copilot_pre_orders.facility_account_id else transactions.buyer_account_id else marketplace.account_idfolder-derived1 refs → 1 objectsstoredezrfp-quote/CARM_Quotepd_1788365640765.pdf→doc/CAP-0FJYIZP/copilot-quote/CARM_Quotepd_1788365640765.pdf
inventory_historical_records.detailhow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
inventory_sticker_details.extracted_datahow jsonowner i.account_idelse s2.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
inventory_sticker_details.metadatahow jsonowner i.account_idelse s2.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
inventory_stickers.extracted_datahow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
service_contracts.extracted_datahow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
service_histories.additional_detailshow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
service_histories.extracted_datahow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
shipping_estimates.inventory_detailshow jsonowner t.buyer_idelse t.seller_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
shipping_estimates.request_details.items[*].images[*]from $."items"[*]."images"[*]how jsonowner t.buyer_idelse t.seller_idfolder-derived163 refs → 163 objectsstoredinventory/images/2jpe_1741713732838.jpeg→img/CAP-E16FB0CB/assets/2jpe_1741713732838.jpeg
transaction_equipment_details.componentshow jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
transaction_equipment_details.equipment_details.additionalDetails.transferDetail.fileNamefrom $."additionalDetails"."transferDetail"."fileName"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived1 refs → 1 objectsstoredtransfer-documents/Bill_of_Salepd_1723043698956.pdf→doc/CAP-SHEKHLI/cer-documents/Bill_of_Salepd_1723043698956.pdf
transaction_equipment_details.equipment_details.childInventories[*].inventoryStickerData.inventoryStickerDetail[*].stickerNamefrom $."childInventories"[*]."inventoryStickerData"."inventoryStickerDetail"[*]."stickerName"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived4 refs → 4 objectsstoredinventory/images/1jpe_1739390044463.jpeg→img/CAP-67JYD14/assets/1jpe_1739390044463.jpeg
transaction_equipment_details.equipment_details.imagesfrom $."images"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived942 refs → 942 objectsstoredinventory/images/1jpe_1722612054931.jpeg→img/CAP-SZ580UV/assets/1jpe_1722612054931.jpeg
transaction_equipment_details.equipment_details.images[*]from $."images"[*]how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived942 refs → 942 objectsstoredinventory/images/1jpe_1733263650821.jpeg→img/CAP-2AXX856/assets/1jpe_1733263650821.jpeg
transaction_equipment_details.equipment_details.inventoryStickerData.inventoryStickerDetail[*]from $."inventoryStickerData"."inventoryStickerDetail"[*]how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived1,111 refs → 1,111 objectsstoredinventory/images/2jpe_1738158553983.jpeg→img/CAP-5N0F5GA/assets/2jpe_1738158553983.jpeg
transaction_equipment_details.equipment_details.inventoryStickerData.inventoryStickerDetail[*].stickerfrom $."inventoryStickerData"."inventoryStickerDetail"[*]."sticker"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived88 refs → 88 objectsstoredinventory/images/1jpe_1701535524556.jpeg→img/CAP-BBC7CEF4/assets/1jpe_1701535524556.jpeg
transaction_equipment_details.equipment_details.inventoryStickerData.inventoryStickerDetail[*].stickerNamefrom $."inventoryStickerData"."inventoryStickerDetail"[*]."stickerName"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived984 refs → 984 objectsstoredinventory/images/1jpe_1741606947128.jpeg→img/CAP-AP07IP1/assets/1jpe_1741606947128.jpeg
transaction_equipment_details.equipment_details.serviceContractfrom $."serviceContract"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived1 refs → 1 objectsstoredinventory/service-contract/DEMO_SERVICE_CONTRACT_1pd_1710185201917.pdf→doc/CAP-F4O8AS0/assets/service-contract/DEMO_SERVICE_CONTRACT_1pd_1710185201917.pdf
transaction_equipment_details.equipment_details.tradeInventoryDetail.imagesfrom $."tradeInventoryDetail"."images"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived1 refs → 1 objectsstoredinventory/images/9900001jp_1694199213778.jpg→img/CAP-TBKS34C/assets/9900001jp_1694199213778.jpg
transaction_equipment_details.equipment_details.tradeInventoryDetail.newImages[*]from $."tradeInventoryDetail"."newImages"[*]how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived2 refs → 2 objectsstoredinventory/images/Electrosurgeryjp_1723044572403.jpg→img/CAP-1H3MLDP/assets/Electrosurgeryjp_1723044572403.jpg
transaction_equipment_details.equipment_details.warrantyFilefrom $."warrantyFile"how jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derived3 refs → 3 objectsstoredinventory/warranty/testpn_1726128710484.png→doc/CAP-SHEKHLI/assets/warranty/testpn_1726128710484.png
transaction_equipment_details.service_componentshow jsonowner camp_inventory_items.account_idelse copilot_parent_requests.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
transactions.additional_detailshow jsonowner t.seller_account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
transactions.seller_details.primaryUser.profilefrom $."primaryUser"."profile"how jsonowner t.seller_account_idfolder-derived7 refs → 7 objectsstoredprofile/fhcpn_1682440728613.png→img/CAP-NJQJGDJ/user/profile/fhcpn_1682440728613.png
transfer_requests.additional_detailshow jsonowner t.buyer_account_idelse t.seller_account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key
warranties.extracted_datahow jsonowner t.account_idfolder-derivedno rowsnothing on this clone holds a legacy path at this key