IBM WebSphere · Schema

QueueUpdate

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

Name Type Description
description string
maxDepth integer
maxMessageLength integer
inhibitPut boolean
inhibitGet boolean
View JSON Schema on GitHub

JSON Schema

websphere-queueupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueueUpdate",
  "title": "QueueUpdate",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "maxDepth": {
      "type": "integer",
      "example": 10
    },
    "maxMessageLength": {
      "type": "integer",
      "example": 10
    },
    "inhibitPut": {
      "type": "boolean",
      "example": true
    },
    "inhibitGet": {
      "type": "boolean",
      "example": true
    }
  }
}