I have a Dimension Table called Dim Case. This is a conformed dimension that is linked to 3 different fact tables. I need to answer questions about the Cases themselves however.
Questions such as
I feel as though there are 2 solutions to this but unsure which would be best.
Are 1:1 relationships frowned upon?
Example Table Schemas below:
Dim Case
Possible Fact Cases Table:
If this is just a question of where to store your measures, you're probably overthinking it. Most well organised models store their measures in a measures table with subfolders (a measure frequently involves more than one table and finding a suitable home is not always obvious if you store all measures in the respective tables).
1-2-1 relationships are not frowned upon but they are rare as they are effectively pointless and raise the question of why the columns are not all in the same table. There could be a logical separation but otherwise there isn't much point.
Creating measures for metrics about your dimensions is not unusual.
I don't know what else is in your model but why do you think Case is a dimension and not a fact table? From what you have described, it sounds like a fact table.