{
  "data": {
    "id": "1",
    "type": "orders",
    "attributes": {
      "price": 4.0,
      "tax": 5.0,
      "total": 9.0
    },
    "relationships": {
      "order_items": {
        "data": [],
        "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": "5",
          "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/"
        }
      },
      "rating": {
        "data": null,
        "links": {
          "self": "https://example.com/api/v1/orders/1/relationships/rating/",
          "related": "https://example.com/api/v1/orders/1/rating/"
        }
      }
    },
    "links": {
      "self": "https://example.com/api/v1/orders/1/"
    }
  },
  "included": [
    {
      "id": "5",
      "type": "gift_cards",
      "attributes": {
        "value": 25
      },
      "links": {
        "self": "https://example.com/api/v1/gift_cards/5/"
      }
    }
  ]
}
