# I have two models, A and B, A with a foreign to B If I create a Django Rest Framework serializer for A with relatedField to B so that when I create a model from json: { "B": {}, "a_attribute_1": 123, } both A and B are created?