رجوع للكتالوج
D12العمليات

استخراج بيانات المستندات

يقرأ مستندات منظّمة وشبه منظّمة تجي بصيغ غير منظّمة — فواتير، أوامر شراء، بوالص شحن، نماذج مطالبات، عقود، أوراق ممسوحة — ويستخرج الحقول اللي تهم الشركة لسجلات منظّمة. يمرّر كل سجل مستخرَج عبر تحقّق (هل يطابق المتوقع، هل المجاميع تضبط، هل المورّد معروف)، ثم يسلّم لنظام السجلات. الاستخراجات عالية الثقة تنزل مباشرة؛ منخفضة الثقة تروح لمراجع بشري مع عرض المستند المصدر والقيم المقترحة جنب بعض. النمط يمتص شغل إدخال البيانات اللي يستهلك ساعات من الوقت الماهر يومياً في الشركات كثيفة العمليات.

وين يناسب
أشكال الأعمال
خدمات بين الشركاتشركة منتجاتخدمات مهنية
عتبة الحجم
تحت 200 documents processed per month بالشهر، الاسترداد نادراً يبرّر البناء. الأنماط بهالشكل تسدّد بثبات عند 2,000+.
يناسب أكثر
التصنيع واللوجستيات وشركات المحاسبة وإدارة الرعاية الصحية. من أكثر الأنماط موثوقية في الكتالوج.
الاسترداد · 3-5 شهرالبناء · منخفض–متوسطالقيمة · $50k-$200kمتى · أكثر من 100 مستند/أسبوع
وضع الفشل اللي تصمّم حوله
التنسيقات غير المعتادة تكسر الاستخراج ← طابور الاستثناءات لازم يكون أساسياً، مو فكرة لاحقة.
المتطلبات · 6 مطلوب، 1 اختياري

المتطلبات تصف قدرات يحتاجها النمط في بيئتك، مو الموردين اللي لازم تشتريهم. أي نظام يملأ متطلباً يحقّقه — وهذا اللي يخلّي الكتالوج قابلاً للنقل عبر الذيل الطويل من أدوات الشركات الصغيرة والمتوسطة.

  1. document_intake_channel
    مطلوبقراءةحدث

    Where documents arrive for processing. Most clients have several channels feeding the same workflow.

    شكل البيانات
    Document files in common formats (PDF, image, sometimes Word or HTML email) with arrival metadata: source, timestamp, sender if known.
    يُملأ عادةً بواسطة
    • email inbox where suppliers send invoices
    • shared drive folder where scanned documents land
    • upload portal for customers or partners
    • vendor portal that pushes documents via API
    • OCR feed from a multi-function printer
  2. extraction_schema_definitions
    مطلوبقراءةمجموعة

    What fields to extract per document type. Different document types have different schemas; the pattern needs explicit definitions, not guessing.

    شكل البيانات
    Per-document-type field definitions: name, type, required-or-optional, validation rules, example values.
    يُملأ عادةً بواسطة
    • configuration maintained per document type by the engagement team
    • small admin UI for the operations team to manage schemas
    • templates derived from sample documents during build phase
  3. reference_data_for_validation
    مطلوبقراءةطلب

    Known-good data the extracted values get checked against: supplier list, product catalog, customer roster, GL codes.

    شكل البيانات
    Reference tables with the canonical entities and their identifiers. Lets the pattern check that 'Acme Corp' on an invoice matches the supplier record and isn't a new supplier.
    يُملأ عادةً بواسطة
    • supplier master in the ERP or accounting system
    • product catalog with SKUs
    • customer database keyed by name and tax ID
    • chart of accounts
  4. structured_output_destination
    مطلوبكتابةحدث

    Where the extracted, validated records land. Usually the system of record the documents would have been keyed into by hand.

    شكل البيانات
    Structured records matching the destination system's schema, with a reference back to the source document.
    يُملأ عادةً بواسطة
    • bill or invoice created in the accounting system
    • purchase order record in the ERP
    • claim record in the operations platform
    • structured entry in the workflow management tool
  5. human_review_queue
    مطلوبقراءة + كتابةطلب

    Where low-confidence extractions go for human verification. Reviewer sees the source document and the proposed values side by side, with the uncertain fields highlighted.

    شكل البيانات
    Document + extracted fields + per-field confidence + reviewer actions (confirm, edit, reject).
    يُملأ عادةً بواسطة
    • review UI built for the engagement showing document and fields side by side
    • queue inside the accounting or ERP system
    • dedicated app for the operations reviewers
  6. exception_workflow
    مطلوبكتابةحدث

    Where documents that fundamentally can't be processed go: unknown supplier, malformed document, suspected duplicate, suspected fraud.

    شكل البيانات
    Document with exception classification, evidence, and routing suggestion.
    يُملأ عادةً بواسطة
    • exception queue in the accounting system
    • ticket created for finance operations
    • dedicated investigation folder with notifications
  7. source_document_archive
    موصى بهكتابةمجموعة

    Long-term storage of original documents, linked from the structured records for audit and reference.

    شكل البيانات
    Original files preserved with metadata: extraction date, links to created records, retention schedule.
    إذا مفقود
    Compliance and audit trail are weaker; in regulated industries this is effectively required. Strongly recommend in any client with audit obligations.
    يُملأ عادةً بواسطة
    • document management system with retention policies
    • archived folder in the file store with structured naming
    • attachment field on the destination record
سير التشغيل · 9 خطوة
  1. 01
    A new document arrives on one of the intake channels
    document_intake_channel
  2. 02
    Classify document type and select the matching extraction schema
    extraction_schema_definitions
  3. 03
    Extract field values from the document, scoring each field's extraction confidence
  4. 04
    Validate extracted values against reference data (does this supplier exist, are line items recognized, do totals match)
    reference_data_for_validation
  5. 05
    Classify the result: high-confidence + valid → auto-process; low-confidence or validation failures → review; fundamental problems → exception
    قرار Three branches based on confidence and validation outcome.
  6. 06
    For auto-process: write structured record to destination and archive source
    structured_output_destinationsource_document_archive
  7. 07
    For review: queue with source and proposed values for human verification
    human_review_queue
  8. 08
    For exception: route to exception workflow with classification and evidence
    exception_workflow
  9. 09
    On reviewer confirmation, write the record and feed corrections back for schema and confidence tuning
    structured_output_destinationsource_document_archive
المخرجات · 3

مخرجات منظّمة ينتجها هذا النمط. أنماط ثانية وأنظمة العملاء تقدر تشترك فيها، وهكذا يتركّب الكتالوج مع الوقت.

  • extraction_quality_signal

    Per-document-type accuracy: auto-process rate, reviewer override rate, exception rate. The main metric for tuning.

    يُستهلك بواسطة
    • pattern quality dashboards
    • schema refinement workflows
    • monthly operations review
  • supplier_or_customer_emergence_signal

    New entities appearing in documents that don't match reference data, surfaced for master-data maintenance.

    يُستهلك بواسطة
    • procurement
    • B2 CRM hygiene if live
    • master data governance
  • anomaly_signal

    Documents flagged as suspicious — duplicates, unusual amounts, mismatched line items.

    يُستهلك بواسطة
    • fraud and audit workflows
    • finance leadership review