{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkTypeBulkExportDTO",
"title": "WorkTypeBulkExportDTO",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "A name for the Work Type.",
"example": "Idle Code"
},
"description": {
"type": "string",
"description": "A description for the Work type code created.",
"example": "This is an 'Idle' work type."
},
"workTypeCode": {
"type": "string",
"description": "Identifier for the Work Type being created. Can be 'WRAP_UP_CODE' or 'IDLE_CODE'. ",
"example": "IDLE_CODE"
}
}
}