{"id":9590,"date":"2024-11-11T11:18:34","date_gmt":"2024-11-11T02:18:34","guid":{"rendered":"https:\/\/www.auctionpro.co.kr\/?p=9590"},"modified":"2024-11-11T13:37:23","modified_gmt":"2024-11-11T04:37:23","slug":"json%ec%9d%84-html%eb%a1%9c-%eb%b3%80%ed%99%98","status":"publish","type":"post","link":"https:\/\/www.auctionpro.co.kr\/?p=9590","title":{"rendered":"JSON\uc744 HTML\ub85c \ubcc0\ud658"},"content":{"rendered":"\n<p>JSON\uc740 XML\uacfc \ub2ec\ub9ac XSLT \uac19\uc740 \uc804\uc6a9 \ubcc0\ud658 \uc5b8\uc5b4\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc9c0\ub9cc, JSON\uc744 HTML\uc774\ub098 XML \uac19\uc740 \ub2e4\ub978 \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud558\ub294 \ub370 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \uba87 \uac00\uc9c0 \ub3c4\uad6c\uc640 \ubc29\ubc95\uc774 \uc788\uc2b5\ub2c8\ub2e4. XSLT\uc640 \uc720\uc0ac\ud55c \ubc29\uc2dd\uc73c\ub85c JSON\uc744 \ubcc0\ud658\ud558\ub824\uba74 \uc544\ub798\uc640 \uac19\uc740 \uc811\uadfc\ubc95\uc744 \uace0\ub824\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Handlebars.js \ub610\ub294 Mustache.js\uc640 \uac19\uc740 \ud15c\ud50c\ub9bf \uc5d4\uc9c4 \uc0ac\uc6a9<\/h3>\n\n\n\n<p>JSON \ub370\uc774\ud130\ub97c \ud15c\ud50c\ub9bf \uae30\ubc18\uc73c\ub85c HTML\uc5d0 \uc27d\uac8c \ub80c\ub354\ub9c1\ud560 \uc218 \uc788\ub294 \ud15c\ud50c\ub9bf \uc5d4\uc9c4\ub4e4\uc774 \ub9ce\uc774 \uc788\uc2b5\ub2c8\ub2e4. \ub300\ud45c\uc801\uc73c\ub85c <strong>Handlebars.js<\/strong>\uc640 <strong>Mustache.js<\/strong>\uac00 \uc788\uc73c\uba70, \uc774\ub4e4\uc740 JSON\uc744 HTML, XML \ub4f1 \ub2e4\uc591\ud55c \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud558\ub294 \ub370 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Handlebars.js \uc608\uc81c<\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>HTML \ud30c\uc77c<\/strong>\uc5d0 Handlebars \ud15c\ud50c\ub9bf\uc744 \uc791\uc131\ud569\ub2c8\ub2e4.<\/li>\n<\/ol>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:xhtml decode:true \">&lt;!DOCTYPE html&gt;\n&lt;html lang=\"en\"&gt;\n&lt;head&gt;\n    &lt;meta charset=\"UTF-8\"&gt;\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\n    &lt;title&gt;JSON to HTML with Handlebars&lt;\/title&gt;\n    &lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/handlebars.js\/4.7.7\/handlebars.min.js\"&gt;&lt;\/script&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    &lt;div id=\"content\"&gt;&lt;\/div&gt;\n\n    &lt;!-- Handlebars \ud15c\ud50c\ub9bf --&gt;\n    &lt;script id=\"entry-template\" type=\"text\/x-handlebars-template\"&gt;\n        &lt;ul&gt;\n            {{#each people}}\n                &lt;li&gt;{{name}} - Age: {{age}}, Email: {{email}}&lt;\/li&gt;\n            {{\/each}}\n        &lt;\/ul&gt;\n    &lt;\/script&gt;\n\n    &lt;script&gt;\n        \/\/ JSON \ub370\uc774\ud130\n        const jsonData = {\n            \"people\": [\n                { \"name\": \"John Doe\", \"age\": 30, \"email\": \"john@example.com\" },\n                { \"name\": \"Jane Smith\", \"age\": 25, \"email\": \"jane@example.com\" }\n            ]\n        };\n\n        \/\/ \ud15c\ud50c\ub9bf\uc744 \uac00\uc838\uc640 \ucef4\ud30c\uc77c\ud558\uace0 JSON \ub370\uc774\ud130\ub97c \uc801\uc6a9\n        const source = document.getElementById(\"entry-template\").innerHTML;\n        const template = Handlebars.compile(source);\n        const html = template(jsonData);\n\n        \/\/ HTML\uc5d0 \ub80c\ub354\ub9c1\n        document.getElementById(\"content\").innerHTML = html;\n    &lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/pre><\/div>\n\n\n\n<p>\uc704 \ucf54\ub4dc\ub294 Handlebars.js \ud15c\ud50c\ub9bf\uc744 \uc0ac\uc6a9\ud574 JSON \ub370\uc774\ud130\ub97c HTML <code>&lt;ul&gt;<\/code> \ub9ac\uc2a4\ud2b8\ub85c \ub80c\ub354\ub9c1\ud558\ub294 \uc608\uc785\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. JSONata &#8211; JSON \uc804\uc6a9 \ucffc\ub9ac \ubc0f \ubcc0\ud658 \uc5b8\uc5b4<\/h3>\n\n\n\n<p><strong>JSONata<\/strong>\ub294 JSON \ub370\uc774\ud130\ub97c \uac00\uacf5\ud558\uace0 \ubcc0\ud658\ud558\ub294 \ub370 \ud2b9\ud654\ub41c \ucffc\ub9ac \uc5b8\uc5b4\ub85c, \ud2b9\uc815 \uc870\uac74\uc5d0 \ub530\ub77c JSON \uad6c\uc870\ub97c \ubcc0\uacbd\ud558\uace0 \ub2e4\ub978 \ud615\uc2dd\uc73c\ub85c \ub0b4\ubcf4\ub0bc \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uc5b8\uc5b4\ub294 XML\uc758 XSLT\uc640 \ube44\uc2b7\ud55c \uc5ed\ud560\uc744 \uc218\ud589\ud558\uc9c0\ub9cc, JSON\uc5d0\ub9cc \uad6d\ud55c\ub429\ub2c8\ub2e4.<\/p>\n\n\n\n<p>JSONata\ub294 JavaScript \ucf54\ub4dc \uc548\uc5d0\uc11c JSON \ub370\uc774\ud130\ub97c \ubcc0\ud658\ud558\ub294 \ub370 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc73c\uba70, \ud2b9\ud788 \uc911\ucca9\ub41c \ub370\uc774\ud130 \uad6c\uc870\ub97c \uc27d\uac8c \ubcc0\ud658\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4 JSON \ub370\uc774\ud130\ub97c \ud544\ud130\ub9c1\ud558\uac70\ub098 \ud2b9\uc815 \ud615\uc2dd\uc73c\ub85c \uc7ac\uad6c\uc131\ud558\ub294 \ub370 \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Apache Jolt &#8211; JSON \ubcc0\ud658 \ub77c\uc774\ube0c\ub7ec\ub9ac<\/h3>\n\n\n\n<p><strong>Apache Jolt<\/strong>\ub294 JSON\uc744 \ub2e4\uc591\ud55c \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud560 \uc218 \uc788\ub294 Java \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. XSLT\ucc98\ub7fc JSON \ubb38\uc11c\ub97c \ud2b9\uc815 \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud558\ub294 \ub370 \uc0ac\uc6a9\ub418\uba70, JSON \ub370\uc774\ud130\uc5d0 \uaddc\uce59\uc744 \uc815\uc758\ud558\uc5ec \ubcc0\ud658 \uc791\uc5c5\uc744 \uc218\ud589\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<p>Jolt\ub294 \uc8fc\ub85c Java \uae30\ubc18 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\uc11c \ub9ce\uc774 \uc0ac\uc6a9\ub418\uc9c0\ub9cc, JSON \ub370\uc774\ud130\ub97c \ubcf5\uc7a1\ud55c \uaddc\uce59\uc5d0 \ub530\ub77c \ub2e4\ub978 \uad6c\uc870\ub85c \ubcc0\ud658\ud558\ub294 \ub370 \ub9e4\uc6b0 \uac15\ub825\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. XSLT\uc640 JSON \ubcc0\ud658\uc758 \uac04\uc811\uc801 \uc811\uadfc<\/h3>\n\n\n\n<p>JSON\uc744 XML\ub85c \uba3c\uc800 \ubcc0\ud658\ud55c \ub2e4\uc74c, XML\uc5d0\uc11c XSLT\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub2e4\ub978 \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud558\ub294 \ubc29\ubc95\ub3c4 \uac00\ub2a5\ud569\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, JSON\uc744 XML\ub85c \ubcc0\ud658\ud558\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac(<code>xml-js<\/code>, <code>json2xml<\/code> \ub4f1)\ub97c \uc0ac\uc6a9\ud558\uace0, \uadf8 \ud6c4 XSLT\ub97c \uc0ac\uc6a9\ud558\uc5ec XML\uc744 HTML\ub85c \ubcc0\ud658\ud558\ub294 \ubc29\uc2dd\uc785\ub2c8\ub2e4. \uc774 \ubc29\uc2dd\uc740 \ub2e4\uc18c \ubcf5\uc7a1\ud558\uc9c0\ub9cc XSLT\ub97c \ud65c\uc6a9\ud558\uc5ec JSON\uc744 HTML\ub85c \ubcc0\ud658\ud558\ub824\ub294 \uacbd\uc6b0\uc5d0 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \ub300\uc548\uc785\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\uc694\uc57d<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Handlebars.js \/ Mustache.js<\/strong>: JSON \ub370\uc774\ud130\ub97c \ud15c\ud50c\ub9bf\uc5d0 \ub123\uc5b4 HTML\ub85c \ubcc0\ud658\ud558\ub294 \uac04\ud3b8\ud55c \ubc29\uc2dd.<\/li>\n\n\n\n<li><strong>JSONata<\/strong>: JSON\uc744 \uac00\uacf5\ud558\uace0 \ubcc0\ud658\ud558\ub294 \ub370 \ud2b9\ud654\ub41c \ucffc\ub9ac \uc5b8\uc5b4.<\/li>\n\n\n\n<li><strong>Apache Jolt<\/strong>: JSON\uc744 \ud2b9\uc815 \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud560 \uc218 \uc788\ub294 Java \ub77c\uc774\ube0c\ub7ec\ub9ac.<\/li>\n\n\n\n<li><strong>JSON to XML + XSLT<\/strong>: JSON\uc744 XML\ub85c \ubcc0\ud658 \ud6c4 XSLT\ub85c \ubcc0\ud658\ud558\ub294 \uac04\uc811\uc801 \ubc29\uc2dd.<\/li>\n<\/ul>\n\n\n\n<p>\uc774\ub7ec\ud55c \ub3c4\uad6c\uc640 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc0ac\uc6a9\ud558\uba74 JSON\uc744 \ub2e4\uc591\ud55c \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\uc608\uc2dc<\/h2>\n\n\n\n<p>\ud3f4\ub354 \uad6c\uc870 \uc608\uc2dc<\/p>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">project\/\n\u251c\u2500\u2500 index.html\n\u251c\u2500\u2500 jsonData.js<\/pre><\/div>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:xhtml decode:true \">&lt;!DOCTYPE html&gt;\n&lt;html lang=\"en\"&gt;\n&lt;head&gt;\n    &lt;meta charset=\"UTF-8\"&gt;\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\n    &lt;title&gt;JSON to HTML with Handlebars&lt;\/title&gt;\n    &lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/handlebars.js\/4.7.7\/handlebars.min.js\"&gt;&lt;\/script&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n &lt;div id=\"content\"&gt;&lt;\/div&gt;\n &lt;script src=\"jsonData.js\"&gt;&lt;\/script&gt;\n  \n &lt;script&gt;\n     document.addEventListener(\"DOMContentLoaded\", function () {\n\t\n      \/\/ Handlebars \ud15c\ud50c\ub9bf \ucef4\ud30c\uc77c\n      const source = document.getElementById(\"entry-template\").innerHTML;\n      const template = Handlebars.compile(source);\n\n\t \/\/ Handlebars \ud5ec\ud37c \ud568\uc218 \ucd94\uac00 (eq \uc0ac\uc6a9)\n      Handlebars.registerHelper('eq', function (v1, v2) {\n        return v1 === v2;\n      });\n\n      \/\/ JSON \ub370\uc774\ud130\ub97c \ud15c\ud50c\ub9bf\uc5d0 \ubc14\uc778\ub529\ud558\uc5ec HTML \uc0dd\uc131\n      const html = template(jsonData);\n\n      \/\/ HTML\uc5d0 \uc0bd\uc785\n      document.getElementById(\"content\").innerHTML = html;\n    });\n  &lt;\/script&gt;\n  \n  &lt;script id=\"entry-template\" type=\"text\/x-handlebars-template\"&gt;\n    &lt;h1&gt;Flight Information&lt;\/h1&gt;\n    &lt;p&gt;&lt;strong&gt;Transaction ID:&lt;\/strong&gt; {{CatalogProductOfferingsResponse.transactionId}}&lt;\/p&gt;\n\t\t\n\t\t&lt;h2&gt;Product Offering&lt;\/h2&gt;\n    {{#each CatalogProductOfferingsResponse.CatalogProductOfferings.CatalogProductOffering}}\n      ____________________\n\t   &lt;p&gt;&lt;strong&gt;sequence:&lt;\/strong&gt; {{sequence}}&lt;\/p&gt;\n\t    &lt;p&gt;&lt;strong&gt;id&lt;\/strong&gt; {{id}}&lt;\/p&gt;\n\t  \n      &lt;p&gt;&lt;strong&gt;Departure:&lt;\/strong&gt; {{Departure}}&lt;\/p&gt;\n      &lt;p&gt;&lt;strong&gt;Arrival:&lt;\/strong&gt; {{Arrival}}&lt;\/p&gt;\n      &lt;p&gt;&lt;strong&gt;Price (KRW):&lt;\/strong&gt; {{ProductBrandOptions.[0].ProductBrandOffering.[0].Price.TotalPrice}}&lt;\/p&gt;\n    {{\/each}}\n    \n\t\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n\t\n\t &lt;h2&gt;Flight Details&lt;\/h2&gt;\n    {{#each CatalogProductOfferingsResponse.ReferenceList}}\n\t  \n      {{#if (eq [@type] \"ReferenceListFlight\")}}\n        {{#each Flight}}\n         ___________________\n          &lt;p&gt;&lt;strong&gt;Flight Number:&lt;\/strong&gt; {{carrier}} {{number}}&lt;\/p&gt;\n          &lt;p&gt;&lt;strong&gt;Distance:&lt;\/strong&gt; {{distance}} km&lt;\/p&gt;\n          &lt;p&gt;&lt;strong&gt;Stops:&lt;\/strong&gt; {{stops}}&lt;\/p&gt;\n          &lt;p&gt;&lt;strong&gt;Duration:&lt;\/strong&gt; {{duration}}&lt;\/p&gt;\n          &lt;p&gt;&lt;strong&gt;Departure Date &amp; Time:&lt;\/strong&gt; {{Departure.date}} at {{Departure.time}}&lt;\/p&gt;\n          &lt;p&gt;&lt;strong&gt;Arrival Date &amp; Time:&lt;\/strong&gt; {{Arrival.date}} at {{Arrival.time}}&lt;\/p&gt;\n        {{\/each}}\n      {{\/if}}\n\t  \n    {{\/each}}\n  &lt;\/script&gt;\n \n  \n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:java decode:true \"> const jsonData = {\"CatalogProductOfferingsResponse\": {\n   \"@type\": \"CatalogProductOfferingsResponse\",\n   \"transactionId\": \"00607966-b1a0-4292-957d-2accf4846525\",\n   \"CatalogProductOfferings\":    {\n      \"@type\": \"CatalogProductOfferings\",\n      \"Identifier\": {\"value\": \"24e0481f-0069-44e6-b08c-ceb8b0f3f086\"},\n      \"CatalogProductOffering\":       [\n                  {\n            \"@type\": \"CatalogProductOffering\",\n            \"sequence\": 1,\n            \"id\": \"AA_CPO0\",\n            \"Identifier\":             {\n               \"authority\": \"AA\",\n               \"value\": \"WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDfEFBX0NQTzA=\"\n            },\n            \"Departure\": \"ICN\",\n            \"Arrival\": \"DFW\",\n            \"Brand\": [            {\n               \"@type\": \"BrandID\",\n               \"BrandRef\": \"AAb0\"\n            }],\n            \"ProductBrandOptions\": [            {\n               \"@type\": \"ProductBrandOptions\",\n               \"ProductBrandOffering\": [               {\n                  \"@type\": \"ProductBrandOffering\",\n                  \"Identifier\":                   {\n                     \"authority\": \"AA\",\n                     \"value\": \"WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDLTF8WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDfDIwMjQtMTEtMDZUMDg6NDg6MjR8QURUOlhDQzFGQ0JBNy1EM0FBLTQwRUMtQTlCQy0xLTF8QUF8QVBJSm91cm5leVR5cGU6Sm91cm5leQ==\"\n                  },\n                  \"Price\":                   {\n                     \"@type\": \"PriceDetail\",\n                     \"CurrencyCode\":                      {\n                        \"decimalPlace\": 0,\n                        \"value\": \"KRW\"\n                     },\n                     \"Base\": 421300,\n                     \"TotalTaxes\": 134700,\n                     \"TotalFees\": 0,\n                     \"TotalPrice\": 556000,\n                     \"PriceBreakdown\": [                     {\n                        \"@type\": \"PriceBreakdownAir\",\n                        \"quantity\": 1,\n                        \"requestedPassengerType\": \"ADT\",\n                        \"Amount\":                         {\n                           \"@type\": \"Amount\",\n                           \"CurrencyCode\":                            {\n                              \"decimalPlace\": 0,\n                              \"value\": \"KRW\"\n                           },\n                           \"Base\": 421300,\n                           \"Taxes\":                            {\n                              \"@type\": \"TaxesDetail\",\n                              \"TotalTaxes\": 134700,\n                              \"Tax\":                               [\n                                                                  {\n                                    \"taxCode\": \"BP\",\n                                    \"description\": \"South Korea International Psc Departure Tax And Global Disease Eradication Fund\",\n                                    \"value\": 12500\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XA\",\n                                    \"description\": \"United States APHIS Passenger Fee Passengers\",\n                                    \"value\": 2550\n                                 },\n                                                                  {\n                                    \"taxCode\": \"YC\",\n                                    \"description\": \"United States Customs User Fee\",\n                                    \"value\": 4950\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XY\",\n                                    \"description\": \"United States Immigration User Fee\",\n                                    \"value\": 4850\n                                 },\n                                                                  {\n                                    \"taxCode\": \"YR\",\n                                    \"description\": \"AA YR surcharge\",\n                                    \"value\": 72300\n                                 },\n                                                                  {\n                                    \"taxCode\": \"US\",\n                                    \"description\": \"US International Arrival Tax\",\n                                    \"value\": 15300\n                                 },\n                                                                  {\n                                    \"taxCode\": \"AY\",\n                                    \"description\": \"United States Passenger Civil Aviation Security Service Fee\",\n                                    \"value\": 3850\n                                 },\n                                                                  {\n                                    \"taxCode\": \"US\",\n                                    \"description\": \"US International Departure Tax\",\n                                    \"value\": 15300\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XF\",\n                                    \"description\": \"US Passenger Facility Charge\",\n                                    \"value\": 3100\n                                 }\n                              ]\n                           },\n                           \"Fees\":                            {\n                              \"@type\": \"FeesDetail\",\n                              \"TotalFees\": 0\n                           },\n                           \"Total\": 556000\n                        }\n                     }]\n                  },\n                  \"Brand\":                   {\n                     \"@type\": \"BrandID\",\n                     \"BrandRef\": \"AAb0\"\n                  },\n                  \"Product\": [                  {\n                     \"@type\": \"ProductID\",\n                     \"productRef\": \"AAp0\"\n                  }],\n                  \"TermsAndConditions\":                   {\n                     \"@type\": \"TermsAndConditionsID\",\n                     \"termsAndConditionsRef\": \"AAt0\"\n                  },\n                  \"CombinabilityCode\": [\"AA_CC01\"],\n                  \"BestCombinablePrice\":                   {\n                     \"@type\": \"BestCombinablePriceDetail\",\n                     \"CurrencyCode\":                      {\n                        \"decimalPlace\": 0,\n                        \"value\": \"KRW\"\n                     },\n                     \"Base\": 842600,\n                     \"TotalTaxes\": 269400,\n                     \"TotalFees\": 0,\n                     \"TotalPrice\": 1112000,\n                     \"PriceBreakdown\": [                     {\n                        \"@type\": \"PriceBreakdownAir\",\n                        \"quantity\": 1,\n                        \"requestedPassengerType\": \"ADT\",\n                        \"Amount\":                         {\n                           \"@type\": \"Amount\",\n                           \"CurrencyCode\":                            {\n                              \"decimalPlace\": 0,\n                              \"value\": \"KRW\"\n                           },\n                           \"Base\": 842600,\n                           \"Taxes\":                            {\n                              \"@type\": \"TaxesDetail\",\n                              \"TotalTaxes\": 269400,\n                              \"Tax\":                               [\n                                                                  {\n                                    \"taxCode\": \"BP\",\n                                    \"description\": \"South Korea International Psc Departure Tax And Global Disease Eradication Fund\",\n                                    \"value\": 25000\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XA\",\n                                    \"description\": \"United States APHIS Passenger Fee Passengers\",\n                                    \"value\": 5100\n                                 },\n                                                                  {\n                                    \"taxCode\": \"YC\",\n                                    \"description\": \"United States Customs User Fee\",\n                                    \"value\": 9900\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XY\",\n                                    \"description\": \"United States Immigration User Fee\",\n                                    \"value\": 9700\n                                 },\n                                                                  {\n                                    \"taxCode\": \"YR\",\n                                    \"description\": \"AA YR surcharge\",\n                                    \"value\": 144600\n                                 },\n                                                                  {\n                                    \"taxCode\": \"US\",\n                                    \"description\": \"US International Arrival Tax\",\n                                    \"value\": 30600\n                                 },\n                                                                  {\n                                    \"taxCode\": \"AY\",\n                                    \"description\": \"United States Passenger Civil Aviation Security Service Fee\",\n                                    \"value\": 7700\n                                 },\n                                                                  {\n                                    \"taxCode\": \"US\",\n                                    \"description\": \"US International Departure Tax\",\n                                    \"value\": 30600\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XF\",\n                                    \"description\": \"US Passenger Facility Charge\",\n                                    \"value\": 6200\n                                 }\n                              ]\n                           },\n                           \"Fees\":                            {\n                              \"@type\": \"FeesDetail\",\n                              \"TotalFees\": 0\n                           },\n                           \"Total\": 1112000\n                        }\n                     }]\n                  }\n               }]\n            }]\n         },\n                  {\n            \"@type\": \"CatalogProductOffering\",\n            \"sequence\": 2,\n            \"id\": \"AA_CPO1\",\n            \"Identifier\":             {\n               \"authority\": \"AA\",\n               \"value\": \"WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDfEFBX0NQTzE=\"\n            },\n            \"Departure\": \"DFW\",\n            \"Arrival\": \"ICN\",\n            \"Brand\": [            {\n               \"@type\": \"BrandID\",\n               \"BrandRef\": \"AAb0\"\n            }],\n            \"ProductBrandOptions\": [            {\n               \"@type\": \"ProductBrandOptions\",\n               \"ProductBrandOffering\": [               {\n                  \"@type\": \"ProductBrandOffering\",\n                  \"Identifier\":                   {\n                     \"authority\": \"AA\",\n                     \"value\": \"WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDLTF8WENDMUZDQkE3LUQzQUEtNDBFQy1BOUJDfDIwMjQtMTEtMDZUMDg6NDg6MjR8QURUOlhDQzFGQ0JBNy1EM0FBLTQwRUMtQTlCQy0xLTF8QUF8QVBJSm91cm5leVR5cGU6Sm91cm5leQ==\"\n                  },\n                  \"Price\":                   {\n                     \"@type\": \"PriceDetail\",\n                     \"CurrencyCode\":                      {\n                        \"decimalPlace\": 0,\n                        \"value\": \"KRW\"\n                     },\n                     \"Base\": 421300,\n                     \"TotalTaxes\": 134700,\n                     \"TotalFees\": 0,\n                     \"TotalPrice\": 556000,\n                     \"PriceBreakdown\": [                     {\n                        \"@type\": \"PriceBreakdownAir\",\n                        \"quantity\": 1,\n                        \"requestedPassengerType\": \"ADT\",\n                        \"Amount\":                         {\n                           \"@type\": \"Amount\",\n                           \"CurrencyCode\":                            {\n                              \"decimalPlace\": 0,\n                              \"value\": \"KRW\"\n                           },\n                           \"Base\": 421300,\n                           \"Taxes\":                            {\n                              \"@type\": \"TaxesDetail\",\n                              \"TotalTaxes\": 134700,\n                              \"Tax\":                               [\n                                                                  {\n                                    \"taxCode\": \"BP\",\n                                    \"description\": \"South Korea International Psc Departure Tax And Global Disease Eradication Fund\",\n                                    \"value\": 12500\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XA\",\n                                    \"description\": \"United States APHIS Passenger Fee Passengers\",\n                                    \"value\": 2550\n                                 },\n                                                                  {\n                                    \"taxCode\": \"YC\",\n                                    \"description\": \"United States Customs User Fee\",\n                                    \"value\": 4950\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XY\",\n                                    \"description\": \"United States Immigration User Fee\",\n                                    \"value\": 4850\n                                 },\n                                                                  {\n                                    \"taxCode\": \"YR\",\n                                    \"description\": \"AA YR surcharge\",\n                                    \"value\": 72300\n                                 },\n                                                                  {\n                                    \"taxCode\": \"US\",\n                                    \"description\": \"US International Arrival Tax\",\n                                    \"value\": 15300\n                                 },\n                                                                  {\n                                    \"taxCode\": \"AY\",\n                                    \"description\": \"United States Passenger Civil Aviation Security Service Fee\",\n                                    \"value\": 3850\n                                 },\n                                                                  {\n                                    \"taxCode\": \"US\",\n                                    \"description\": \"US International Departure Tax\",\n                                    \"value\": 15300\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XF\",\n                                    \"description\": \"US Passenger Facility Charge\",\n                                    \"value\": 3100\n                                 }\n                              ]\n                           },\n                           \"Fees\":                            {\n                              \"@type\": \"FeesDetail\",\n                              \"TotalFees\": 0\n                           },\n                           \"Total\": 556000\n                        }\n                     }]\n                  },\n                  \"Brand\":                   {\n                     \"@type\": \"BrandID\",\n                     \"BrandRef\": \"AAb0\"\n                  },\n                  \"Product\": [                  {\n                     \"@type\": \"ProductID\",\n                     \"productRef\": \"AAp1\"\n                  }],\n                  \"TermsAndConditions\":                   {\n                     \"@type\": \"TermsAndConditionsID\",\n                     \"termsAndConditionsRef\": \"AAt1\"\n                  },\n                  \"CombinabilityCode\": [\"AA_CC01\"],\n                  \"BestCombinablePrice\":                   {\n                     \"@type\": \"BestCombinablePriceDetail\",\n                     \"CurrencyCode\":                      {\n                        \"decimalPlace\": 0,\n                        \"value\": \"KRW\"\n                     },\n                     \"Base\": 842600,\n                     \"TotalTaxes\": 269400,\n                     \"TotalFees\": 0,\n                     \"TotalPrice\": 1112000,\n                     \"PriceBreakdown\": [                     {\n                        \"@type\": \"PriceBreakdownAir\",\n                        \"quantity\": 1,\n                        \"requestedPassengerType\": \"ADT\",\n                        \"Amount\":                         {\n                           \"@type\": \"Amount\",\n                           \"CurrencyCode\":                            {\n                              \"decimalPlace\": 0,\n                              \"value\": \"KRW\"\n                           },\n                           \"Base\": 842600,\n                           \"Taxes\":                            {\n                              \"@type\": \"TaxesDetail\",\n                              \"TotalTaxes\": 269400,\n                              \"Tax\":                               [\n                                                                  {\n                                    \"taxCode\": \"BP\",\n                                    \"description\": \"South Korea International Psc Departure Tax And Global Disease Eradication Fund\",\n                                    \"value\": 25000\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XA\",\n                                    \"description\": \"United States APHIS Passenger Fee Passengers\",\n                                    \"value\": 5100\n                                 },\n                                                                  {\n                                    \"taxCode\": \"YC\",\n                                    \"description\": \"United States Customs User Fee\",\n                                    \"value\": 9900\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XY\",\n                                    \"description\": \"United States Immigration User Fee\",\n                                    \"value\": 9700\n                                 },\n                                                                  {\n                                    \"taxCode\": \"YR\",\n                                    \"description\": \"AA YR surcharge\",\n                                    \"value\": 144600\n                                 },\n                                                                  {\n                                    \"taxCode\": \"US\",\n                                    \"description\": \"US International Arrival Tax\",\n                                    \"value\": 30600\n                                 },\n                                                                  {\n                                    \"taxCode\": \"AY\",\n                                    \"description\": \"United States Passenger Civil Aviation Security Service Fee\",\n                                    \"value\": 7700\n                                 },\n                                                                  {\n                                    \"taxCode\": \"US\",\n                                    \"description\": \"US International Departure Tax\",\n                                    \"value\": 30600\n                                 },\n                                                                  {\n                                    \"taxCode\": \"XF\",\n                                    \"description\": \"US Passenger Facility Charge\",\n                                    \"value\": 6200\n                                 }\n                              ]\n                           },\n                           \"Fees\":                            {\n                              \"@type\": \"FeesDetail\",\n                              \"TotalFees\": 0\n                           },\n                           \"Total\": 1112000\n                        }\n                     }]\n                  }\n               }]\n            }]\n         }\n      ]\n   },\n   \"Result\":    {\n      \"@type\": \"Result\",\n      \"Warning\": [      {\n         \"@type\": \"Warning\",\n         \"Message\": \"BRAND DATA IS TEMPORARILY UNAVAILABLE\"\n      }]\n   },\n   \"ReferenceList\":    [\n            {\n         \"@type\": \"ReferenceListFlight\",\n         \"Flight\":          [\n                        {\n               \"@type\": \"FlightDetail\",\n               \"distance\": 6824,\n               \"stops\": 0,\n               \"duration\": \"PT12H35M\",\n               \"carrier\": \"AA\",\n               \"number\": \"280\",\n               \"equipment\": \"772\",\n               \"id\": \"AAs1\",\n               \"Departure\":                {\n                  \"@type\": \"DepartureDetail\",\n                  \"terminal\": \"1\",\n                  \"location\": \"ICN\",\n                  \"date\": \"2024-12-23\",\n                  \"time\": \"18:50:00\"\n               },\n               \"Arrival\":                {\n                  \"@type\": \"ArrivalDetail\",\n                  \"terminal\": \"D\",\n                  \"location\": \"DFW\",\n                  \"date\": \"2024-12-23\",\n                  \"time\": \"16:25:00\"\n               }\n            },\n                        {\n               \"@type\": \"FlightDetail\",\n               \"distance\": 6824,\n               \"stops\": 0,\n               \"duration\": \"PT15H35M\",\n               \"carrier\": \"AA\",\n               \"number\": \"281\",\n               \"equipment\": \"772\",\n               \"id\": \"AAs2\",\n               \"Departure\":                {\n                  \"@type\": \"DepartureDetail\",\n                  \"terminal\": \"0\",\n                  \"location\": \"DFW\",\n                  \"date\": \"2024-12-30\",\n                  \"time\": \"10:10:00\"\n               },\n               \"Arrival\":                {\n                  \"@type\": \"ArrivalDetail\",\n                  \"terminal\": \"1\",\n                  \"location\": \"ICN\",\n                  \"date\": \"2024-12-31\",\n                  \"time\": \"16:45:00\"\n               }\n            }\n         ]\n      },\n            {\n         \"@type\": \"ReferenceListProduct\",\n         \"Product\":          [\n                        {\n               \"@type\": \"ProductAir\",\n               \"totalDuration\": \"PT12H35M\",\n               \"id\": \"AAp0\",\n               \"FlightSegment\": [               {\n                  \"@type\": \"FlightSegment\",\n                  \"id\": \"1\",\n                  \"sequence\": 1,\n                  \"Flight\":                   {\n                     \"@type\": \"FlightID\",\n                     \"FlightRef\": \"AAs1\"\n                  }\n               }],\n               \"PassengerFlight\": [               {\n                  \"@type\": \"PassengerFlight\",\n                  \"passengerQuantity\": 1,\n                  \"passengerTypeCode\": \"ADT\",\n                  \"FlightProduct\": [                  {\n                     \"@type\": \"FlightProduct\",\n                     \"segmentSequence\": [1],\n                     \"classOfService\": \"B\",\n                     \"cabin\": \"Economy\",\n                     \"fareBasisCode\": \"QLX08QBZ\",\n                     \"fareType\": \"PublicFare\",\n                     \"Brand\":                      {\n                        \"@type\": \"BrandID\",\n                        \"BrandRef\": \"AAb0\"\n                     }\n                  }]\n               }]\n            },\n                        {\n               \"@type\": \"ProductAir\",\n               \"totalDuration\": \"PT15H35M\",\n               \"id\": \"AAp1\",\n               \"FlightSegment\": [               {\n                  \"@type\": \"FlightSegment\",\n                  \"id\": \"1\",\n                  \"sequence\": 1,\n                  \"Flight\":                   {\n                     \"@type\": \"FlightID\",\n                     \"FlightRef\": \"AAs2\"\n                  }\n               }],\n               \"PassengerFlight\": [               {\n                  \"@type\": \"PassengerFlight\",\n                  \"passengerQuantity\": 1,\n                  \"passengerTypeCode\": \"ADT\",\n                  \"FlightProduct\": [                  {\n                     \"@type\": \"FlightProduct\",\n                     \"segmentSequence\": [1],\n                     \"classOfService\": \"B\",\n                     \"cabin\": \"Economy\",\n                     \"fareBasisCode\": \"QLX08QBZ\",\n                     \"fareType\": \"PublicFare\",\n                     \"Brand\":                      {\n                        \"@type\": \"BrandID\",\n                        \"BrandRef\": \"AAb0\"\n                     }\n                  }]\n               }]\n            }\n         ]\n      },\n            {\n         \"@type\": \"ReferenceListTermsAndConditions\",\n         \"TermsAndConditions\":          [\n                        {\n               \"@type\": \"TermsAndConditionsAir\",\n               \"id\": \"AAt0\",\n               \"ExpiryDate\": \"2024-11-06T08:48:24Z\",\n               \"BaggageAllowance\":                [\n                                    {\n                     \"@type\": \"BaggageAllowanceDetail\",\n                     \"passengerTypeCodes\": [\"ADT\"],\n                     \"baggageType\": \"FirstCheckedBag\",\n                     \"ProductRef\": [\"AAp0\"],\n                     \"BaggageItem\": [                     {\n                        \"@type\": \"BaggageItem\",\n                        \"quantity\": 0,\n                        \"Measurement\":                         [\n                                                      {\n                              \"measurementType\": \"Weight\",\n                              \"unit\": \"Kilograms\",\n                              \"value\": 23\n                           },\n                                                      {\n                              \"measurementType\": \"Weight\",\n                              \"unit\": \"Pounds\",\n                              \"value\": 50\n                           },\n                                                      {\n                              \"measurementType\": \"OverallDimension\",\n                              \"unit\": \"Inches\",\n                              \"value\": 62\n                           },\n                                                      {\n                              \"measurementType\": \"OverallDimension\",\n                              \"unit\": \"Centimeters\",\n                              \"value\": 158\n                           }\n                        ]\n                     }],\n                     \"SegmentSequenceList\": [1],\n                     \"Text\": [\"CHECKED ALLOWANCE\"]\n                  },\n                                    {\n                     \"@type\": \"BaggageAllowanceDetail\",\n                     \"passengerTypeCodes\": [\"ADT\"],\n                     \"baggageType\": \"CarryOn\",\n                     \"ProductRef\": [\"AAp0\"],\n                     \"BaggageItem\": [                     {\n                        \"@type\": \"BaggageItem\",\n                        \"quantity\": 2,\n                        \"Measurement\":                         [\n                                                      {\n                              \"measurementType\": \"OverallDimension\",\n                              \"unit\": \"Inches\",\n                              \"value\": 45\n                           },\n                                                      {\n                              \"measurementType\": \"OverallDimension\",\n                              \"unit\": \"Centimeters\",\n                              \"value\": 115\n                           }\n                        ]\n                     }],\n                     \"SegmentSequenceList\": [1],\n                     \"Text\": [\"CARRY ON ALLOWANCE\"]\n                  }\n               ],\n               \"ValidatingAirline\": [               {\n                  \"@type\": \"ValidatingAirline\",\n                  \"ValidatingAirline\": \"AA\"\n               }],\n               \"PaymentTimeLimit\": \"2024-11-09T23:59:00Z\",\n               \"Penalties\": [               {\n                  \"@type\": \"Penalties\",\n                  \"Change\": [                  {\n                     \"@type\": \"ChangeNotPermitted\",\n                     \"ProductRefs\": [\"AAp0\"],\n                     \"NotPermittedInd\": \"true\"\n                  }],\n                  \"Cancel\": [                  {\n                     \"@type\": \"CancelNotPermitted\",\n                     \"ProductRefs\": [\"AAp0\"],\n                     \"NotPermittedInd\": \"true\"\n                  }],\n                  \"PassengerTypeCodes\": [\"ADT\"]\n               }]\n            },\n                        {\n               \"@type\": \"TermsAndConditionsAir\",\n               \"id\": \"AAt1\",\n               \"BaggageAllowance\":                [\n                                    {\n                     \"@type\": \"BaggageAllowanceDetail\",\n                     \"passengerTypeCodes\": [\"ADT\"],\n                     \"baggageType\": \"FirstCheckedBag\",\n                     \"ProductRef\": [\"AAp1\"],\n                     \"BaggageItem\": [                     {\n                        \"@type\": \"BaggageItem\",\n                        \"quantity\": 0,\n                        \"Measurement\":                         [\n                                                      {\n                              \"measurementType\": \"Weight\",\n                              \"unit\": \"Kilograms\",\n                              \"value\": 23\n                           },\n                                                      {\n                              \"measurementType\": \"Weight\",\n                              \"unit\": \"Pounds\",\n                              \"value\": 50\n                           },\n                                                      {\n                              \"measurementType\": \"OverallDimension\",\n                              \"unit\": \"Inches\",\n                              \"value\": 62\n                           },\n                                                      {\n                              \"measurementType\": \"OverallDimension\",\n                              \"unit\": \"Centimeters\",\n                              \"value\": 158\n                           }\n                        ]\n                     }],\n                     \"SegmentSequenceList\": [1],\n                     \"Text\": [\"CHECKED ALLOWANCE\"]\n                  },\n                                    {\n                     \"@type\": \"BaggageAllowanceDetail\",\n                     \"passengerTypeCodes\": [\"ADT\"],\n                     \"baggageType\": \"CarryOn\",\n                     \"ProductRef\": [\"AAp1\"],\n                     \"BaggageItem\": [                     {\n                        \"@type\": \"BaggageItem\",\n                        \"quantity\": 2,\n                        \"Measurement\":                         [\n                                                      {\n                              \"measurementType\": \"OverallDimension\",\n                              \"unit\": \"Inches\",\n                              \"value\": 45\n                           },\n                                                      {\n                              \"measurementType\": \"OverallDimension\",\n                              \"unit\": \"Centimeters\",\n                              \"value\": 115\n                           }\n                        ]\n                     }],\n                     \"SegmentSequenceList\": [1],\n                     \"Text\": [\"CARRY ON ALLOWANCE\"]\n                  }\n               ],\n               \"ValidatingAirline\": [               {\n                  \"@type\": \"ValidatingAirline\",\n                  \"ValidatingAirline\": \"AA\"\n               }],\n               \"Penalties\": [               {\n                  \"@type\": \"Penalties\",\n                  \"Change\": [                  {\n                     \"@type\": \"ChangeNotPermitted\",\n                     \"ProductRefs\": [\"AAp1\"],\n                     \"NotPermittedInd\": \"true\"\n                  }],\n                  \"Cancel\": [                  {\n                     \"@type\": \"CancelNotPermitted\",\n                     \"ProductRefs\": [\"AAp1\"],\n                     \"NotPermittedInd\": \"true\"\n                  }],\n                  \"PassengerTypeCodes\": [\"ADT\"]\n               }]\n            }\n         ]\n      },\n            {\n         \"@type\": \"ReferenceListBrand\",\n         \"Brand\": [         {\n            \"@type\": \"Brand\",\n            \"name\": \"Basic Economy\",\n            \"id\": \"AAb0\",\n            \"BrandAttribute\":             [\n                              {\n                  \"@type\": \"BrandAttribute\",\n                  \"classification\": \"Rebooking\",\n                  \"inclusion\": \"Not Offered\",\n                  \"groupCode\": \"BF\"\n               },\n                              {\n                  \"@type\": \"BrandAttribute\",\n                  \"classification\": \"SeatAssignment\",\n                  \"inclusion\": \"Chargeable\",\n                  \"groupCode\": \"SA\"\n               },\n                              {\n                  \"@type\": \"BrandAttribute\",\n                  \"classification\": \"CheckedBag\",\n                  \"inclusion\": \"Chargeable\",\n                  \"groupCode\": \"BG\"\n               },\n                              {\n                  \"@type\": \"BrandAttribute\",\n                  \"classification\": \"Refund\",\n                  \"inclusion\": \"Not Offered\",\n                  \"groupCode\": \"BF\"\n               }\n            ]\n         }]\n      }\n   ]\n}};<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Html  <\/h2>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"theme:tomorrow lang:xhtml decode:true \" >Flight Information\nTransaction ID: 00607966-b1a0-4292-957d-2accf4846525\n\nProduct Offering\n____________________\nsequence: 1\n\nid AA_CPO0\n\nDeparture: ICN\n\nArrival: DFW\n\nPrice (KRW): 556000\n\n____________________\nsequence: 2\n\nid AA_CPO1\n\nDeparture: DFW\n\nArrival: ICN\n\nPrice (KRW): 556000\n\n\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\nFlight Details\n___________________\nFlight Number: AA 280\n\nDistance: 6824 km\n\nStops: 0\n\nDuration: PT12H35M\n\nDeparture Date &amp; Time: 2024-12-23 at 18:50:00\n\nArrival Date &amp; Time: 2024-12-23 at 16:25:00\n\n___________________\nFlight Number: AA 281\n\nDistance: 6824 km\n\nStops: 0\n\nDuration: PT15H35M\n\nDeparture Date &amp; Time: 2024-12-30 at 10:10:00\n\nArrival Date &amp; Time: 2024-12-31 at 16:45:00<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>JSON\uc740 XML\uacfc \ub2ec\ub9ac XSLT \uac19\uc740 \uc804\uc6a9 \ubcc0\ud658 \uc5b8\uc5b4\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc9c0\ub9cc, JSON\uc744 HTML\uc774\ub098 XML \uac19\uc740 \ub2e4\ub978 \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud558\ub294 \ub370 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \uba87 \uac00\uc9c0 \ub3c4\uad6c\uc640 \ubc29\ubc95\uc774 <a class=\"mh-excerpt-more\" href=\"https:\/\/www.auctionpro.co.kr\/?p=9590\" title=\"JSON\uc744 HTML\ub85c \ubcc0\ud658\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[60],"tags":[],"class_list":["post-9590","post","type-post","status-publish","format-standard","hentry","category-xsl"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>JSON\uc744 HTML\ub85c \ubcc0\ud658 - AuctionPro<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.auctionpro.co.kr\/?p=9590\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JSON\uc744 HTML\ub85c \ubcc0\ud658 - AuctionPro\" \/>\n<meta property=\"og:description\" content=\"JSON\uc740 XML\uacfc \ub2ec\ub9ac XSLT \uac19\uc740 \uc804\uc6a9 \ubcc0\ud658 \uc5b8\uc5b4\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc9c0\ub9cc, JSON\uc744 HTML\uc774\ub098 XML \uac19\uc740 \ub2e4\ub978 \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud558\ub294 \ub370 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \uba87 \uac00\uc9c0 \ub3c4\uad6c\uc640 \ubc29\ubc95\uc774 [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.auctionpro.co.kr\/?p=9590\" \/>\n<meta property=\"og:site_name\" content=\"AuctionPro\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-11T02:18:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-11T04:37:23+00:00\" \/>\n<meta name=\"author\" content=\"golgol\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"golgol\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"9\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9590#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9590\"},\"author\":{\"name\":\"golgol\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"headline\":\"JSON\uc744 HTML\ub85c \ubcc0\ud658\",\"datePublished\":\"2024-11-11T02:18:34+00:00\",\"dateModified\":\"2024-11-11T04:37:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9590\"},\"wordCount\":93,\"commentCount\":0,\"articleSection\":[\"[Dev]XSL XML JSON\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9590#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9590\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9590\",\"name\":\"JSON\uc744 HTML\ub85c \ubcc0\ud658 - AuctionPro\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\"},\"datePublished\":\"2024-11-11T02:18:34+00:00\",\"dateModified\":\"2024-11-11T04:37:23+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9590#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9590\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9590#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JSON\uc744 HTML\ub85c \ubcc0\ud658\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\",\"name\":\"AuctionPro\",\"description\":\"\uc625\uc158\ud504\ub85c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\",\"name\":\"golgol\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?author=6\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"JSON\uc744 HTML\ub85c \ubcc0\ud658 - AuctionPro","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.auctionpro.co.kr\/?p=9590","og_locale":"ko_KR","og_type":"article","og_title":"JSON\uc744 HTML\ub85c \ubcc0\ud658 - AuctionPro","og_description":"JSON\uc740 XML\uacfc \ub2ec\ub9ac XSLT \uac19\uc740 \uc804\uc6a9 \ubcc0\ud658 \uc5b8\uc5b4\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc9c0\ub9cc, JSON\uc744 HTML\uc774\ub098 XML \uac19\uc740 \ub2e4\ub978 \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud558\ub294 \ub370 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \uba87 \uac00\uc9c0 \ub3c4\uad6c\uc640 \ubc29\ubc95\uc774 [...]","og_url":"https:\/\/www.auctionpro.co.kr\/?p=9590","og_site_name":"AuctionPro","article_published_time":"2024-11-11T02:18:34+00:00","article_modified_time":"2024-11-11T04:37:23+00:00","author":"golgol","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"golgol","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"9\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.auctionpro.co.kr\/?p=9590#article","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=9590"},"author":{"name":"golgol","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"headline":"JSON\uc744 HTML\ub85c \ubcc0\ud658","datePublished":"2024-11-11T02:18:34+00:00","dateModified":"2024-11-11T04:37:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=9590"},"wordCount":93,"commentCount":0,"articleSection":["[Dev]XSL XML JSON"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.auctionpro.co.kr\/?p=9590#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.auctionpro.co.kr\/?p=9590","url":"https:\/\/www.auctionpro.co.kr\/?p=9590","name":"JSON\uc744 HTML\ub85c \ubcc0\ud658 - AuctionPro","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/#website"},"datePublished":"2024-11-11T02:18:34+00:00","dateModified":"2024-11-11T04:37:23+00:00","author":{"@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"breadcrumb":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=9590#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.auctionpro.co.kr\/?p=9590"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.auctionpro.co.kr\/?p=9590#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/www.auctionpro.co.kr\/"},{"@type":"ListItem","position":2,"name":"JSON\uc744 HTML\ub85c \ubcc0\ud658"}]},{"@type":"WebSite","@id":"https:\/\/www.auctionpro.co.kr\/#website","url":"https:\/\/www.auctionpro.co.kr\/","name":"AuctionPro","description":"\uc625\uc158\ud504\ub85c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.auctionpro.co.kr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2","name":"golgol","url":"https:\/\/www.auctionpro.co.kr\/?author=6"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/9590","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=9590"}],"version-history":[{"count":0,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/9590\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9590"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=9590"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=9590"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}