← ClaudeAtlas

mmk-paymint-notion-schemalisted

Recommended Notion database schema for Paymint invoice tracking. Triggers on "paymint notion schema", "paymint database setup", "invoice database design", "paymint notion template", "paymint db schema".
magic-meal-kits/mmk-skills · ★ 1 · API & Backend · score 55
Install: claude install-skill magic-meal-kits/mmk-skills
# Paymint Notion Database — Recommended Schema > **Prerequisite:** Read [`../mmk-shared/SKILL.md`](../mmk-shared/SKILL.md) for auth, global flags, and error handling. > Related: [`mmk-paymint-notion-invoice`](../mmk-paymint-notion-invoice/SKILL.md) — Batch send workflow that uses this schema. This skill shows the recommended Notion database schema for Paymint invoice lifecycle tracking. Present the appropriate tier based on user needs. ## Design Tiers ### Minimal (11 properties) Just enough for the [`mmk-paymint-notion-invoice`](../mmk-paymint-notion-invoice/SKILL.md) recipe. Use this when the user only needs to send invoices and track basic results. | Property | Type | Category | Notes | |----------|------|----------|-------| | (title) | title | Input | Descriptive label (e.g., "김철수 - 3월 워크샵") | | 고객명 | rich_text | Input | Recipient name (maps to `--name`) | | 연락처 | phone_number | Input | Korean mobile number (maps to `--phone`) | | 결제금액 | number | Input | Invoice amount in KRW (maps to `--amount`) | | 청구사유 | rich_text | Input | Product/service description (maps to `--product`) | | 안내메시지 | rich_text | Input | Invoice message (maps to `--message`) | | 유효기간 | date | Input | Expiry date (YYYY-MM-DD). Default: 7 days from send | | 결제상태 | select | Status | Options: `미결제`, `청구완료`, `발송실패`, `결제완료`, `취소` | | 청구서ID | rich_text | Result | bill_id from send response | | 발송결과코드 | rich_text | Result | Result code ("0000" = success) | | ShortURL | url | Result | Payment link | ### F