{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateDeploymentDetails", "title": "CreateDeploymentDetails", "type": "object", "required": [ "displayName", "compartmentId", "subnetId", "licenseModel", "cpuCoreCount", "isAutoScalingEnabled" ], "properties": { "displayName": { "type": "string", "example": "example_value" }, "description": { "type": "string", "example": "A sample description." }, "compartmentId": { "type": "string", "example": "500123" }, "subnetId": { "type": "string", "example": "500123" }, "licenseModel": { "type": "string", "enum": [ "LICENSE_INCLUDED", "BRING_YOUR_OWN_LICENSE" ], "example": "LICENSE_INCLUDED" }, "fqdn": { "type": "string", "example": "example_value" }, "cpuCoreCount": { "type": "integer", "example": 10 }, "isAutoScalingEnabled": { "type": "boolean", "example": true }, "isPublic": { "type": "boolean", "example": true }, "oggData": { "type": "object", "required": [ "deploymentName", "adminUsername", "adminPassword" ], "properties": { "deploymentName": { "type": "string" }, "adminUsername": { "type": "string" }, "adminPassword": { "type": "string", "format": "password" } }, "example": "example_value" }, "freeformTags": { "type": "object", "additionalProperties": { "type": "string" }, "example": "example_value" }, "definedTags": { "type": "object", "additionalProperties": { "type": "object" }, "example": "example_value" } } }