commercetools · Schema

ImportContainerDraft

Request body for creating or replacing an import container.

CommerceComposable CommerceE-CommerceGraphQLRESTSDK

Properties

Name Type Description
key string User-defined unique key (2-256 characters, alphanumeric with hyphens/underscores).
resourceType string Optional resource type scope for the container.
View JSON Schema on GitHub

JSON Schema

commercetools-importcontainerdraft-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportContainerDraft",
  "title": "ImportContainerDraft",
  "type": "object",
  "description": "Request body for creating or replacing an import container.",
  "required": [
    "key"
  ],
  "properties": {
    "key": {
      "type": "string",
      "description": "User-defined unique key (2-256 characters, alphanumeric with hyphens/underscores)."
    },
    "resourceType": {
      "type": "string",
      "description": "Optional resource type scope for the container."
    }
  }
}