# Situation Analysis I recently stumbled upon an Email message from The Information comprising an anlysis of Identity Authenticity products, offers, and prices across key Social-Media service providers. Naturally, I would like to save this information to a Knowledge Graph for future reuse and recall that satisfies the following conditions: 1. Original source is cited 1. Pricing & Offers needs to be pegged to actual service providers i.e., implicit attribution using hyperlinks 1. Machine-computable and easily referenced, courtesy of RDF deployed using Linked Data principles ## How do I achieve that? Here's a CHAT-GPT transcript that offers the solution while also showcasing why it is such a complimentary tool regarding the notion of a Semantic Web. # Transcript Q: Using a code-block for output, generate entity descriptions using RDF-Turtle from the data table that follows, using the following guidelines 1. Use terms from Schema.org 1. Denote subjects and objects using hash-based hyperlinks 1. Use the value from the Home Page column to the @base value for each Product description 1. Place `## Turtle Start ##` and `## Turtle End ##` around the code within the code-block 1. Describe the first three product, product features, and associated offer combinations 1. Derive product features from the Features column 1. Associate each product description with https://www.theinformation.com/articles/how-meta-verified-compares-to-other-social-subscriptions using a schema:relatedLink attribute `## Markdown Start ##` |Home Page|Subscription|Monthly Price (USD)|Launch Month|Launch Year|Features| |---|---|---|---|---|---| |https://about.meta.com/technologies/meta-verified|Meta Verified|11.99|March|2023|Blue Badge, Impersonation Protection, Direct Customer Support| |https://help.twitter.com/en/using-twitter/twitter-blue|Twitter Blue|8.00|November|2022|Blue Verification Badge, Longer Video Uploads, Tweet Editing, Ad Free News Articles| |https://help.snapchat.com/hc/en-us/articles/7121577610900-What-is-Snapchat-|Snapchat+|3.99|June|2022|Longer Story Expiration, Custom Notification Sounds, Camera Color Borders, Access to Content Rewatch Count| |https://www.reddit.com/premium|Reddit Premium|5.99|October|2018|Ad Free, Exclusive Avatar Gear, Member-Exclusive Subreddit, Custom App Icons| |https://discord.com/blog/introducing-discord-nitro-basic|Discord Nitro Basic|2.99|January|2017|Custom Emojis, Larger File Uploads, Exclusive Nitro Badge| |https://www.youtube.com/premium|YouTube Premium|11.99|October|2015|Ad Free and Background Play, Video Downloads, Access to YouTube Music Premium| |https://premium.linkedin.com/|LinkedIn Premium |29.99|August|2005|Private Browsing, Free Direct Messaging, Profile Views, Advanced Search| `## Markdown End ##` A: ```turtle ## Turtle Start ## @prefix schema: . @base . <#Product1> a schema:Product ; schema:name "Meta Verified" ; schema:relatedLink ; schema:launchDate "2023-03"^^schema:Date ; schema:offers <#Offer1> ; schema:additionalProperty <#Feature1>, <#Feature2>, <#Feature3> . <#Offer1> a schema:Offer ; schema:price 11.99 ; schema:priceCurrency "USD" . <#Feature1> a schema:PropertyValue ; schema:name "Blue Badge" . <#Feature2> a schema:PropertyValue ; schema:name "Impersonation Protection" . <#Feature3> a schema:PropertyValue ; schema:name "Direct Customer Support" . @base . <#Product2> a schema:Product ; schema:name "Twitter Blue" ; schema:relatedLink ; schema:launchDate "2022-11"^^schema:Date ; schema:offers <#Offer2> ; schema:additionalProperty <#Feature4>, <#Feature5>, <#Feature6>, <#Feature7> . <#Offer2> a schema:Offer ; schema:price 8.00 ; schema:priceCurrency "USD" . <#Feature4> a schema:PropertyValue ; schema:name "Blue Verification Badge" . <#Feature5> a schema:PropertyValue ; schema:name "Longer Video Uploads" . <#Feature6> a schema:PropertyValue ; schema:name "Tweet Editing" . <#Feature7> a schema:PropertyValue ; schema:name "Ad Free News Articles" . @base . <#Product3> a schema:Product ; schema:name "Snapchat+" ; schema:relatedLink ; schema:launchDate "2022-06"^^schema:Date ; schema:offers <#Offer3> ; schema:additionalProperty <#Feature8>, <#Feature9>, <#Feature10>, <#Feature11> . <#Offer3> a schema:Offer ; schema:price 3.99 ; schema:priceCurrency "USD" . <#Feature8> a schema:PropertyValue ; schema:name "Longer Story Expiration" . <#Feature9> a schema:PropertyValue ; schema:name "Custom Notification Sounds" . <#Feature10> a schema:PropertyValue ; schema:name "Camera Color Borders" . <#Feature11> a schema:PropertyValue ; schema:name "Access to Content Rewatch Count" . ## Turtle End ## ``` Q: Repeat, but for the next three product, product features, and associated offer combinations -- if any. A: ```turtle ## Turtle Start ## @prefix schema: . @base . <#Product4> a schema:Product ; schema:name "Reddit Premium" ; schema:relatedLink ; schema:launchDate "2018-10"^^schema:Date ; schema:offers <#Offer4> ; schema:additionalProperty <#Feature12>, <#Feature13>, <#Feature14>, <#Feature15> . <#Offer4> a schema:Offer ; schema:price 5.99 ; schema:priceCurrency "USD" . <#Feature12> a schema:PropertyValue ; schema:name "Ad Free" . <#Feature13> a schema:PropertyValue ; schema:name "Exclusive Avatar Gear" . <#Feature14> a schema:PropertyValue ; schema:name "Member-Exclusive Subreddit" . <#Feature15> a schema:PropertyValue ; schema:name "Custom App Icons" . @base . <#Product5> a schema:Product ; schema:name "Discord Nitro Basic" ; schema:relatedLink ; schema:launchDate "2017-01"^^schema:Date ; schema:offers <#Offer5> ; schema:additionalProperty <#Feature16>, <#Feature17>, <#Feature18> . <#Offer5> a schema:Offer ; schema:price 2.99 ; schema:priceCurrency "USD" . <#Feature16> a schema:PropertyValue ; schema:name "Custom Emojis" . <#Feature17> a schema:PropertyValue ; schema:name "Larger File Uploads" . <#Feature18> a schema:PropertyValue ; schema:name "Exclusive Nitro Badge" . @base . <#Product6> a schema:Product ; schema:name "YouTube Premium" ; schema:relatedLink ; schema:launchDate "2015-10"^^schema:Date ; schema:offers <#Offer6> ; schema:additionalProperty <#Feature19>, <#Feature20>, <#Feature21> . <#Offer6> a schema:Offer ; schema:price 11.99 ; schema:priceCurrency "USD" . <#Feature19> a schema:PropertyValue ; schema:name "Ad Free and Background Play" . <#Feature20> a schema:PropertyValue ; schema:name "Video Downloads" . <#Feature21> a schema:PropertyValue ; schema:name "Access to YouTube Music Premium" . ## Turtle End ## ```