{
  "data": {
    "id": "1",
    "type": "orders",
    "attributes": {
      "price": 3.0,
      "tax": 0.0,
      "verificationCode": "abc123"
    },
    "relationships": {
      "order_items": {
        "data": [
          {
            "id": 1,
            "type": "order_items"
          },
          {
            "id": 2,
            "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/"
        }
      }
    },
    "links": {
      "self": "https://example.com/api/v1/orders/1/"
    }
  }
}
