LibDeploymentCreateRequest

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
name string Library name
sourceURL string URL or file path to the library archive
targets array
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-libdeploymentcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LibDeploymentCreateRequest",
  "title": "LibDeploymentCreateRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Library name"
    },
    "sourceURL": {
      "type": "string",
      "description": "URL or file path to the library archive"
    },
    "targets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Identity"
      }
    }
  }
}