What I think I'm looking for is something like this...from link on google that didn't display earlier:
Use a sitemap to indicate alternate language pages
If your site targets users in many languages and, optionally, countries, you can use Sitemaps to provide Google with rel="alternate" hreflang="x". These attributes help Google serve the correct language or regional URL to searchers.
Imagine you have an English language page, targeted at English speakers worldwide. You also have equivalent versions of this page targeted at German speakers worldwide, and German speakers located in Switzerland. Your full set of URLs is:
[ External links are visible to forum administrators only ]
[ External links are visible to forum administrators only ]
[ External links are visible to forum administrators only ]
The following Sitemap tells Google that the [ External links are visible to forum administrators only ] page has equivalent pages targeting worldwide German-speaking users ([ External links are visible to forum administrators only ]) and Switzerland ([ External links are visible to forum administrators only ]).
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="[ External links are visible to forum administrators only ]"
xmlns:xhtml="[ External links are visible to forum administrators only ]">
<url>
<loc>[ External links are visible to forum administrators only ]</loc>
<xhtml:link
rel="alternate"
hreflang="de"
href="[ External links are visible to forum administrators only ]"
/>
<xhtml:link
rel="alternate"
hreflang="de-ch"
href="[ External links are visible to forum administrators only ]"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="[ External links are visible to forum administrators only ]"
/>
</url>
<url>
<loc>[ External links are visible to forum administrators only ]</loc>
<xhtml:link
rel="alternate"
hreflang="en"
href="[ External links are visible to forum administrators only ]"
/>
<xhtml:link
rel="alternate"
hreflang="de-ch"
href="[ External links are visible to forum administrators only ]"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="[ External links are visible to forum administrators only ]"
/>
</url>
<url>
<loc>[ External links are visible to forum administrators only ]</loc>
<xhtml:link
rel="alternate"
hreflang="de"
href="[ External links are visible to forum administrators only ]"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="[ External links are visible to forum administrators only ]"
/>
<xhtml:link
rel="alternate"
hreflang="de-ch"
href="[ External links are visible to forum administrators only ]"
/>
</url>
</urlset>