%TOC% ---++Virtuoso Mapping Ontology for Google: Examples ---+++Sample Curl Example I Executing the curl command: curl -i -L -H "Accept: application/rdf+xml" http://www.openlinksw.com/schemas/external/googlevocab/name shows the following result: HTTP/1.1 303 See Other Server: Virtuoso/05.10.3038 (Linux) i686-generic-linux-glibc23-32 VDB Connection: close Content-Type: text/html; charset=UTF-8 Date: Mon, 18 May 2009 11:36:12 GMT Accept-Ranges: bytes Location: http://www.openlinksw.com/schemas/external/googlevocab/name.xml Content-Length: 0 HTTP/1.1 200 OK Server: Virtuoso/05.10.3038 (Linux) i686-generic-linux-glibc23-32 VDB Connection: Keep-Alive Date: Mon, 18 May 2009 11:36:13 GMT Accept-Ranges: bytes Content-Type: application/rdf+xml; charset=UTF-8 Content-Length: 1762 ---+++Sample Curl Example II Executing the curl command: curl -i -L -H "Accept: text/rdf+n3" http://www.openlinksw.com/schemas/external/googlevocab/name shows the following result: HTTP/1.1 303 See Other Server: Virtuoso/05.10.3038 (Linux) i686-generic-linux-glibc23-32 VDB Connection: close Content-Type: text/html; charset=UTF-8 Date: Mon, 18 May 2009 11:37:43 GMT Accept-Ranges: bytes Location: http://www.openlinksw.com/schemas/external/googlevocab/name.n3 Content-Length: 0 HTTP/1.1 200 OK Server: Virtuoso/05.10.3038 (Linux) i686-generic-linux-glibc23-32 VDB Connection: Keep-Alive Date: Mon, 18 May 2009 11:37:44 GMT Accept-Ranges: bytes Content-Type: text/rdf+n3; charset=UTF-8 Content-Length: 717 @prefix rdf: . @prefix ns1: . ns1:name rdf:type rdf:Property . @prefix rdfs: . @prefix owl: . ns1:name rdfs:domain owl:Thing ; rdfs:range rdfs:Literal ; rdfs:isDefinedBy ns1: . @prefix foaf: . ns1:name rdfs:subPropertyOf foaf:name . @prefix ns5: . ns5:name owl:equivalentProperty ns1:name . @prefix ns6: . ns6:name owl:equivalentProperty ns1:name . @prefix ns7: . ns7:name owl:equivalentProperty ns1:name . ---++Related * [[VirtGoogleVocab][Virtuoso Mapping Ontology for Google]]