Skip to content

Commit

Permalink
Added Ordering codes
Browse files Browse the repository at this point in the history
  • Loading branch information
apardods committed Oct 15, 2024
1 parent 6dd886b commit 9059c6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bill/ordering.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
// to other documents and alternative parties involved in the order-to-delivery process.
type Ordering struct {
// Identifier assigned by the customer or buyer for internal routing purposes.
Code cbc.Code `json:"code,omitempty" jsonschema:"title=Code"`
Code cbc.Code `json:"code,omitempty" jsonschema:"title=Code" en16931:"BT-10"`
// Any additional Codes, IDs, SKUs, or other regional or custom
// identifiers that may be used to identify the order.
Identities []*org.Identity `json:"identities,omitempty" jsonschema:"title=Identities"`
Expand Down
2 changes: 1 addition & 1 deletion bill/payment.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type Payment struct {
// The party responsible for receiving payment of the invoice, if not the supplier.
Payee *org.Party `json:"payee,omitempty" jsonschema:"title=Payee"`
// Payment terms or conditions.
Terms *pay.Terms `json:"terms,omitempty" jsonschema:"title=Terms"`
Terms *pay.Terms `json:"terms,omitempty" jsonschema:"title=Terms" en16931:"BT-20"`
// Any amounts that have been paid in advance and should be deducted from the amount due.
Advances []*pay.Advance `json:"advances,omitempty" jsonschema:"title=Advances"`
// Details on how payment should be made.
Expand Down

0 comments on commit 9059c6e

Please sign in to comment.