## Turtle Start ## @prefix rdf: . @prefix schema: . @prefix : <#> . :CivicStructure rdf:type schema:CivicStructure . :CivicStructure schema:address :PostalAddress . :CivicStructure schema:name "AdventHealth Durand" . :CivicStructure schema:url :this . :PostalAddress rdf:type schema:PostalAddress . :PostalAddress schema:addressCountry "USA" . :PostalAddress schema:addressLocality "Durand" . :PostalAddress schema:addressRegion "WI" . :PostalAddress schema:name "Durand Location " . :PostalAddress schema:streetAddress "1220 3rd ave" . :7489 rdf:type schema:SpecialAnnouncement . :7489 schema:announcementLocation :CivicStructure . :7489 schema:category "https://www.wikidata.org/wiki/Q81068910" . :7489 schema:datePosted "2020-04-15T00:00"^^schema:Date . :7489 schema:name "AdventHealth Durand" . :7489 schema:newsUpdatesAndGuidelines :this . :7489 schema:text "If you are experiencing any symptoms (fever, shortness of breath, and or coughing) please register for our drive-in Covid-19 screening." . ## Turtle End ## ## JSON-LD Start ## { "@context": { "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", "schema": "http://schema.org/" }, "@graph": [ { "@id": "#7489", "@type": "schema:SpecialAnnouncement", "schema:announcementLocation": { "@id": "#CivicStructure" }, "schema:category": "https://www.wikidata.org/wiki/Q81068910", "schema:datePosted": { "@type": "schema:Date", "@value": "2020-04-15T00:00" }, "schema:name": "AdventHealth Durand", "schema:newsUpdatesAndGuidelines": { "@id": "#this" }, "schema:text": "If you are experiencing any symptoms (fever, shortness of breath, and or coughing) please register for our drive-in Covid-19 screening." }, { "@id": "#CivicStructure", "@type": "schema:CivicStructure", "schema:address": { "@id": "#PostalAddress" }, "schema:name": "AdventHealth Durand", "schema:url": { "@id": "#this" } }, { "@id": "#PostalAddress", "@type": "schema:PostalAddress", "schema:addressCountry": "USA", "schema:addressLocality": "Durand", "schema:addressRegion": "WI", "schema:name": "Durand Location ", "schema:streetAddress": "1220 3rd ave" } ] } ## JSON-LD End ##