Skip to content

Instantly share code, notes, and snippets.

@patrickcoombe
Created July 4, 2025 16:59
Show Gist options
  • Select an option

  • Save patrickcoombe/a746a483b6001dc63dc48bdf5909c97d to your computer and use it in GitHub Desktop.

Select an option

Save patrickcoombe/a746a483b6001dc63dc48bdf5909c97d to your computer and use it in GitHub Desktop.

Revisions

  1. patrickcoombe created this gist Jul 4, 2025.
    37 changes: 37 additions & 0 deletions sports-team.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,37 @@
    {
    "@context": "https://schema.org",
    "@type": "SportsTeam",
    "name": "Springfield Falcons",
    "sport": "Soccer",
    "memberOf": {
    "@type": "SportsAssociation",
    "name": "Springfield Soccer League"
    },
    "coach": {
    "@type": "Person",
    "name": "Alex Jordan"
    },
    "athlete": [
    {
    "@type": "Person",
    "name": "Chris Lee"
    },
    {
    "@type": "Person",
    "name": "Taylor Smith"
    }
    ],
    "homeLocation": {
    "@type": "Place",
    "name": "Falcon Stadium",
    "address": {
    "@type": "PostalAddress",
    "streetAddress": "100 Stadium Drive",
    "addressLocality": "Springfield",
    "addressRegion": "IL",
    "postalCode": "62701",
    "addressCountry": "US"
    }
    },
    "url": "https://www.springfieldfalcons.com"
    }