Organization データ構造
組織オブジェクトのフィールド定義です。すべてのリソースは組織に紐づきます。
|
ID 形式
各リソースは prefix 付き public ID(例: deal_..., inv_..., form_..., ak_...)を利用します。
全プロダクト共通の ID 規約Organization object
組織を表すオブジェクトです。すべてのリソースは組織に紐づきます。
フィールド
| 名前 | 型 | 必須 | 説明 |
|---|---|---|---|
id | string | 必須 | 組織 ID |
name | string | 必須 | 組織名(内部識別用スラッグ) |
display_name | string | null | 任意 | 表示名 |
email | string | null | 任意 | メールアドレス |
phone | string | null | 任意 | 電話番号 |
website | string | null | 任意 | ウェブサイト URL |
address | string | null | 任意 | 住所 |
representative | string | null | 任意 | 代表者名 |
invoice_registration_number | string | null | 任意 | 適格請求書発行事業者登録番号(T + 13桁) |
postal_code | string | null | 任意 | 郵便番号 |
logo_url | string | null | 任意 | ロゴ画像 URL |
created_at | string | 必須 | 作成日時 (ISO 8601) |
updated_at | string | 必須 | 更新日時 (ISO 8601) |
{
"id": "org_01HZXYZ",
"name": "acme-corp",
"display_name": "Acme Corporation",
"email": "info@acme.example.com",
"phone": "03-1234-5678",
"website": "https://acme.example.com",
"address": "東京都千代田区1-1-1",
"representative": "田中太郎",
"invoice_registration_number": "T1234567890123",
"postal_code": "100-0001",
"logo_url": "https://storage.blueai.jp/logos/acme.png",
"created_at": "2026-01-01T00:00:00Z",
"updated_at": "2026-02-20T12:00:00Z"
}