@prefix :       <https://dejiolowe.com/2020/05/31/why-qr-code-payment-would-never-succeed-in-africa/#> .
@prefix rdf:    <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:   <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl:    <http://www.w3.org/2002/07/owl#> .
@prefix xsd:    <http://www.w3.org/2001/XMLSchema#> .
@prefix skos:   <http://www.w3.org/2004/02/skos/core#> .
@prefix schema: <http://schema.org/> .
@prefix dct:    <http://purl.org/dc/terms/> .
@prefix foaf:   <http://xmlns.com/foaf/0.1/> .
@prefix prov:   <http://www.w3.org/ns/prov#> .

: a owl:Ontology ;
    schema:name "Why QR Code Payment Would Never Succeed in Africa — KG Ontology"@en ;
    schema:description "Semantic model of Adedeji Olowe's 2020 article arguing that QR code payments face five insurmountable barriers in Africa — lack of network effects, low smartphone penetration, unreliable telecom infrastructure, costly mobile data, and poor app usability — while USSD and STK-based methods like M-Pesa have succeeded where QR has not."@en ;
    rdfs:label "QR Code Payment in Africa — Knowledge Graph" ;
    schema:identifier "https://dejiolowe.com/2020/05/31/why-qr-code-payment-would-never-succeed-in-africa/" ;
    dct:source <https://dejiolowe.com/2020/05/31/why-qr-code-payment-would-never-succeed-in-africa/> ;
    dct:creator :adedejiOlowe ; dct:date "2020-05-31"^^xsd:date .

:Barrier a owl:Class ; rdfs:label "Adoption Barrier" ; rdfs:comment "One of the five structural barriers preventing QR code payment adoption in Africa." ; rdfs:isDefinedBy : .
:KeyInsight a owl:Class ; rdfs:label "Key Insight" ; rdfs:comment "A broader lesson from the article about payment system design in developing markets." ; rdfs:isDefinedBy : .

:article a schema:Article, schema:TechArticle ;
    rdfs:label "Why QR code payment would never succeed in Africa" ;
    schema:name "Why QR code payment would never succeed in Africa"@en ;
    schema:headline "Why QR code payment would never succeed in Africa"@en ;
    schema:description "Adedeji Olowe argues that QR code payments, despite dominance in China, face five structural barriers in Africa: no network effects, 33% smartphone penetration, unreliable telecom, costly data, and poor app UX. USSD and STK (M-Pesa) succeeded by accounting for African realities that QR ignores."@en ;
    schema:url <https://dejiolowe.com/2020/05/31/why-qr-code-payment-would-never-succeed-in-africa/> ;
    schema:datePublished "2020-05-31"^^xsd:date ;
    schema:author :adedejiOlowe ;
    schema:articleBody """QR code payments dominate China through WeChat and Alipay ecosystems, but face five structural barriers in Africa. First, no network effect — African fintechs build proprietary solutions rather than shared standards. Second, only 33% of Sub-Saharan Africans own smartphones while 41% live below the poverty line. Third, unreliable telecom infrastructure from poor investment, damaged fiber, and equipment theft makes QR payments fail at point of sale. Fourth, costly mobile data means users keep data turned off, creating fatal friction when payment requires connectivity. Fifth, poor app usability from larger banks means cash remains faster at checkout. The alternative — USSD and STK-based methods like M-Pesa — succeeded by working on any phone without internet, processing billions of transactions by accounting for African realities that QR ignores."""@en ;
    schema:about :qrCodePayments, :africanFintech, :ussdStkPayments, :digitalDivide ;
    schema:hasPart :contextSection, :barriersSection, :alternativesSection, :faqPage, :glossarySet, :howtoSection, :barriersGroup, :insightsGroup, : ; prov:wasGeneratedBy :kgGeneratorSkill .

:adedejiOlowe a foaf:Person, schema:Person ;
    schema:name "Adedeji Olowe"@en ;
    schema:url <https://dejiolowe.com> .

:qrCodePayments a skos:Concept, schema:DefinedTerm ;
    schema:name "QR Code Payments"@en ;
    schema:description "Payment method using Quick Response codes — dominant in China via WeChat/Alipay ecosystems. Invented by Denso Wave (Japan, 1994). Requires smartphones, reliable data, and network effects to succeed."@en ; rdfs:isDefinedBy : .
