JSON은 XML과 달리 XSLT 같은 전용 변환 언어가 존재하지 않지만, JSON을 HTML이나 XML 같은 다른 형식으로 변환하는 데 사용할 수 있는 몇 가지 도구와 방법이 있습니다. XSLT와 유사한 방식으로 JSON을 변환하려면 아래와 같은 접근법을 고려할 수 있습니다.
1. Handlebars.js 또는 Mustache.js와 같은 템플릿 엔진 사용
JSON 데이터를 템플릿 기반으로 HTML에 쉽게 렌더링할 수 있는 템플릿 엔진들이 많이 있습니다. 대표적으로 Handlebars.js와 Mustache.js가 있으며, 이들은 JSON을 HTML, XML 등 다양한 형식으로 변환하는 데 사용할 수 있습니다.
Handlebars.js 예제
- HTML 파일에 Handlebars 템플릿을 작성합니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>JSON to HTML with Handlebars</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.7.7/handlebars.min.js"></script> </head> <body> <div id="content"></div> <!-- Handlebars 템플릿 --> <script id="entry-template" type="text/x-handlebars-template"> <ul> {{#each people}} <li>{{name}} - Age: {{age}}, Email: {{email}}</li> {{/each}} </ul> </script> <script> // JSON 데이터 const jsonData = { "people": [ { "name": "John Doe", "age": 30, "email": "john@example.com" }, { "name": "Jane Smith", "age": 25, "email": "jane@example.com" } ] }; // 템플릿을 가져와 컴파일하고 JSON 데이터를 적용 const source = document.getElementById("entry-template").innerHTML; const template = Handlebars.compile(source); const html = template(jsonData); // HTML에 렌더링 document.getElementById("content").innerHTML = html; </script> </body> </html> |
위 코드는 Handlebars.js 템플릿을 사용해 JSON 데이터를 HTML <ul>
리스트로 렌더링하는 예입니다.
2. JSONata – JSON 전용 쿼리 및 변환 언어
JSONata는 JSON 데이터를 가공하고 변환하는 데 특화된 쿼리 언어로, 특정 조건에 따라 JSON 구조를 변경하고 다른 형식으로 내보낼 수 있습니다. 이 언어는 XML의 XSLT와 비슷한 역할을 수행하지만, JSON에만 국한됩니다.
JSONata는 JavaScript 코드 안에서 JSON 데이터를 변환하는 데 사용할 수 있으며, 특히 중첩된 데이터 구조를 쉽게 변환할 수 있습니다. 예를 들어 JSON 데이터를 필터링하거나 특정 형식으로 재구성하는 데 유용합니다.
3. Apache Jolt – JSON 변환 라이브러리
Apache Jolt는 JSON을 다양한 형식으로 변환할 수 있는 Java 라이브러리입니다. XSLT처럼 JSON 문서를 특정 형식으로 변환하는 데 사용되며, JSON 데이터에 규칙을 정의하여 변환 작업을 수행할 수 있습니다.
Jolt는 주로 Java 기반 애플리케이션에서 많이 사용되지만, JSON 데이터를 복잡한 규칙에 따라 다른 구조로 변환하는 데 매우 강력합니다.
4. XSLT와 JSON 변환의 간접적 접근
JSON을 XML로 먼저 변환한 다음, XML에서 XSLT를 사용하여 다른 형식으로 변환하는 방법도 가능합니다. 예를 들어, JSON을 XML로 변환하는 라이브러리(xml-js
, json2xml
등)를 사용하고, 그 후 XSLT를 사용하여 XML을 HTML로 변환하는 방식입니다. 이 방식은 다소 복잡하지만 XSLT를 활용하여 JSON을 HTML로 변환하려는 경우에 사용할 수 있는 대안입니다.
요약
- Handlebars.js / Mustache.js: JSON 데이터를 템플릿에 넣어 HTML로 변환하는 간편한 방식.
- JSONata: JSON을 가공하고 변환하는 데 특화된 쿼리 언어.
- Apache Jolt: JSON을 특정 형식으로 변환할 수 있는 Java 라이브러리.
- JSON to XML + XSLT: JSON을 XML로 변환 후 XSLT로 변환하는 간접적 방식.
이러한 도구와 라이브러리를 사용하면 JSON을 다양한 형식으로 변환할 수 있습니다.
예시
폴더 구조 예시
1 2 3 4 5 |
project/ ├── index.html ├── jsonData.js |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>JSON to HTML with Handlebars</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.7.7/handlebars.min.js"></script> </head> <body> <div id="content"></div> <script src="jsonData.js"></script> <script> document.addEventListener("DOMContentLoaded", function () { // Handlebars 템플릿 컴파일 const source = document.getElementById("entry-template").innerHTML; const template = Handlebars.compile(source); // Handlebars 헬퍼 함수 추가 (eq 사용) Handlebars.registerHelper('eq', function (v1, v2) { return v1 === v2; }); // JSON 데이터를 템플릿에 바인딩하여 HTML 생성 const html = template(jsonData); // HTML에 삽입 document.getElementById("content").innerHTML = html; }); </script> <script id="entry-template" type="text/x-handlebars-template"> <h1>Flight Information</h1> <p><strong>Transaction ID:</strong> {{CatalogProductOfferingsResponse.transactionId}}</p> <h2>Product Offering</h2> {{#each CatalogProductOfferingsResponse.CatalogProductOfferings.CatalogProductOffering}} ____________________ <p><strong>sequence:</strong> {{sequence}}</p> <p><strong>id</strong> {{id}}</p> <p><strong>Departure:</strong> {{Departure}}</p> <p><strong>Arrival:</strong> {{Arrival}}</p> <p><strong>Price (KRW):</strong> {{ProductBrandOptions.[0].ProductBrandOffering.[0].Price.TotalPrice}}</p> {{/each}} ////////////////////////////////////////////////////////////// <h2>Flight Details</h2> {{#each CatalogProductOfferingsResponse.ReferenceList}} {{#if (eq [@type] "ReferenceListFlight")}} {{#each Flight}} ___________________ <p><strong>Flight Number:</strong> {{carrier}} {{number}}</p> <p><strong>Distance:</strong> {{distance}} km</p> <p><strong>Stops:</strong> {{stops}}</p> <p><strong>Duration:</strong> {{duration}}</p> <p><strong>Departure Date & Time:</strong> {{Departure.date}} at {{Departure.time}}</p> <p><strong>Arrival Date & Time:</strong> {{Arrival.date}} at {{Arrival.time}}</p> {{/each}} {{/if}} {{/each}} </script> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 |
const jsonData = {"CatalogProductOfferingsResponse": { "@type": "CatalogProductOfferingsResponse", "transactionId": "00607966-b1a0-4292-957d-2accf4846525", "CatalogProductOfferings": { "@type": "CatalogProductOfferings", "Identifier": {"value": "24e0481f-0069-44e6-b08c-ceb8b0f3f086"}, "CatalogProductOffering": [ { "@type": "CatalogProductOffering", "sequence": 1, "id": "AA_CPO0", "Identifier": { "authority": "AA", "value": "WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDfEFBX0NQTzA=" }, "Departure": "ICN", "Arrival": "DFW", "Brand": [ { "@type": "BrandID", "BrandRef": "AAb0" }], "ProductBrandOptions": [ { "@type": "ProductBrandOptions", "ProductBrandOffering": [ { "@type": "ProductBrandOffering", "Identifier": { "authority": "AA", "value": "WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDLTF8WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDfDIwMjQtMTEtMDZUMDg6NDg6MjR8QURUOlhDQzFGQ0JBNy1EM0FBLTQwRUMtQTlCQy0xLTF8QUF8QVBJSm91cm5leVR5cGU6Sm91cm5leQ==" }, "Price": { "@type": "PriceDetail", "CurrencyCode": { "decimalPlace": 0, "value": "KRW" }, "Base": 421300, "TotalTaxes": 134700, "TotalFees": 0, "TotalPrice": 556000, "PriceBreakdown": [ { "@type": "PriceBreakdownAir", "quantity": 1, "requestedPassengerType": "ADT", "Amount": { "@type": "Amount", "CurrencyCode": { "decimalPlace": 0, "value": "KRW" }, "Base": 421300, "Taxes": { "@type": "TaxesDetail", "TotalTaxes": 134700, "Tax": [ { "taxCode": "BP", "description": "South Korea International Psc Departure Tax And Global Disease Eradication Fund", "value": 12500 }, { "taxCode": "XA", "description": "United States APHIS Passenger Fee Passengers", "value": 2550 }, { "taxCode": "YC", "description": "United States Customs User Fee", "value": 4950 }, { "taxCode": "XY", "description": "United States Immigration User Fee", "value": 4850 }, { "taxCode": "YR", "description": "AA YR surcharge", "value": 72300 }, { "taxCode": "US", "description": "US International Arrival Tax", "value": 15300 }, { "taxCode": "AY", "description": "United States Passenger Civil Aviation Security Service Fee", "value": 3850 }, { "taxCode": "US", "description": "US International Departure Tax", "value": 15300 }, { "taxCode": "XF", "description": "US Passenger Facility Charge", "value": 3100 } ] }, "Fees": { "@type": "FeesDetail", "TotalFees": 0 }, "Total": 556000 } }] }, "Brand": { "@type": "BrandID", "BrandRef": "AAb0" }, "Product": [ { "@type": "ProductID", "productRef": "AAp0" }], "TermsAndConditions": { "@type": "TermsAndConditionsID", "termsAndConditionsRef": "AAt0" }, "CombinabilityCode": ["AA_CC01"], "BestCombinablePrice": { "@type": "BestCombinablePriceDetail", "CurrencyCode": { "decimalPlace": 0, "value": "KRW" }, "Base": 842600, "TotalTaxes": 269400, "TotalFees": 0, "TotalPrice": 1112000, "PriceBreakdown": [ { "@type": "PriceBreakdownAir", "quantity": 1, "requestedPassengerType": "ADT", "Amount": { "@type": "Amount", "CurrencyCode": { "decimalPlace": 0, "value": "KRW" }, "Base": 842600, "Taxes": { "@type": "TaxesDetail", "TotalTaxes": 269400, "Tax": [ { "taxCode": "BP", "description": "South Korea International Psc Departure Tax And Global Disease Eradication Fund", "value": 25000 }, { "taxCode": "XA", "description": "United States APHIS Passenger Fee Passengers", "value": 5100 }, { "taxCode": "YC", "description": "United States Customs User Fee", "value": 9900 }, { "taxCode": "XY", "description": "United States Immigration User Fee", "value": 9700 }, { "taxCode": "YR", "description": "AA YR surcharge", "value": 144600 }, { "taxCode": "US", "description": "US International Arrival Tax", "value": 30600 }, { "taxCode": "AY", "description": "United States Passenger Civil Aviation Security Service Fee", "value": 7700 }, { "taxCode": "US", "description": "US International Departure Tax", "value": 30600 }, { "taxCode": "XF", "description": "US Passenger Facility Charge", "value": 6200 } ] }, "Fees": { "@type": "FeesDetail", "TotalFees": 0 }, "Total": 1112000 } }] } }] }] }, { "@type": "CatalogProductOffering", "sequence": 2, "id": "AA_CPO1", "Identifier": { "authority": "AA", "value": "WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDfEFBX0NQTzE=" }, "Departure": "DFW", "Arrival": "ICN", "Brand": [ { "@type": "BrandID", "BrandRef": "AAb0" }], "ProductBrandOptions": [ { "@type": "ProductBrandOptions", "ProductBrandOffering": [ { "@type": "ProductBrandOffering", "Identifier": { "authority": "AA", "value": "WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDLTF8WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDfDIwMjQtMTEtMDZUMDg6NDg6MjR8QURUOlhDQzFGQ0JBNy1EM0FBLTQwRUMtQTlCQy0xLTF8QUF8QVBJSm91cm5leVR5cGU6Sm91cm5leQ==" }, "Price": { "@type": "PriceDetail", "CurrencyCode": { "decimalPlace": 0, "value": "KRW" }, "Base": 421300, "TotalTaxes": 134700, "TotalFees": 0, "TotalPrice": 556000, "PriceBreakdown": [ { "@type": "PriceBreakdownAir", "quantity": 1, "requestedPassengerType": "ADT", "Amount": { "@type": "Amount", "CurrencyCode": { "decimalPlace": 0, "value": "KRW" }, "Base": 421300, "Taxes": { "@type": "TaxesDetail", "TotalTaxes": 134700, "Tax": [ { "taxCode": "BP", "description": "South Korea International Psc Departure Tax And Global Disease Eradication Fund", "value": 12500 }, { "taxCode": "XA", "description": "United States APHIS Passenger Fee Passengers", "value": 2550 }, { "taxCode": "YC", "description": "United States Customs User Fee", "value": 4950 }, { "taxCode": "XY", "description": "United States Immigration User Fee", "value": 4850 }, { "taxCode": "YR", "description": "AA YR surcharge", "value": 72300 }, { "taxCode": "US", "description": "US International Arrival Tax", "value": 15300 }, { "taxCode": "AY", "description": "United States Passenger Civil Aviation Security Service Fee", "value": 3850 }, { "taxCode": "US", "description": "US International Departure Tax", "value": 15300 }, { "taxCode": "XF", "description": "US Passenger Facility Charge", "value": 3100 } ] }, "Fees": { "@type": "FeesDetail", "TotalFees": 0 }, "Total": 556000 } }] }, "Brand": { "@type": "BrandID", "BrandRef": "AAb0" }, "Product": [ { "@type": "ProductID", "productRef": "AAp1" }], "TermsAndConditions": { "@type": "TermsAndConditionsID", "termsAndConditionsRef": "AAt1" }, "CombinabilityCode": ["AA_CC01"], "BestCombinablePrice": { "@type": "BestCombinablePriceDetail", "CurrencyCode": { "decimalPlace": 0, "value": "KRW" }, "Base": 842600, "TotalTaxes": 269400, "TotalFees": 0, "TotalPrice": 1112000, "PriceBreakdown": [ { "@type": "PriceBreakdownAir", "quantity": 1, "requestedPassengerType": "ADT", "Amount": { "@type": "Amount", "CurrencyCode": { "decimalPlace": 0, "value": "KRW" }, "Base": 842600, "Taxes": { "@type": "TaxesDetail", "TotalTaxes": 269400, "Tax": [ { "taxCode": "BP", "description": "South Korea International Psc Departure Tax And Global Disease Eradication Fund", "value": 25000 }, { "taxCode": "XA", "description": "United States APHIS Passenger Fee Passengers", "value": 5100 }, { "taxCode": "YC", "description": "United States Customs User Fee", "value": 9900 }, { "taxCode": "XY", "description": "United States Immigration User Fee", "value": 9700 }, { "taxCode": "YR", "description": "AA YR surcharge", "value": 144600 }, { "taxCode": "US", "description": "US International Arrival Tax", "value": 30600 }, { "taxCode": "AY", "description": "United States Passenger Civil Aviation Security Service Fee", "value": 7700 }, { "taxCode": "US", "description": "US International Departure Tax", "value": 30600 }, { "taxCode": "XF", "description": "US Passenger Facility Charge", "value": 6200 } ] }, "Fees": { "@type": "FeesDetail", "TotalFees": 0 }, "Total": 1112000 } }] } }] }] } ] }, "Result": { "@type": "Result", "Warning": [ { "@type": "Warning", "Message": "BRAND DATA IS TEMPORARILY UNAVAILABLE" }] }, "ReferenceList": [ { "@type": "ReferenceListFlight", "Flight": [ { "@type": "FlightDetail", "distance": 6824, "stops": 0, "duration": "PT12H35M", "carrier": "AA", "number": "280", "equipment": "772", "id": "AAs1", "Departure": { "@type": "DepartureDetail", "terminal": "1", "location": "ICN", "date": "2024-12-23", "time": "18:50:00" }, "Arrival": { "@type": "ArrivalDetail", "terminal": "D", "location": "DFW", "date": "2024-12-23", "time": "16:25:00" } }, { "@type": "FlightDetail", "distance": 6824, "stops": 0, "duration": "PT15H35M", "carrier": "AA", "number": "281", "equipment": "772", "id": "AAs2", "Departure": { "@type": "DepartureDetail", "terminal": "0", "location": "DFW", "date": "2024-12-30", "time": "10:10:00" }, "Arrival": { "@type": "ArrivalDetail", "terminal": "1", "location": "ICN", "date": "2024-12-31", "time": "16:45:00" } } ] }, { "@type": "ReferenceListProduct", "Product": [ { "@type": "ProductAir", "totalDuration": "PT12H35M", "id": "AAp0", "FlightSegment": [ { "@type": "FlightSegment", "id": "1", "sequence": 1, "Flight": { "@type": "FlightID", "FlightRef": "AAs1" } }], "PassengerFlight": [ { "@type": "PassengerFlight", "passengerQuantity": 1, "passengerTypeCode": "ADT", "FlightProduct": [ { "@type": "FlightProduct", "segmentSequence": [1], "classOfService": "B", "cabin": "Economy", "fareBasisCode": "QLX08QBZ", "fareType": "PublicFare", "Brand": { "@type": "BrandID", "BrandRef": "AAb0" } }] }] }, { "@type": "ProductAir", "totalDuration": "PT15H35M", "id": "AAp1", "FlightSegment": [ { "@type": "FlightSegment", "id": "1", "sequence": 1, "Flight": { "@type": "FlightID", "FlightRef": "AAs2" } }], "PassengerFlight": [ { "@type": "PassengerFlight", "passengerQuantity": 1, "passengerTypeCode": "ADT", "FlightProduct": [ { "@type": "FlightProduct", "segmentSequence": [1], "classOfService": "B", "cabin": "Economy", "fareBasisCode": "QLX08QBZ", "fareType": "PublicFare", "Brand": { "@type": "BrandID", "BrandRef": "AAb0" } }] }] } ] }, { "@type": "ReferenceListTermsAndConditions", "TermsAndConditions": [ { "@type": "TermsAndConditionsAir", "id": "AAt0", "ExpiryDate": "2024-11-06T08:48:24Z", "BaggageAllowance": [ { "@type": "BaggageAllowanceDetail", "passengerTypeCodes": ["ADT"], "baggageType": "FirstCheckedBag", "ProductRef": ["AAp0"], "BaggageItem": [ { "@type": "BaggageItem", "quantity": 0, "Measurement": [ { "measurementType": "Weight", "unit": "Kilograms", "value": 23 }, { "measurementType": "Weight", "unit": "Pounds", "value": 50 }, { "measurementType": "OverallDimension", "unit": "Inches", "value": 62 }, { "measurementType": "OverallDimension", "unit": "Centimeters", "value": 158 } ] }], "SegmentSequenceList": [1], "Text": ["CHECKED ALLOWANCE"] }, { "@type": "BaggageAllowanceDetail", "passengerTypeCodes": ["ADT"], "baggageType": "CarryOn", "ProductRef": ["AAp0"], "BaggageItem": [ { "@type": "BaggageItem", "quantity": 2, "Measurement": [ { "measurementType": "OverallDimension", "unit": "Inches", "value": 45 }, { "measurementType": "OverallDimension", "unit": "Centimeters", "value": 115 } ] }], "SegmentSequenceList": [1], "Text": ["CARRY ON ALLOWANCE"] } ], "ValidatingAirline": [ { "@type": "ValidatingAirline", "ValidatingAirline": "AA" }], "PaymentTimeLimit": "2024-11-09T23:59:00Z", "Penalties": [ { "@type": "Penalties", "Change": [ { "@type": "ChangeNotPermitted", "ProductRefs": ["AAp0"], "NotPermittedInd": "true" }], "Cancel": [ { "@type": "CancelNotPermitted", "ProductRefs": ["AAp0"], "NotPermittedInd": "true" }], "PassengerTypeCodes": ["ADT"] }] }, { "@type": "TermsAndConditionsAir", "id": "AAt1", "BaggageAllowance": [ { "@type": "BaggageAllowanceDetail", "passengerTypeCodes": ["ADT"], "baggageType": "FirstCheckedBag", "ProductRef": ["AAp1"], "BaggageItem": [ { "@type": "BaggageItem", "quantity": 0, "Measurement": [ { "measurementType": "Weight", "unit": "Kilograms", "value": 23 }, { "measurementType": "Weight", "unit": "Pounds", "value": 50 }, { "measurementType": "OverallDimension", "unit": "Inches", "value": 62 }, { "measurementType": "OverallDimension", "unit": "Centimeters", "value": 158 } ] }], "SegmentSequenceList": [1], "Text": ["CHECKED ALLOWANCE"] }, { "@type": "BaggageAllowanceDetail", "passengerTypeCodes": ["ADT"], "baggageType": "CarryOn", "ProductRef": ["AAp1"], "BaggageItem": [ { "@type": "BaggageItem", "quantity": 2, "Measurement": [ { "measurementType": "OverallDimension", "unit": "Inches", "value": 45 }, { "measurementType": "OverallDimension", "unit": "Centimeters", "value": 115 } ] }], "SegmentSequenceList": [1], "Text": ["CARRY ON ALLOWANCE"] } ], "ValidatingAirline": [ { "@type": "ValidatingAirline", "ValidatingAirline": "AA" }], "Penalties": [ { "@type": "Penalties", "Change": [ { "@type": "ChangeNotPermitted", "ProductRefs": ["AAp1"], "NotPermittedInd": "true" }], "Cancel": [ { "@type": "CancelNotPermitted", "ProductRefs": ["AAp1"], "NotPermittedInd": "true" }], "PassengerTypeCodes": ["ADT"] }] } ] }, { "@type": "ReferenceListBrand", "Brand": [ { "@type": "Brand", "name": "Basic Economy", "id": "AAb0", "BrandAttribute": [ { "@type": "BrandAttribute", "classification": "Rebooking", "inclusion": "Not Offered", "groupCode": "BF" }, { "@type": "BrandAttribute", "classification": "SeatAssignment", "inclusion": "Chargeable", "groupCode": "SA" }, { "@type": "BrandAttribute", "classification": "CheckedBag", "inclusion": "Chargeable", "groupCode": "BG" }, { "@type": "BrandAttribute", "classification": "Refund", "inclusion": "Not Offered", "groupCode": "BF" } ] }] } ] }}; |
Html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
Flight Information Transaction ID: 00607966-b1a0-4292-957d-2accf4846525 Product Offering ____________________ sequence: 1 id AA_CPO0 Departure: ICN Arrival: DFW Price (KRW): 556000 ____________________ sequence: 2 id AA_CPO1 Departure: DFW Arrival: ICN Price (KRW): 556000 ////////////////////////////////////////////////////////////// Flight Details ___________________ Flight Number: AA 280 Distance: 6824 km Stops: 0 Duration: PT12H35M Departure Date & Time: 2024-12-23 at 18:50:00 Arrival Date & Time: 2024-12-23 at 16:25:00 ___________________ Flight Number: AA 281 Distance: 6824 km Stops: 0 Duration: PT15H35M Departure Date & Time: 2024-12-30 at 10:10:00 Arrival Date & Time: 2024-12-31 at 16:45:00 |