{
"type": "object",
"required": [
"typeInfo",
"configuration"
],
"properties": {
"typeInfo": {
"allOf": [
{
"$ref": "#/components/schemas/ActivityTypeInfo"
},
{
"description": "<p>General information about the activity type.</p> <p>The status of activity type (returned in the ActivityTypeInfo structure) can be one of the following.</p> <ul> <li> <p> <code>REGISTERED</code> \u2013 The type is registered and available. Workers supporting this type should be running. </p> </li> <li> <p> <code>DEPRECATED</code> \u2013 The type was deprecated using <a>DeprecateActivityType</a>, but is still in use. You should keep workers supporting this type running. You cannot create new tasks of this type. </p> </li> </ul>"
}
]
},
"configuration": {
"allOf": [
{
"$ref": "#/components/schemas/ActivityTypeConfiguration"
},
{
"description": "The configuration settings registered with the activity type."
}
]
}
},
"description": "Detailed information about an activity type.",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ActivityTypeDetail"
}