:africanFintech a skos:Concept, schema:DefinedTerm ;
    schema:name "African Fintech"@en ;
    schema:description "The financial technology landscape in Africa — characterized by mobile-first solutions, low smartphone penetration (~33%), unreliable infrastructure, and the dominance of USSD/STK-based payments like M-Pesa."@en ; rdfs:isDefinedBy : .
:ussdStkPayments a skos:Concept, schema:DefinedTerm ;
    schema:name "USSD and STK Payments"@en ;
    schema:description "Unstructured Supplementary Service Data and SIM Tool Kit — mobile payment methods that work on feature phones without internet. M-Pesa processes billions of transactions via STK. 35% of Nigeria's 700M+ interbank transfers used USSD in 2018."@en ; rdfs:isDefinedBy : .
:digitalDivide a skos:Concept, schema:DefinedTerm ;
    schema:name "Digital Divide"@en ;
    schema:description "The gap between those with access to smartphones, reliable internet, and affordable data — and those without. 41% of Africans live below the poverty line; only 33% of Sub-Saharan Africans own smartphones."@en ; rdfs:isDefinedBy : .

:barriersGroup a schema:ArticleSection ; schema:name "Five Barriers to QR Adoption"@en ; schema:position 2 ; schema:hasPart :bNetworkEffect, :bSmartphones, :bInfrastructure, :bDataCost, :bAppUX .
:bNetworkEffect a :Barrier ; rdfs:label "1. Lack of Network Effect" ; rdfs:comment "African fintechs build proprietary solutions rather than shared standards. Unlike China where Tencent embedded QR into WeChat's ecosystem, African companies 'go at it alone' — preventing the critical mass needed for QR adoption."@en .
:bSmartphones a :Barrier ; rdfs:label "2. Low Smartphone Penetration" ; rdfs:comment "QR depends 100% on smartphones, but only ~33% of Sub-Saharan Africans own one. With 41% living below the poverty line, the addressable market is too small for QR to achieve critical mass."@en .
:bInfrastructure a :Barrier ; rdfs:label "3. Unreliable Telecom Infrastructure" ; rdfs:comment "Poor investment, dilapidated infrastructure, damaged fiber cables, and theft of equipment (batteries, generators) cause frequent network failures — making QR payments unreliable at point of sale."@en .
:bDataCost a :Barrier ; rdfs:label "4. Costly Mobile Data" ; rdfs:comment "Data is expensive relative to income. Users keep data turned off to save money. The chore of turning data on just for payment prevents habit formation and creates unacceptable friction at checkout."@en .
:bAppUX a :Barrier ; rdfs:label "5. Poor App Usability" ; rdfs:comment "Larger banks have clunky interfaces — app usability is inversely proportional to bank size. At checkout, cash or cards remain faster. Smaller fintechs have better design but lack the distribution of major banks."@en .

:insightsGroup a schema:ArticleSection ; schema:name "Key Insights"@en ; schema:position 4 ; schema:hasPart :iDesignForReality, :iEcosystemMatters, :iLocalStandards .
:iDesignForReality a :KeyInsight ; rdfs:label "Design Payments for Local Reality, Not Imported Models" ; rdfs:comment "QR succeeded in China because it matched Chinese infrastructure (ubiquitous smartphones, cheap data, WeChat ecosystem). Importing the same model to Africa ignores the structural differences that determine payment success."@en .
:iEcosystemMatters a :KeyInsight ; rdfs:label "Ecosystem, Not Just Technology" ; rdfs:comment "QR's Chinese success was driven by Tencent's ecosystem, not QR technology itself. African fintechs building proprietary QR solutions without shared standards replicate the technology without the ecosystem that makes it work."@en .
:iLocalStandards a :KeyInsight ; rdfs:label "Local Standards Win: USSD and STK" ; rdfs:comment "M-Pesa and USSD succeeded because they work on any phone, don't require internet, and were built for African infrastructure realities. Payment innovation succeeds when it accounts for local constraints rather than ignoring them."@en .

:contextSection a schema:ArticleSection ; schema:name "Context"@en ; schema:position 1 ; schema:description "QR codes dominate payments in China via WeChat/Alipay. A 2016 meeting in Tanzania where a global payments giant pitched QR to a telco ended with rejection — foreshadowing QR's African struggles."@en .
:barriersSection a schema:ArticleSection ; schema:name "Five Barriers to QR Adoption"@en ; schema:position 2 ; schema:description "The five structural barriers preventing QR code payment adoption in Africa: lack of network effects, low smartphone penetration (33%), unreliable telecom infrastructure, costly mobile data, and poor banking app usability. Each barrier alone is significant; together they make QR payments impractical for the African market."@en .
:alternativesSection a schema:ArticleSection ; schema:name "What Actually Works"@en ; schema:position 3 ; schema:description "USSD and STK methods like M-Pesa have succeeded by accounting for African realities: they work on feature phones without internet. 35% of Nigeria's 700M+ interbank transfers used USSD in 2018."@en .

