{
"type": "object",
"required": ["institute_id", "name", "region"],
"properties": {
"institute_id": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the institute"
},
"name": {
"type": "string",
"description": "Name of the institute"
},
"region": {
"type": "string",
"description": "Geographic region (2-letter country code, ISO 3166-1 alpha-2)"
},
"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"
}
}
}