{"id":15709,"date":"2025-08-20T04:23:56","date_gmt":"2025-08-20T04:23:56","guid":{"rendered":"https:\/\/skema.co.id\/?page_id=15709"},"modified":"2025-08-20T04:26:58","modified_gmt":"2025-08-20T04:26:58","slug":"our-solution","status":"publish","type":"page","link":"https:\/\/skema.co.id\/en\/our-solution\/","title":{"rendered":"Our Solution"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"15709\" class=\"elementor elementor-15709\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-9895be5 elementor-section-full_width gt3_relative_section elementor-section-height-default elementor-section-height-default\" data-id=\"9895be5\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8866622\" data-id=\"8866622\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-59a2929 gt3_absolute_block elementor-absolute elementor-widget elementor-widget-html\" data-id=\"59a2929\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style type=\"text\/css\">\ncanvas#gt3_landing_canvas {\n\tbackground-color: transparent;\n\twidth: 100%;\n\theight: 100%;\n}\n<\/style>\n<canvas id=\"gt3_landing_canvas\">\n    Your Browser Don't Support Canvas, Please Download Chrome.\n<\/canvas>\n<script type=\"text\/javascript\">\n    (function(){\nvar canvas = document.getElementById('gt3_landing_canvas'),\n   can_w = parseInt(canvas.getAttribute('width')),\n   can_h = parseInt(canvas.getAttribute('height')),\n   ctx = canvas.getContext('2d');\n\nvar ball = {\n      x: 0,\n      y: 0,\n      vx: 0,\n      vy: 0,\n      r: 0,\n      alpha: 1,\n      phase: 0\n   },\n   ball_color = {\n       r: 209,\n       g: 214,\n       b: 218\n   },\n   R = 7,\n   balls = [],\n   alpha_f = 0.03,\n   alpha_phase = 0,\n    \n\/\/ Line\n   link_line_width = 0.8,\n   dis_limit = 260,\n   add_mouse_point = true,\n   mouse_in = false,\n   mouse_ball = {\n      x: 0,\n      y: 0,\n      vx: 0,\n      vy: 0,\n      r: 0,\n      type: 'mouse'\n   };\n\n\/\/ Random speed\nfunction getRandomSpeed(pos){\n    var  min = -1,\n       max = 1;\n    switch(pos){\n        case 'top':\n            return [randomNumFrom(min, max), randomNumFrom(0.1, max)];\n            break;\n        case 'right':\n            return [randomNumFrom(min, -0.1), randomNumFrom(min, max)];\n            break;\n        case 'bottom':\n            return [randomNumFrom(min, max), randomNumFrom(min, -0.1)];\n            break;\n        case 'left':\n            return [randomNumFrom(0.1, max), randomNumFrom(min, max)];\n            break;\n        default:\n            return;\n            break;\n    }\n}\nfunction randomArrayItem(arr){\n    return arr[Math.floor(Math.random() * arr.length)];\n}\nfunction randomNumFrom(min, max){\n    return Math.random()*(max - min) + min;\n}\n\/\/ Random Ball\nfunction getRandomBall(){\n    var pos = randomArrayItem(['top', 'right', 'bottom', 'left']);\n    switch(pos){\n        case 'top':\n            return {\n                x: randomSidePos(can_w),\n                y: -R,\n                vx: getRandomSpeed('top')[0],\n                vy: getRandomSpeed('top')[1],\n                r: R,\n                alpha: 1,\n                phase: randomNumFrom(0, 10)\n            }\n            break;\n        case 'right':\n            return {\n                x: can_w + R,\n                y: randomSidePos(can_h),\n                vx: getRandomSpeed('right')[0],\n                vy: getRandomSpeed('right')[1],\n                r: R,\n                alpha: 1,\n                phase: randomNumFrom(0, 10)\n            }\n            break;\n        case 'bottom':\n            return {\n                x: randomSidePos(can_w),\n                y: can_h + R,\n                vx: getRandomSpeed('bottom')[0],\n                vy: getRandomSpeed('bottom')[1],\n                r: R,\n                alpha: 1,\n                phase: randomNumFrom(0, 10)\n            }\n            break;\n        case 'left':\n            return {\n                x: -R,\n                y: randomSidePos(can_h),\n                vx: getRandomSpeed('left')[0],\n                vy: getRandomSpeed('left')[1],\n                r: R,\n                alpha: 1,\n                phase: randomNumFrom(0, 10)\n            }\n            break;\n    }\n}\nfunction randomSidePos(length){\n    return Math.ceil(Math.random() * length);\n}\n\n\/\/ Draw Ball\nfunction renderBalls(){\n    Array.prototype.forEach.call(balls, function(b){\n       if(!b.hasOwnProperty('type')){\n           ctx.fillStyle = 'rgba('+ball_color.r+','+ball_color.g+','+ball_color.b+','+b.alpha+')';\n           ctx.beginPath();\n           ctx.arc(b.x, b.y, R, 0, Math.PI*2, true);\n           ctx.closePath();\n           ctx.fill();\n       }\n    });\n}\n\n\/\/ Update balls\nfunction updateBalls(){\n    var new_balls = [];\n    Array.prototype.forEach.call(balls, function(b){\n        b.x += b.vx;\n        b.y += b.vy;\n        \n        if(b.x > -(50) && b.x < (can_w+50) && b.y > -(50) && b.y < (can_h+50)){\n           new_balls.push(b);\n        }\n        \n        \/\/ alpha change\n        b.phase += alpha_f;\n        b.alpha = Math.abs(Math.cos(b.phase));        \n    });\n    \n    balls = new_balls.slice(0);\n}\n\n\/\/ loop alpha\nfunction loopAlphaInf(){\n    \n}\n\n\/\/ Draw lines\nfunction renderLines(){\n    var fraction, alpha;\n    for (var i = 0; i < balls.length; i++) {\n        for (var j = i + 1; j < balls.length; j++) {\n           \n           fraction = getDisOf(balls[i], balls[j]) \/ dis_limit;\n            \n           if(fraction < 1){\n               alpha = (1 - fraction).toString();\n\n               ctx.strokeStyle = 'rgba(208,213,216,'+alpha+')';\n               ctx.lineWidth = link_line_width;\n               \n               ctx.beginPath();\n               ctx.moveTo(balls[i].x, balls[i].y);\n               ctx.lineTo(balls[j].x, balls[j].y);\n               ctx.stroke();\n               ctx.closePath();\n           }\n        }\n    }\n}\n\n\/\/ calculate distance between two points\nfunction getDisOf(b1, b2){\n    var  delta_x = Math.abs(b1.x - b2.x),\n       delta_y = Math.abs(b1.y - b2.y);\n    \n    return Math.sqrt(delta_x*delta_x + delta_y*delta_y);\n}\n\n\/\/ add balls if there a little balls\nfunction addBallIfy(){\n    if(balls.length < 20){\n        balls.push(getRandomBall());\n    }\n}\n\n\/\/ Render\nfunction render(){\n    ctx.clearRect(0, 0, can_w, can_h);\n    \n    renderBalls();\n    \n    renderLines();\n    \n    updateBalls();\n    \n    addBallIfy();\n    \n    window.requestAnimationFrame(render);\n}\n\n\/\/ Init Balls\nfunction initBalls(num){\n    for(var i = 1; i <= num; i++){\n        balls.push({\n            x: randomSidePos(can_w),\n            y: randomSidePos(can_h),\n            vx: getRandomSpeed('top')[0],\n            vy: getRandomSpeed('top')[1],\n            r: R,\n            alpha: 1,\n            phase: randomNumFrom(0, 10)\n        });\n    }\n}\n\/\/ Init Canvas\nfunction initCanvas(){\n    canvas.setAttribute('width', window.innerWidth);\n    canvas.setAttribute('height', window.innerHeight);\n    \n    can_w = parseInt(canvas.getAttribute('width'));\n    can_h = parseInt(canvas.getAttribute('height'));\n}\nwindow.addEventListener('resize', function(e){\n    initCanvas();\n});\n\nfunction goMovie(){\n    initCanvas();\n    initBalls(30);\n    window.requestAnimationFrame(render);\n}\ngoMovie();\n\n\/\/ Mouse effect\ncanvas.addEventListener('mouseenter', function(){\n    mouse_in = true;\n    balls.push(mouse_ball);\n});\ncanvas.addEventListener('mouseleave', function(){\n    mouse_in = false;\n    var new_balls = [];\n    Array.prototype.forEach.call(balls, function(b){\n        if(!b.hasOwnProperty('type')){\n            new_balls.push(b);\n        }\n    });\n    balls = new_balls.slice(0);\n});\ncanvas.addEventListener('mousemove', function(e){\n    var e = e || window.event;\n    mouse_ball.x = e.pageX;\n    mouse_ball.y = e.pageY;\n});\n})();\n<\/script>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-efb58c8 elementor-widget elementor-widget-spacer\" data-id=\"efb58c8\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8e126f8 elementor-widget elementor-widget-spacer\" data-id=\"8e126f8\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-88fb3ab elementor-absolute elementor-widget elementor-widget-heading\" data-id=\"88fb3ab\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Skema Data Indonesia<\/h1>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-c801283 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c801283\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-3729b2a\" data-id=\"3729b2a\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d3b4881 elementor-widget elementor-widget-spacer\" data-id=\"d3b4881\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-58c416f elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"58c416f\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-df395d9\" data-id=\"df395d9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3e9e617 elementor-position-left elementor-vertical-align-top elementor-widget elementor-widget-gt3-core-imagebox\" data-id=\"3e9e617\" data-element_type=\"widget\" data-widget_type=\"gt3-core-imagebox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"gt3-core-imagebox-wrapper elementor-image_icon-position-default\"><figure class=\"gt3-core-imagebox-img elementor-animation-grow\"><a href=\"https:\/\/skema.co.id\/en\/skema-monitoring-2\/\"><img decoding=\"async\" width=\"128\" height=\"128\" src=\"https:\/\/skema.co.id\/wp-content\/uploads\/2021\/10\/responsive-retina.png\" class=\"elementor-animation-grow attachment-full size-full wp-image-9768\" alt=\"\" title=\"responsive-retina\" \/><\/a><\/figure><div class=\"gt3-core-imagebox-content\"><div class=\"gt3-core-imagebox-title\"><h5 class=\"gt3-core-imagebox-title\"><a href=\"https:\/\/skema.co.id\/en\/skema-monitoring-2\/\">SKEMA Monitoring<\/a><\/h5><\/div><p class=\"gt3-core-imagebox-description\">A comprehensive media monitoring solution covering 10,000+ online media outlets, 450 print media outlets, 200 TV stations, and 8 social media platforms. Equipped with a 24\/7 real-time AI dashboard with tone analysis (80% accurate). Supported by expert analysts and customizable reports for optimal communication and reputation strategies.<\/p><\/div><\/div><a href=\"https:\/\/skema.co.id\/en\/skema-monitoring-2\/\"><\/a>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41a40d4 elementor-position-left elementor-vertical-align-top elementor-widget elementor-widget-gt3-core-imagebox\" data-id=\"41a40d4\" data-element_type=\"widget\" data-widget_type=\"gt3-core-imagebox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"gt3-core-imagebox-wrapper elementor-image_icon-position-default\"><figure class=\"gt3-core-imagebox-img elementor-animation-grow\"><a href=\"https:\/\/skema.co.id\/en\/skema-solution\/\"><img decoding=\"async\" width=\"88\" height=\"76\" src=\"https:\/\/skema.co.id\/wp-content\/uploads\/2021\/04\/lifetime_icon.png\" class=\"elementor-animation-grow attachment-full size-full wp-image-8661\" alt=\"\" title=\"\" \/><\/a><\/figure><div class=\"gt3-core-imagebox-content\"><div class=\"gt3-core-imagebox-title\"><h5 class=\"gt3-core-imagebox-title\"><a href=\"https:\/\/skema.co.id\/en\/skema-solution\/\">SKEMA Solutions<\/a><\/h5><\/div><p class=\"gt3-core-imagebox-description\">Skema Solutions provides the right integrated IT solutions to support your business success. From planning to maintenance.<\/p><\/div><\/div><a href=\"https:\/\/skema.co.id\/en\/skema-solution\/\"><\/a>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-d157d55\" data-id=\"d157d55\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-0ca9f93 elementor-position-left elementor-vertical-align-top elementor-widget elementor-widget-gt3-core-imagebox\" data-id=\"0ca9f93\" data-element_type=\"widget\" data-widget_type=\"gt3-core-imagebox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"gt3-core-imagebox-wrapper elementor-image_icon-position-default\"><figure class=\"gt3-core-imagebox-img elementor-animation-grow\"><a href=\"https:\/\/skema.co.id\/en\/skema-development\/\"><img decoding=\"async\" width=\"128\" height=\"128\" src=\"https:\/\/skema.co.id\/wp-content\/uploads\/2021\/10\/optimization.png\" class=\"elementor-animation-grow attachment-full size-full wp-image-9770\" alt=\"\" title=\"optimization\" \/><\/a><\/figure><div class=\"gt3-core-imagebox-content\"><div class=\"gt3-core-imagebox-title\"><h5 class=\"gt3-core-imagebox-title\"><a href=\"https:\/\/skema.co.id\/en\/skema-development\/\">SKEMA Development<\/a><\/h5><\/div><p class=\"gt3-core-imagebox-description\">Software development tailored to your specific business needs, ranging from web applications, mobile applications, to enterprise solutions, with a focus on efficiency, security, and scalability.<\/p><\/div><\/div><a href=\"https:\/\/skema.co.id\/en\/skema-development\/\"><\/a>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cb8d742 elementor-position-left elementor-vertical-align-top elementor-widget elementor-widget-gt3-core-imagebox\" data-id=\"cb8d742\" data-element_type=\"widget\" data-widget_type=\"gt3-core-imagebox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"gt3-core-imagebox-wrapper elementor-image_icon-position-default\"><figure class=\"gt3-core-imagebox-img elementor-animation-grow\"><a href=\"https:\/\/skema.co.id\/en\/skema-marketing\/\"><img loading=\"lazy\" decoding=\"async\" width=\"128\" height=\"128\" src=\"https:\/\/skema.co.id\/wp-content\/uploads\/2021\/10\/theme-options.png\" class=\"elementor-animation-grow attachment-full size-full wp-image-9764\" alt=\"\" title=\"theme-options\" \/><\/a><\/figure><div class=\"gt3-core-imagebox-content\"><div class=\"gt3-core-imagebox-title\"><h5 class=\"gt3-core-imagebox-title\"><a href=\"https:\/\/skema.co.id\/en\/skema-marketing\/\">SKEMA Marketing<\/a><\/h5><\/div><p class=\"gt3-core-imagebox-description\">Skema Marketing provides integrated marketing solutions, including issue analysis, communication consulting, and digital services. Backed by a team of experts, we help businesses strengthen their brand awareness and marketing strategies effectively.<\/p><\/div><\/div><a href=\"https:\/\/skema.co.id\/en\/skema-marketing\/\"><\/a>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-a9e5f2d\" data-id=\"a9e5f2d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3e2b18b elementor-position-left elementor-vertical-align-top elementor-widget elementor-widget-gt3-core-imagebox\" data-id=\"3e2b18b\" data-element_type=\"widget\" data-widget_type=\"gt3-core-imagebox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"gt3-core-imagebox-wrapper elementor-image_icon-position-default\"><figure class=\"gt3-core-imagebox-img elementor-animation-grow\"><a href=\"https:\/\/skema.co.id\/en\/skema-smart-infrastucture\/\"><img loading=\"lazy\" decoding=\"async\" width=\"170\" height=\"170\" src=\"https:\/\/skema.co.id\/wp-content\/uploads\/2024\/04\/agency_icon3.png\" class=\"elementor-animation-grow attachment-full size-full wp-image-13648\" alt=\"\" srcset=\"https:\/\/skema.co.id\/wp-content\/uploads\/2024\/04\/agency_icon3.png 170w, https:\/\/skema.co.id\/wp-content\/uploads\/2024\/04\/agency_icon3-150x150.png 150w, https:\/\/skema.co.id\/wp-content\/uploads\/2024\/04\/agency_icon3-50x50.png 50w, https:\/\/skema.co.id\/wp-content\/uploads\/2024\/04\/agency_icon3-100x100.png 100w\" sizes=\"(max-width: 170px) 100vw, 170px\" title=\"\" \/><\/a><\/figure><div class=\"gt3-core-imagebox-content\"><div class=\"gt3-core-imagebox-title\"><h5 class=\"gt3-core-imagebox-title\"><a href=\"https:\/\/skema.co.id\/en\/skema-smart-infrastucture\/\">SKEMA Smart Infrastructure<\/a><\/h5><\/div><p class=\"gt3-core-imagebox-description\">Smart Infrastructure integrates advanced technology and IoT to create efficient, secure, and connected infrastructure solutions. Focus on automation, energy savings, and improved comfort and safety.<\/p><\/div><\/div><a href=\"https:\/\/skema.co.id\/en\/skema-smart-infrastucture\/\"><\/a>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-c086c80 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c086c80\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-cb2a29c\" data-id=\"cb2a29c\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d486719 elementor-widget elementor-widget-spacer\" data-id=\"d486719\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Your Browser Don&#8217;t Support Canvas, Please Download Chrome. Skema Data Indonesia SKEMA Monitoring Solusi pemantauan media komprehensif yang mencakup 10.000+ media online, 450 cetak, 200 TV, dan 8 platform sosial. Dilengkapi dashboard AI real-time 24\/7 dengan analisis tonalitas (80% akurat). Didukung analis ahli dan laporan yang dapat disesuaikan, untuk strategi komunikasi dan reputasi yang optimal. [&hellip;]<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-15709","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/skema.co.id\/en\/wp-json\/wp\/v2\/pages\/15709"}],"collection":[{"href":"https:\/\/skema.co.id\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/skema.co.id\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/skema.co.id\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/skema.co.id\/en\/wp-json\/wp\/v2\/comments?post=15709"}],"version-history":[{"count":10,"href":"https:\/\/skema.co.id\/en\/wp-json\/wp\/v2\/pages\/15709\/revisions"}],"predecessor-version":[{"id":15719,"href":"https:\/\/skema.co.id\/en\/wp-json\/wp\/v2\/pages\/15709\/revisions\/15719"}],"wp:attachment":[{"href":"https:\/\/skema.co.id\/en\/wp-json\/wp\/v2\/media?parent=15709"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}