vault backup: 2026-08-20 14:44:28

This commit is contained in:
2026-08-20 14:44:28 -04:00
parent b87e7f7ec9
commit 2dc3c0f4d9
8 changed files with 249 additions and 114 deletions
View File
View File
@@ -0,0 +1,97 @@
---
vendor: Algolia
contract_start: 2024-01-01
contract_end: 2026-12-31
type: contract
status: active
category:
- search
annual_cost: 25,074.33
currency: USD
contract_value:
billing_frequency: annual
payment_terms: net-30
auto_renewal: false
notice_days:
notice_deadline:
renewal_status:
- review-needed
purchase_order:
account_manager:
criticality: medium
---
# Algolia - 2024-2026
## Contract Summary
**Service / Product:**
**Purpose:**
**Business owner:**
---
## Commercial Terms
**Annual cost:**
**Total contract value:**
**Currency:**
**Billing frequency:**
**Payment terms:**
**Purchase order:**
---
## Renewal
**Contract end:**
**Auto-renewal:**
**Notice period:**
**Notice deadline:**
**Expected price increase:**
**Renewal decision:**
---
## Services / Entitlements
-
---
## Contacts
| Role | Name | Email |
|---|---|---|
| Account Manager | | |
| Technical Contact | | |
| Support | | |
---
## Risks / Considerations
-
---
## Renewal History
-
---
## Notes
-
+42
View File
@@ -0,0 +1,42 @@
## Upcoming Expiration
```dataview
TABLE
vendor AS "Vendor",
annual_cost AS "Annual Cost",
currency AS "Currency",
contract_end AS "Ends",
renewal_status AS "Renewal"
FROM "20 Work/Contracts"
WHERE status = "active"
AND contract_end >= date(today)
AND contract_end <= date(today) + dur(120 days)
SORT contract_end ASC
```
## Contract with notice deadline
```dataview
TABLE
vendor AS "Vendor",
notice_deadline AS "Notice Deadline",
contract_end AS "Contract End",
annual_cost AS "Annual Cost",
currency AS "Currency"
FROM "20 Work/Contracts"
WHERE status = "active"
AND notice_deadline
SORT notice_deadline ASC
```
## Portfolio by currency
```dataview
TABLE WITHOUT ID
currency AS "Currency",
sum(rows.annual_cost) AS "Annual Commitments"
FROM "20 Work/Contracts"
WHERE status = "active"
GROUP BY currency
```