I suspect @zerkms won't be the only one who doesn't understand what is wrong with this data model so it is worthwhile examining its shortcomings.
1. It has no relational integrity
The primary key of Descriptions is presumably (ObjectCode,ObjectType). This doesn't map to any parent key, so there is no way to enforce a rule that a Description must belong to some object. Even if ObjectCode is unique across all tables (say it is a generated UUID) so that the primary key of Descriptions could be (ObjectCode) we would still not be able to enforce a foreign key constraint because one child key cannot reference multiple parent keys.
Conversely we also cannot enforce the rule that a Country must have a Description because foreign keys don't work that way.
@EoinCampbell's suggestion of putting the model into sixth normal form - Countries CountryDescriptions Regions RegionDescriptions etc - at least has the virtue of supporting data integrity.
2. The performance will suffer
Every query to retrieve a single set of data is now a join. Joining isn't automatically a bad thing - it's what RDBMS products are meant to do - but now we have a small table Countries joining to a much larger table Descriptions. Consequentlty, a query to retrieve all the countries and their descriptions will be a lot less efficient because it will need to winnow all the Descriptions of the other types.
Again 6NF has a benefit as it will scale better than the posted implementation.
3. Way too many tables
New requirement: we need to hold ABBREVIATION for all these objects. That is not an attribute of Description so we can't store it on that table. But we cannot put a Population column on Countries, Regions, etc because that would be inconsistent. So we need another table Abbreviations. Oh and the users would like to hold POPULATION as well. And AREA if you don't mind. Before you know it, select * from countries
has become a five-table join.
This is where 6NF breaks down. The number of tables required rapidly metastasizes into a schema of mind-boggling proportions.
Which is why most sensible people stop at BCNF, or at least 3NF.