VTEX · Schema

ServiceBody

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
message string Status message about the request.
data object Service general information.
View JSON Schema on GitHub

JSON Schema

vtex-servicebody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceBody",
  "title": "ServiceBody",
  "required": [
    "message",
    "data"
  ],
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "Status message about the request."
    },
    "data": {
      "$ref": "#/components/schemas/Data",
      "type": "object",
      "description": "Service general information."
    }
  }
}