VTEX · Schema

Target

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
id string
type string
url string
View JSON Schema on GitHub

JSON Schema

vtex-target-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Target",
  "title": "Target",
  "required": [
    "id",
    "type",
    "url"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  },
  "example": {
    "id": "v964735bdev-01",
    "type": "order",
    "url": "https://basedevmkp.vtexcommercebeta.com.br/admin/checkout/#/orders/v964741bdev-01"
  }
}