{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateTrackingCodeItemForUserObject",
"title": "UpdateTrackingCodeItemForUserObject",
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"example": "Department",
"description": "Name for tracking code. The name cannot be empty and the maximum size is 120 characters."
},
"value": {
"type": "string",
"description": "Value for tracking code. `value` cannot be empty and the maximum size is 120 characters."
}
}
}