{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-schema/amazon-proton-update-service-input-schema.json", "title": "UpdateServiceInput", "description": "UpdateServiceInput schema from Amazon Proton API", "type": "object", "properties": { "description": { "allOf": [ { "$ref": "#/components/schemas/Description" }, { "description": "The edited service description." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/ResourceName" }, { "description": "The name of the service to edit." } ] }, "spec": { "allOf": [ { "$ref": "#/components/schemas/SpecContents" }, { "description": "Lists the service instances to add and the existing service instances to remain. Omit the existing service instances to delete from the list. Don't include edits to the existing service instances or pipeline. For more information, see Edit a service in the Proton User Guide." } ] } }, "required": [ "name" ] }