@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
schema:identifier a owl:DatatypeProperty ;
rdfs:label "identifier" ;
rdfs:comment "A GUID" ;
rdfs:range xsd:string .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="https://schema.org/identifier">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:comment>A GUID</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:label>identifier</rdfs:label>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "https://schema.org/identifier",
"@type": [
"http://www.w3.org/2002/07/owl#DatatypeProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "A GUID"
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "identifier"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://www.w3.org/2001/XMLSchema#string"
}
]
}
]<https://schema.org/identifier> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://schema.org/identifier> <http://www.w3.org/2000/01/rdf-schema#comment> "A GUID" .
<https://schema.org/identifier> <http://www.w3.org/2000/01/rdf-schema#label> "identifier" .
<https://schema.org/identifier> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .