IBM WebSphere · Schema

QueueCreate

Application ServerCloud-NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

Name Type Description
name string Queue name
type string
description string
maxDepth integer
maxMessageLength integer
persistence object
View JSON Schema on GitHub

JSON Schema

websphere-mq-rest-queue-create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "QueueCreate",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Queue name"
    },
    "type": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "maxDepth": {
      "type": "integer"
    },
    "maxMessageLength": {
      "type": "integer"
    },
    "persistence": {
      "type": "object"
    }
  }
}