{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateDeploymentDetails", "title": "UpdateDeploymentDetails", "type": "object", "properties": { "displayName": { "type": "string", "example": "example_value" }, "description": { "type": "string", "example": "A sample description." }, "fqdn": { "type": "string", "example": "example_value" }, "cpuCoreCount": { "type": "integer", "example": 10 }, "isAutoScalingEnabled": { "type": "boolean", "example": true }, "isPublic": { "type": "boolean", "example": true }, "freeformTags": { "type": "object", "additionalProperties": { "type": "string" }, "example": "example_value" } } }