This will be delivered as a list. Users can iterate through this
for os in domain_object.get_os():
print(os)
Each object in the list will be delivered as a dictionary with keys; ‘os’, ‘current_path’, ‘possibleOptions’. For example, users can return all the OS
for os in domain_object.get_os():
print(os['os'])