請求書

このタイプを使用して、支払いのための請求書に関する情報を埋め込む。

ユースケース

次のユースケースは、Invoice スキーマの一般的な例を示しています。 分析できます以下の例を使用して、マークアップが正しく構造化されていることを確認してください。

自動支払いの請求書

これは、請求書タイプを使用したマークアップの例です。この例では 自動支払いが指定されています。

JSON-LD

<script type='application/ld+json'>
{
  "@context": "http://schema.org",
  "@type": "Invoice",
  "accountId": "123-456-789",
  "minimumPaymentDue": {
    "@type": "PriceSpecification",
    "price": "$70.00"
  },
  "paymentDue": "2015-11-22T08:00:00+00:00",
  "paymentStatus": "PaymentAutomaticallyApplied",
  "provider": {
    "@type": "Organization",
    "name": "Mountain View Utilities"
  },
  "totalPaymentDue": {
    "@type": "PriceSpecification",
    "price": "$70.00"
  }
}
</script>

microdata

<div itemscope itemtype="http://schema.org/Invoice">
  <span itemprop="accountId">123-456-789</span>
  <div itemprop="minimumPaymentDue" itemscope itemtype="http://schema.org/PriceSpecification">
    <span itemprop="price">$70.00</span>
  </div>
  <span itemprop="paymentDue">2015-11-22T08:00:00+00:00</span>
  <span itemprop="paymentStatus">PaymentAutomaticallyApplied</span>
  <div itemprop="provider" itemscope itemtype="http://schema.org/Organization">
    <span itemprop="name">Mountain View Utilities</span>
  </div>
  <div itemprop="totalPaymentDue" itemscope itemtype="http://schema.org/PriceSpecification">
    <span itemprop="price">$70.00</span>
  </div>
</div>

マークアップをテスト

マークアップは、メール マークアップ テスターツールを使用して検証できます。マークアップ コードを貼り付けて、[検証] ボタンをクリックしてコンテンツをスキャンし、エラーに関するレポートを生成します。

仕様

メールの詳細を調べて、次のような追加プロパティがないか確認してください 請求書に適用されるオプションですこれらの追加プロパティをマークアップすることで 請求書のより詳細な説明を表示します。

請求書

Type name: Invoice

Intangible を拡張

名前 説明
accountId テキスト お支払いが適用されるアカウントの識別子。
billingPeriod 期間 請求書の計算に使用される時間間隔。
ブローカー Organization または Person 購入者と販売者間のやり取りを手配するエンティティ。ほとんどの場合、ブローカーが取引所に関連する商品やサービスの所有権を取得、解放することはありません。事業体がブローカー、販売者、購入者のいずれであるかが明確でない場合は、後者 2 つの語句が優先されます。
category PhysicalActivityCategoryText、または Thing 商品アイテムのカテゴリ。大きい記号やスラッシュは、カテゴリ階層を非公式に表すために使用することができます。
confirmationNumber テキスト 注文や支払いが受領済みであることを示す番号。
顧客 Organization または Person 注文を行う、または請求書の支払いを行う当事者。
minimumPaymentDue PriceSpecification 現時点での最低お支払い額。
paymentDue DateTime 支払い期日。
paymentMethod PaymentMethod 注文のクレジット カードや他のお支払い方法の名前。
paymentMethodId テキスト 使用されたお支払い方法の識別子(クレジット カードの末尾 4 桁など)。
paymentStatus テキスト お支払いのステータス請求書が支払われたかどうか。
provider Organization または Person 予約を提供する組織。
referencesOrder 順番 この請求書に関連する注文。1 つ以上の注文を 1 つの請求書にまとめることができます。
scheduledPaymentDate 日付 請求書の支払い予定日。
totalPaymentDue PriceSpecification 合計支払い額。