Implements \Drupal\rdf\SiteSchema\SchemaTermInterface::getUri().
Overrides EntitySchema::getUri
public function getUri() {
$path = str_replace(array(
'{entity_type}',
'{bundle}',
), array(
$this->entityType,
$this->bundle,
), static::$uriPattern);
return $this->siteSchema
->getUri() . '/' . $path;
}