{
  "data": {
    "id": "1",
    "type": "customers",
    "attributes": {
      "name": "M"
    },
    "relationships": {
      "orders": {
        "data": [
          {
            "id": "1",
            "type": "orders"
          },
          {
            "id": "2",
            "type": "orders"
          }
        ],
        "links": {
          "self": "https://example.com/api/v1/customers/1/relationships/orders/",
          "related": "https://example.com/api/v1/customers/1/orders/"
        }
      }
    },
    "links": {
      "self": "https://example.com/api/v1/customers/1/"
    }
  },
  "included": [
    {
      "id": "1",
      "type": "orders",
      "attributes": {
        "price": 1.0
      },
      "links": {
        "self": "https://example.com/api/v1/orders/1/"
      }
    },
    {
      "id": "2",
      "type": "orders",
      "attributes": {
        "price": 2.0
      },
      "links": {
        "self": "https://example.com/api/v1/orders/2/"
      }
    }
  ]
}
