
RyanA.50521 (Customer) asked a question.
I have 2 seperate processes that load details from the apps api and users api into my database. I can see that apps response has a list of users per app - but referenced by href and not the user id. I also see that a self.href is supplied in the user response.
Am I able to join on the href, or do i risk things breaking?

@RyanA.50521 (Customer) -- I was thinking about this a bit in the PM yesterday. And there are basically 7 endpoints that all contain different elements of shared / related data:
Users:
Applications:
Groups:
So to basically answer all of your "questions" about which users belong to which application and if they were individually or group assigned and additional specific details about app, user, group resources you basically would need a table for all 7 of them as it should cover the majority of your queries and would have enough associations between them to pull the information needed in a "join" type scenario.
There might be a better way.. but I don't know.