# Prompt Describe the event in https://www.eventbrite.com/e/2023-02-25-code-savvys-code-explorers-coderdojotc-tickets-527734868197#this page using RDF-Notation, terms from Schema.org, and use of a relative hash-based hyperlink for subject and object denotation. ## Response ```turtle ## Turtle Start ## <#event> "Code Savvy's Code Explorers: CoderDojoTC" . <#event> "Join us for a fun afternoon of coding! CoderDojoTC is a free club where kids ages 8 to 17 can learn to code with help from mentors." . <#event> "2023-02-25T13:00:00Z" . <#event> "2023-02-25T15:00:00Z" . <#event> <#location> . <#location> "University of Minnesota - Keller Hall" . <#location> "200 Union Street SE Minneapolis MN 55455" . ## Turtle End ## ``` # Prompt 2 Extract the JSON-LD embedded in view-source:https://www.eventbrite.com/e/2023-02-25-code-savvys-code-explorers-coderdojotc-tickets-527734868197#this and present in a code-block. ## Response JSON-LD is a format for structuring data using JSON¹. It is based on the concept of a context that links object properties in a JSON document to concepts in an ontology². JSON-LD is an ideal data format for programming environments, REST Web services, and unstructured databases². The JSON-LD embedded in view-source:https://www.eventbrite.com/e/2023-02-25-code-savvys-code-explorers-coderdojotc-tickets-527734868197#this page is: ```json ``` This JSON-LD uses terms from Schema.org², a vocabulary for structured data on the Web. It also uses relative hash-based hyperlinks for subject and object denotation³, which means that the URI of each resource is derived from the base URI of the document plus a fragment identifier. For example, `"@id":"https://www.eventbrite.com/e/2023-02-25-code-savvys-code-explorers-coderdojotc-tickets-527734868197# Source: Conversation with Bing, 2/25/2023 (1) A Guide to JSON-LD for Beginners - Moz. https://moz.com/blog/json-ld-for-beginners Accessed 2/25/2023. (2) JSON-LD - JSON for Linking Data. https://json-ld.org/ Accessed 2/25/2023. (3) JSON-LD - Wikipedia. https://en.wikipedia.org/wiki/JSON-LD Accessed 2/25/2023. # Prompt Transform the JSON-LD you extracted to RDF-Turtle, using a code-block. ## Response RDF-Turtle is a syntax and file format for expressing data in the RDF data model¹. RDF-Turtle allows an RDF graph to be written in a compact and natural text form, with abbreviations for common usage patterns and datatypes². RDF-Turtle uses semantic triples that comprise a subject, predicate, and object¹. The JSON-LD I extracted can be transformed to RDF-Turtle using a JSON-LD to RDF algorithm³. The result is: ```turtle ## Turtle Start ## @prefix schema: . a schema:Event ; schema:name "Code Savvy's Code Explorers: CoderDojoTC" ; schema:startDate "2023-02-25T13:00:00Z"^^schema:DateTime ; schema:endDate "2023-02-25T15:00:00Z"^^schema:DateTime ; schema:description "Join us for a fun afternoon of coding! CoderDojoTC is a free club where kids ages 8 to 17 can learn to code with help from mentors." ; schema:location . a schema:Place ; schema:name "University of Minnesota - Keller Hall" ; schema:address [ a schema:PostalAddress ; schema:streetAddress "200 Union Street SE" ; schema:addressLocality "Minneapolis" ; schema:addressRegion "MN" ] . ## Turtle End ## ``` I hope this helps. 😊 Source: Conversation with Bing, 2/25/2023(1) Turtle (syntax) - Wikipedia. https://en.wikipedia.org/wiki/Turtle_(syntax) Accessed 2/25/2023. (2) RDF 1.1 Turtle - W3. https://www.w3.org/TR/turtle/ Accessed 2/25/2023. (3) RDF Primer — Turtle version - W3. https://www.w3.org/2007/02/turtle/primer/ Accessed 2/25/2023.