{
"type": "object",
"required": ["keyword_id", "name"],
"properties": {
"keyword_id": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the keyword"
},
"name": {
"type": "string",
"description": "Name of the keyword"
},
"created": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "Timestamp when the record was created"
},
"updated": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "Timestamp when the record was last updated"
},
"is_deleted": {
"type": "boolean",
"nullable": true,
"description": "Flag indicating if the record is marked as deleted"
}
}
}