## Turtle Start ## # Prompt 1: # Generate a product descrioption table from https://www.amazon.com/Bounty-Quick-Size-Towels-Family-Regular/dp/B07MHJFRBJ/ # Prompt 2: # Generate an RDF rendition of the table using terms from Schema.org and the use of relative hash-based hyperlinks for subject and object denotation. @prefix schema: . <#BountyQuickSizePaperTowels> a schema:Product ; schema:description "2X more absorbent sheets, quick-sized paper towels for household cleaning and messes" ; schema:aggregateRating [ a schema:AggregateRating ; schema:reviewCount "Positive" ; schema:ratingValue "4.5"^^xsd:float ] ; schema:name "Bounty Quick-Size Paper Towels, White, 16 Family Rolls = 40 Regular Rolls" ; schema:offers [ a schema:Offer ; schema:availability schema:InStock ; schema:itemCondition schema:NewCondition ; schema:price "38.84"^^xsd:float ; schema:priceCurrency "USD" ; schema:seller [ a schema:Organization ; schema:name "Amazon.com" ] ] . <#BountyQuickSizePaperTowels> schema:url <#BountyQuickSizePaperTowelsLink> . ## This had to be tweaked re proper quoting of URLs re schema:url relation object. <#BountyQuickSizePaperTowelsLink> a schema:URL ; schema:url . ## Turtle End ##