|
| 1 | +[ |
| 2 | + { |
| 3 | + "@id": "person:danlynch", |
| 4 | + "@type": "Person", |
| 5 | + "name": "Dan Lynch", |
| 6 | + "affiliation": { "@id": "org:hyperweb" }, |
| 7 | + "knows": ["person:jane", "person:john"], |
| 8 | + "worksFor": "org:hyperweb", |
| 9 | + |
| 10 | + "jobTitle": "Founder & CEO" |
| 11 | + }, |
| 12 | + { |
| 13 | + "@id": "person:jane", |
| 14 | + "@type": "Person", |
| 15 | + "name": "Jane Doe", |
| 16 | + "knows": { "@id": "person:danlynch" }, |
| 17 | + |
| 18 | + "jobTitle": "Developer" |
| 19 | + }, |
| 20 | + { |
| 21 | + "@id": "person:john", |
| 22 | + "@type": ["Person", "Developer"], |
| 23 | + "name": "John Smith", |
| 24 | + "memberOf": [ |
| 25 | + { "@id": "org:hyperweb" }, |
| 26 | + { "@id": "org:osmosis" } |
| 27 | + ], |
| 28 | + |
| 29 | + "jobTitle": "Senior Developer" |
| 30 | + }, |
| 31 | + { |
| 32 | + "@id": "org:hyperweb", |
| 33 | + "@type": "Organization", |
| 34 | + "name": "HyperWeb", |
| 35 | + "url": "https://hyperweb.com", |
| 36 | + "member": [ |
| 37 | + { "@id": "person:danlynch" }, |
| 38 | + { "@id": "person:john" } |
| 39 | + ], |
| 40 | + "foundingDate": "2020-01-01", |
| 41 | + "location": { "@id": "place:san-francisco" } |
| 42 | + }, |
| 43 | + { |
| 44 | + "@id": "org:osmosis", |
| 45 | + "@type": "Organization", |
| 46 | + "name": "Osmosis", |
| 47 | + "url": "https://osmosis.zone", |
| 48 | + "member": [ |
| 49 | + { "@id": "person:john" } |
| 50 | + ], |
| 51 | + "foundingDate": "2021-06-01" |
| 52 | + }, |
| 53 | + { |
| 54 | + "@id": "event:osmocon-2023-paris", |
| 55 | + "@type": "Event", |
| 56 | + "name": "Osmocon 2023 Paris", |
| 57 | + "organizer": { "@id": "org:osmosis" }, |
| 58 | + "performer": ["person:danlynch", "person:jane"], |
| 59 | + "location": "Paris, France", |
| 60 | + "startDate": "2023-10-15", |
| 61 | + "endDate": "2023-10-17", |
| 62 | + "description": "Annual Osmosis conference in Paris" |
| 63 | + }, |
| 64 | + { |
| 65 | + "@id": "event:cosmjs-roadmap", |
| 66 | + "@type": "Event", |
| 67 | + "name": "CosmJS Roadmap Event", |
| 68 | + "organizer": { "@id": "org:hyperweb" }, |
| 69 | + "performer": ["person:danlynch"], |
| 70 | + "location": "Virtual", |
| 71 | + "startDate": "2024-01-15", |
| 72 | + "description": "CosmJS development roadmap presentation" |
| 73 | + }, |
| 74 | + { |
| 75 | + "@id": "event:cosmoverse-2024", |
| 76 | + "@type": "Event", |
| 77 | + "name": "Cosmoverse 2024", |
| 78 | + "organizer": { "@id": "org:osmosis" }, |
| 79 | + "performer": ["person:danlynch", "person:jane"], |
| 80 | + "location": "Dubai, UAE", |
| 81 | + "startDate": "2024-09-15", |
| 82 | + "endDate": "2024-09-17", |
| 83 | + "description": "Major Cosmos ecosystem conference" |
| 84 | + }, |
| 85 | + { |
| 86 | + "@id": "article:web3-future", |
| 87 | + "@type": "Article", |
| 88 | + "headline": "The Future of Web3", |
| 89 | + "author": { "@id": "person:danlynch" }, |
| 90 | + "mentions": [ |
| 91 | + { "@id": "org:hyperweb" }, |
| 92 | + { "@id": "event:cosmoverse-2024" } |
| 93 | + ], |
| 94 | + "datePublished": "2024-01-01", |
| 95 | + "description": "An article about the future of Web3 technology" |
| 96 | + }, |
| 97 | + { |
| 98 | + "@id": "image:cosmjs-roadmap-announcement", |
| 99 | + "@type": "ImageObject", |
| 100 | + "name": "CosmJS Roadmap Announcement", |
| 101 | + "contentUrl": "https://example.com/cosmjs-roadmap.jpg", |
| 102 | + "description": "Image announcing the CosmJS roadmap event", |
| 103 | + "about": { "@id": "event:cosmjs-roadmap" }, |
| 104 | + "creator": { "@id": "person:danlynch" } |
| 105 | + }, |
| 106 | + { |
| 107 | + "@id": "place:san-francisco", |
| 108 | + "@type": "Place", |
| 109 | + "name": "San Francisco", |
| 110 | + "address": { |
| 111 | + "@type": "PostalAddress", |
| 112 | + "addressLocality": "San Francisco", |
| 113 | + "addressRegion": "CA", |
| 114 | + "addressCountry": "US" |
| 115 | + }, |
| 116 | + "geo": { |
| 117 | + "@type": "GeoCoordinates", |
| 118 | + "latitude": 37.7749, |
| 119 | + "longitude": -122.4194 |
| 120 | + } |
| 121 | + }, |
| 122 | + { |
| 123 | + "@id": "product:cosmos-sdk", |
| 124 | + "@type": "SoftwareApplication", |
| 125 | + "name": "Cosmos SDK", |
| 126 | + "description": "Framework for building blockchain applications", |
| 127 | + "applicationCategory": "Blockchain Framework", |
| 128 | + "operatingSystem": "Cross-platform", |
| 129 | + "programmingLanguage": "Go", |
| 130 | + "maintainer": { "@id": "org:osmosis" } |
| 131 | + }, |
| 132 | + { |
| 133 | + "@id": "course:blockchain-101", |
| 134 | + "@type": "Course", |
| 135 | + "name": "Blockchain 101", |
| 136 | + "description": "Introduction to blockchain technology", |
| 137 | + "provider": { "@id": "org:hyperweb" }, |
| 138 | + "instructor": { "@id": "person:danlynch" }, |
| 139 | + "coursePrerequisites": "Basic programming knowledge", |
| 140 | + "timeRequired": "P4W" |
| 141 | + }, |
| 142 | + { |
| 143 | + "@id": "review:cosmos-sdk-review", |
| 144 | + "@type": "Review", |
| 145 | + "reviewBody": "Excellent framework for blockchain development", |
| 146 | + "reviewRating": { |
| 147 | + "@type": "Rating", |
| 148 | + "ratingValue": 5, |
| 149 | + "bestRating": 5 |
| 150 | + }, |
| 151 | + "author": { "@id": "person:jane" }, |
| 152 | + "itemReviewed": { "@id": "product:cosmos-sdk" } |
| 153 | + }, |
| 154 | + { |
| 155 | + "@id": "project:interchain-ui", |
| 156 | + "@type": "CreativeWork", |
| 157 | + "name": "Interchain UI", |
| 158 | + "description": "UI components for Cosmos ecosystem", |
| 159 | + "creator": { "@id": "org:hyperweb" }, |
| 160 | + "contributor": [ |
| 161 | + { "@id": "person:danlynch" }, |
| 162 | + { "@id": "person:john" } |
| 163 | + ], |
| 164 | + "license": "MIT", |
| 165 | + "programmingLanguage": "TypeScript" |
| 166 | + } |
| 167 | +] |
0 commit comments