```python
temporal_profile = {
    ('Create Purchase Requisition', 'Approve Purchase Requisition'): (172800, 43200),  # 2 days avg, 0.5 days stdev
    ('Approve Purchase Requisition', 'Create Purchase Order'): (86400, 21600),  # 1 day avg, 6 hours stdev
    ('Create Purchase Order', 'Send Purchase Order to Vendor'): (43200, 10800),  # 0.5 days avg, 3 hours stdev
    ('Send Purchase Order to Vendor', 'Receive Goods'): (604800, 86400),  # 7 days avg, 1 day stdev
    ('Receive Goods', 'Goods Receipt'): (43200, 10800),  # 0.5 days avg, 3 hours stdev
    ('Goods Receipt', 'Invoice Received'): (172800, 43200),  # 2 days avg, 0.5 days stdev
    ('Invoice Received', 'Approve Invoice'): (86400, 21600),  # 1 day avg, 6 hours stdev
    ('Approve Invoice', 'Payment Processed'): (86400, 21600),  # 1 day avg, 6 hours stdev

    # Indirect relationships (for deviation detection)
    ('Create Purchase Requisition', 'Receive Goods'): (1296000, 259200),  # 15 days avg, 3 days stdev
    ('Create Purchase Requisition', 'Payment Processed'): (2592000, 518400),  # 30 days avg, 6 days stdev
    ('Approve Purchase Requisition', 'Payment Processed'): (1728000, 345600),  # 20 days avg, 4 days stdev
}
```

**Explanation:**

This temporal profile models a typical Purchase-to-Pay process with the following steps:

* **Create Purchase Requisition:** The process starts with a request for goods or services.
* **Approve Purchase Requisition:** The requisition is reviewed and approved by authorized personnel.
* **Create Purchase Order:** A formal order is created and sent to the vendor.
* **Send Purchase Order to Vendor:** The order is transmitted to the supplier.
* **Receive Goods:** The goods or services are delivered.
* **Goods Receipt:** The delivery is verified and recorded.
* **Invoice Received:** The vendor sends an invoice for the delivered goods or services.
* **Approve Invoice:** The invoice is reviewed and approved for payment.
* **Payment Processed:** The payment is made to the vendor.

**Time Estimates:**

The average times and standard deviations are estimates and can be adjusted based on specific business processes and industry norms. For example, the time it takes to receive goods might vary depending on the vendor's location and shipping methods.

**Indirect Relationships:**

The profile also includes some indirect relationships. These are useful for detecting deviations in the overall process flow. For instance, if the time between creating a purchase requisition and receiving goods significantly deviates from the average of 15 days, it might indicate a potential issue that requires investigation.

**Using the Profile:**

This temporal profile can be used to monitor the performance of the Purchase-to-Pay process and identify potential bottlenecks or delays. By comparing the actual time taken for each step against the expected average and standard deviation, deviations can be flagged and investigated. This helps to ensure the process runs smoothly and efficiently.

**Note:**  This is a hypothetical example, and the specific time values may need to be adjusted based on your specific business context. You should analyze your own process data to determine appropriate values for your organization.
