Django REST to_representation: Чтобы поля сериализатора отображались последними

У меня есть следующий класс сериализатора:

class DataLocationSerializer(QueryFieldsMixin, serializers.ModelSerializer):

    def create(self, validated_data):
        pass

    def update(self, instance, validated_data):
        pass

    class Meta:
        model = MeasurementsBasic
        fields = ['temp', 'hum', 'pres', 'co', 'no2',
                            'o3', 'so2']

    def to_representation(self, instance):
        representation = super().to_representation(instance)
        representation['timestamp'] = instance.time_received

        return representation

Данные возвращаются в файле JSON, структурированном следующим образом:

{
    "source": "ST",
    "stations": [
        {
            "station": "ST1",
            "data": [
                {
                    "temp": -1.0,
                    "hum": -1.0,
                    "pres": -1.0,
                    "co": -1.0,
                    "no2": -1.0,
                    "o3": -1.0,
                    "so2": null,
                    "timestamp": "2021-07-04T21:00:03"                  
                }
            ]
        }
    ]
}

Как сделать так, чтобы временная метка появлялась перед полями сериализатора?

Создайте новый словарь:

def to_representation(self, instance):
    representation = super().to_representation(instance)
    return {'timestamp': instance.time_received, **representation }
Вернуться на верх