<html>
<head>
  <!-- Schema code seperated from HTML code -->
  <script type="application/ld+json">
  {
    "@context":"https://schema.org",
    "@type": "Person",
    "name": "John Doe",
    "additionalName": "Johnny",
    "jobTitle": "graduate research assistant",
    "affiliation": "University of Dreams",
    "url": "https://www.JohnnyD.com",
    "address": {
      "@type": "PostalAddress",
      "streetAddress": "1234 Peach Drive",
      "addressLocality": "Warner Robins",
      "addressRegion": "Georgia"
    }
  }
  </script>
</head>

<body>
  <!-- HTML code seperated from Schema code, the code looks tidy and less bloated -->
  <section>
    <div>
      Hello, my name is John Doe, I am a graduate research assistant at the University of Dreams. My friends call me Johnny.
      You can visit my homepage at <a href="http://www.JohnnyD.com" >www.JohnnyD.com</a>. 
    </div>
    <div>
      I live at 1234 Peach Drive, Warner Robins, Georgia.
    </div>
  </section>
<body>
</html>