java.lang.RuntimeException: java.lang.Exception: com.squareup.moshi.JsonDataException: Expected BEGIN_OBJECT but was BEGIN_ARRAY at path $.data[0].relationships
Retrofit call:
@GET("someApi/someModel")
fun getSomeModel(): Single<ArrayDocument<SomeModel>>
Model:
@JsonApi(type = "some_model")
public class SomeModel extends Resource {
@Json(name = "foo")
public String foo;
@Json(name = "bar")
public String bar;
}
java.lang.RuntimeException: java.lang.Exception: com.squareup.moshi.JsonDataException: Expected BEGIN_OBJECT but was BEGIN_ARRAY at path $.data[0].relationships
Retrofit call:
Model:
Response: