{
  "data": {
    "id": "1",
    "type": "orders",
    "attributes": {
      "price": 3.0,
      "tax": 5.0,
      "total": 8.0,
      "balance": 0.0
    },
    "relationships": {
      "order_items": {
        "data": [
          {
            "id": "5",
            "type": "order_items"
          },
          {
            "id": "10",
            "type": "order_items"
          }
        ],
        "links": {
          "self": "https://example.com/api/v1/orders/1/relationships/order_items/",
          "related": "https://example.com/api/v1/orders/1/order_items/"
        }
      },
      "comments": {
        "data": [
          {
            "id": "1",
            "type": "comments"
          },
          {
            "id": "2",
            "type": "comments"
          }
        ],
        "links": {
          "self": "https://example.com/api/v1/orders/1/relationships/comments/",
          "related": "https://example.com/api/v1/orders/1/comments/"
        }
      },
      "gift_card": {
        "data": {
          "id": "1",
          "type": "gift_cards"
        },
        "links": {
          "self": "https://example.com/api/v1/orders/1/relationships/gift_card/",
          "related": "https://example.com/api/v1/orders/1/gift_card/"
        }
      },
      "customer": {
        "data": {
          "id": "1",
          "type": "customers"
        },
        "links": {
          "self": "https://example.com/api/v1/orders/1/relationships/customer/",
          "related": "https://example.com/api/v1/orders/1/customer/"
        }
      },
      "payment_source": {
        "data": {
          "id": "1",
          "type": "payment_methods"
        },
        "links": {
          "self": "https://example.com/api/v1/orders/1/relationships/customer/",
          "related": "https://example.com/api/v1/orders/1/customer/"
        }
      }
    },
    "links": {
      "self": "https://example.com/api/v1/orders/1/"
    }
  },
  "included": [
    {
      "id": "5",
      "type": "order_items",
      "attributes": {
        "amount": 1.0
      },
      "links": {
        "self": "https://example.com/api/v1/order_items/1/"
      }
    },
    {
      "id": "10",
      "type": "order_items",
      "attributes": {
        "amount": 2.0
      },
      "links": {
        "self": "https://example.com/api/v1/order_items/2/"
      }
    },
    {
      "id": "1",
      "type": "customers",
      "attributes": {
        "first_name": "J"
      },
      "links": {
        "self": "https://example.com/api/v1/customers/1/"
      }
    },
    {
      "id": "1",
      "type": "payment_methods",
      "attributes": {
        "value": 10.0
      },
      "links": {
        "self": "https://example.com/api/v1/comments/1/"
      }
    }
  ]
}
