VTEX · Schema

ValidityRequest

Information about the period during which the subscription will be valid.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
begin string Subscription's beginning date with the format `yyyy-mm-ddThh:mm:ss`.
end string Subscription's ending date with the format `yyyy-mm-ddThh:mm:ss`.
View JSON Schema on GitHub

JSON Schema

vtex-validityrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValidityRequest",
  "title": "ValidityRequest",
  "type": "object",
  "description": "Information about the period during which the subscription will be valid.",
  "properties": {
    "begin": {
      "type": "string",
      "nullable": true,
      "description": "Subscription's beginning date with the format `yyyy-mm-ddThh:mm:ss`.",
      "example": "2022-06-10T00:00:00"
    },
    "end": {
      "type": "string",
      "nullable": true,
      "description": "Subscription's ending date with the format `yyyy-mm-ddThh:mm:ss`.",
      "example": "2023-06-10T00:00:00"
    }
  },
  "additionalProperties": false
}