:faqPage a schema:FAQPage ; schema:name "Frequently Asked Questions"@en ; schema:mainEntity :faq1, :faq2, :faq3, :faq4, :faq5, :faq6, :faq7, :faq8, :faq9, :faq10, :faq11, :faq12 .
:faq1 a schema:Question ; schema:name "Why did QR code payments succeed in China but fail in Africa?"@en ; schema:acceptedAnswer :a1 . :a1 a schema:Answer ; schema:text "QR succeeded in China because Tencent embedded it into WeChat's ecosystem with ubiquitous smartphones, cheap data, and reliable infrastructure. Africa lacks all of these — 33% smartphone penetration, costly data, unreliable networks, and no dominant ecosystem player driving shared standards."@en .
:faq2 a schema:Question ; schema:name "What are the five barriers to QR payment adoption in Africa?"@en ; schema:acceptedAnswer :a2 . :a2 a schema:Answer ; schema:text "1) Lack of network effects — fintechs build proprietary solutions. 2) Low smartphone penetration — only ~33% of Sub-Saharan Africans own one. 3) Unreliable telecom infrastructure — frequent failures. 4) Costly mobile data — users keep data off. 5) Poor app usability — especially from larger banks."@en .
:faq3 a schema:Question ; schema:name "What payment methods actually work in Africa?"@en ; schema:acceptedAnswer :a3 . :a3 a schema:Answer ; schema:text "USSD and STK-based methods like M-Pesa. They work on any phone (including feature phones), don't require internet access, and were designed for African infrastructure realities. 35% of Nigeria's 700M+ interbank transfers used USSD in 2018."@en .
:faq4 a schema:Question ; schema:name "Who invented the QR code?"@en ; schema:acceptedAnswer :a4 . :a4 a schema:Answer ; schema:text "Denso Wave, a Japanese company, invented the QR code in 1994 for tracking vehicles during manufacturing. It was later adapted for payments, with Tencent popularizing QR payments by embedding them into WeChat."@en .
:faq5 a schema:Question ; schema:name "What is USSD and how does it work for payments?"@en ; schema:acceptedAnswer :a5 . :a5 a schema:Answer ; schema:text "Unstructured Supplementary Service Data — a protocol used by GSM cellular telephones to communicate with the service provider's computers. It works on any mobile phone without internet, making it ideal for African markets where smartphones and data are not universal."@en .
:faq6 a schema:Question ; schema:name "What is M-Pesa and why did it succeed?"@en ; schema:acceptedAnswer :a6 . :a6 a schema:Answer ; schema:text "M-Pesa is a mobile phone-based money transfer and payment service launched in Kenya in 2007. It succeeded because it uses STK (SIM Tool Kit) — working on any phone without internet — and was designed for the specific infrastructure constraints of African markets."@en .
:faq7 a schema:Question ; schema:name "What percentage of Africans own smartphones?"@en ; schema:acceptedAnswer :a7 . :a7 a schema:Answer ; schema:text "Approximately 33% of Sub-Saharan Africans owned a smartphone at the time of writing (2020). With 41% of Africans living below the poverty line, the addressable market for smartphone-dependent payment methods is limited."@en .
:faq8 a schema:Question ; schema:name "Why don't African fintechs establish common QR standards?"@en ; schema:acceptedAnswer :a8 . :a8 a schema:Answer ; schema:text "The author argues fintechs 'go at it alone' rather than collaborating on shared standards. Unlike China where Tencent and Alibaba built dominant ecosystems, African fintechs build proprietary solutions that fragment the market."@en .
:faq9 a schema:Question ; schema:name "What is the Tanzania meeting anecdote?"@en ; schema:acceptedAnswer :a9 . :a9 a schema:Answer ; schema:text "In 2016, a global payments giant pitched QR code payments to a major African telco in Tanzania. The telco sent them packing — recognizing early that QR's infrastructure requirements were incompatible with African market realities."@en .
:faq10 a schema:Question ; schema:name "Could QR payments ever succeed in Africa?"@en ; schema:acceptedAnswer :a10 . :a10 a schema:Answer ; schema:text "The article leaves this open — if infrastructure improves, smartphones become cheaper, and data costs fall, the barriers could erode. But the core argument is that payment methods designed for local realities (USSD, STK) will always outperform imported models that ignore them."@en .
:faq11 a schema:Question ; schema:name "What is the network effect problem in African fintech?"@en ; schema:acceptedAnswer :a11 . :a11 a schema:Answer ; schema:text "Network effects occur when a payment method becomes more valuable as more people use it. African QR schemes fail this because each fintech builds its own proprietary solution — no single scheme reaches the critical mass needed for merchants and consumers to adopt it."@en .
:faq12 a schema:Question ; schema:name "What is the broader lesson for payment system design?"@en ; schema:acceptedAnswer :a12 . :a12 a schema:Answer ; schema:text "Payment innovation must account for local infrastructure, economics, and user behavior. Importing a successful model from one market (China's QR codes) to another (Africa) fails when the structural preconditions — smartphone penetration, data affordability, network reliability — don't exist."@en .

