VTEX · Schema

GetSchemasResponse

Schema.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
name string Schema name.
schema object Object with schema properties.
View JSON Schema on GitHub

JSON Schema

vtex-getschemasresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetSchemasResponse",
  "title": "GetSchemasResponse",
  "required": [
    "name",
    "schema"
  ],
  "type": "object",
  "description": "Schema.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Schema name."
    },
    "schema": {
      "type": "object",
      "description": "Object with schema properties.",
      "properties": {
        "properties": {
          "$ref": "#/components/schemas/Properties"
        }
      }
    }
  }
}