The title covers my question pretty well. I've looked into the xsd standard, the rdf standard but found no direct answer to my question. I'm trying to understand whether there is a difference in "meaning" between both options:
"https://www.myURI.com"^^xsd:anyURI
- This is a string, but I'm explicitly typing it as a anyURI.
Meaning: This thing is a URI.
<https://www.myURI.com>
- This is a URI, without explicitly typing it, but using <> symbols to do so.
Meaning: This thing is a URI.
So my question: Where is the difference? Is there a difference?
For instance, when validating instance data with SHACL shapes, or querying with SPARQL, can one version or another of this same URI be interpreted differently by either engine?
To compare, I assumed these are also the same and can be used interchangeably (and have done so without queries or SHACL shapes giving strange results in the past):
"1234"^^xsd:integer and 1234
"12.34"^^xsd:decimal and 12.34