Co-authored-by: olivermrbl <olivermrbl@users.noreply.github.com> Co-authored-by: Shahed Nasser <shahednasser@gmail.com>
43 lines
1.5 KiB
YAML
43 lines
1.5 KiB
YAML
type: object
|
|
properties:
|
|
name:
|
|
description: The name of the Store
|
|
type: string
|
|
swap_link_template:
|
|
description: A template for Swap links - use `{{cart_id}}` to insert the Swap Cart ID
|
|
type: string
|
|
example: http://example.com/swaps/{{cart_id}}
|
|
payment_link_template:
|
|
description: A template for payment links - use `{{cart_id}}` to insert the Cart ID
|
|
example: http://example.com/payments/{{cart_id}}
|
|
type: string
|
|
invite_link_template:
|
|
description: >-
|
|
A template for invite links - use `{{invite_token}}` to insert the invite
|
|
token
|
|
example: http://example.com/invite?token={{invite_token}}
|
|
type: string
|
|
default_currency_code:
|
|
description: The default currency code of the Store.
|
|
type: string
|
|
externalDocs:
|
|
url: https://en.wikipedia.org/wiki/ISO_4217#Active_codes
|
|
description: See a list of codes.
|
|
currencies:
|
|
description: >-
|
|
Array of available currencies in the store. Each currency is in 3
|
|
character ISO code format.
|
|
type: array
|
|
items:
|
|
type: string
|
|
externalDocs:
|
|
url: https://en.wikipedia.org/wiki/ISO_4217#Active_codes
|
|
description: See a list of codes.
|
|
metadata:
|
|
description: An optional set of key-value pairs with additional information.
|
|
type: object
|
|
externalDocs:
|
|
description: Learn about the metadata attribute, and how to delete and update it.
|
|
url: >-
|
|
https://docs.medusajs.com/development/entities/overview#metadata-attribute
|