{
"type": "object",
"required": [
"domain",
"activityType"
],
"title": "DeprecateActivityTypeInput",
"properties": {
"domain": {
"allOf": [
{
"$ref": "#/components/schemas/DomainName"
},
{
"description": "The name of the domain in which the activity type is registered."
}
]
},
"activityType": {
"allOf": [
{
"$ref": "#/components/schemas/ActivityType"
},
{
"description": "The activity type to deprecate."
}
]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}