:glossarySet a schema:DefinedTermSet ; schema:name "Glossary of Key Terms"@en ; schema:hasDefinedTerm :qrCodePayments, :africanFintech, :ussdStkPayments, :digitalDivide, :mpesaTerm, :stkTerm .
:mpesaTerm a schema:DefinedTerm ; schema:name "M-Pesa"@en ; schema:description "Mobile phone-based money transfer and payment service launched in Kenya (2007) — processes billions of transactions via STK without requiring internet access."@en .
:stkTerm a schema:DefinedTerm ; schema:name "STK (SIM Tool Kit)"@en ; schema:description "SIM card-based application toolkit enabling mobile payments on any phone without internet — the technology underlying M-Pesa's success."@en .

:howtoSection a schema:HowTo ; schema:name "How to Design Payments for Emerging Markets"@en ; schema:description "A seven-step guide derived from the article for designing payment systems that work in infrastructure-constrained markets."@en ; schema:step :step1, :step2, :step3, :step4, :step5, :step6, :step7 .
:step1 a schema:HowToStep ; schema:name "Design for the Phone People Actually Have"@en ; schema:position 1 ; schema:text "Start with the baseline device, not the aspirational one. If 67% of your market uses feature phones, your payment method must work on feature phones. USSD and STK succeed because they work on any GSM phone."@en .
:step2 a schema:HowToStep ; schema:name "Assume Data Is Off, Not On"@en ; schema:position 2 ; schema:text "Design for offline-first or ultra-low-data scenarios. When users keep mobile data turned off to save money, requiring them to enable it for payment creates fatal friction. M-Pesa works without any data connection."@en .
:step3 a schema:HowToStep ; schema:name "Build Shared Infrastructure, Not Proprietary Silos"@en ; schema:position 3 ; schema:text "Network effects require shared standards. African fintechs must collaborate on common payment rails rather than each building proprietary QR schemes that fragment the market and prevent critical mass."@en .
:step4 a schema:HowToStep ; schema:name "Account for Unreliable Networks"@en ; schema:position 4 ; schema:text "Payment systems must degrade gracefully under poor connectivity. Design for asynchronous confirmation, offline caching, and retry logic. A payment that fails because the network dropped is worse than a payment that takes 30 seconds."@en .
:step5 a schema:HowToStep ; schema:name "Make UX Faster Than Cash"@en ; schema:position 5 ; schema:text "At the point of sale, digital payments compete with cash. If the app takes longer to load than handing over a bill, cash wins. Speed and simplicity are features, not nice-to-haves."@en .
:step6 a schema:HowToStep ; schema:name "Don't Import — Adapt"@en ; schema:position 6 ; schema:text "QR codes succeeded in China because they matched Chinese conditions (WeChat ecosystem, cheap data, ubiquitous smartphones). The lesson is not 'deploy QR codes' — it is 'deploy the method that matches local conditions.'"@en .
:step7 a schema:HowToStep ; schema:name "Study What Already Works Locally"@en ; schema:position 7 ; schema:text "M-Pesa processes billions of transactions without smartphones or internet. USSD handles 35% of Nigerian interbank transfers. Study the methods that gained traction despite constraints — they reveal what the market actually needs."@en .

:kgGeneratorSkill a schema:SoftwareApplication ; schema:name "kg-generator skill"@en ; schema:url <https://github.com/anomalyco/opencode/tree/main/kg-generator> ; schema:description "LLM-prompt-based Knowledge Graph generation skill."@en .
