{"id":20950424,"url":"https://github.com/atomgraph/http-in-rdf","last_synced_at":"2025-03-13T05:18:39.319Z","repository":{"id":147849103,"uuid":"194757142","full_name":"AtomGraph/HTTP-in-RDF","owner":"AtomGraph","description":"HTTP-in-RDF processor","archived":false,"fork":false,"pushed_at":"2020-10-13T14:17:42.000Z","size":10,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-19T22:40:57.073Z","etag":null,"topics":["http-client","http-headers","http-in-rdf","linked-data","metadata-extractor","rdf"],"latest_commit_sha":null,"homepage":"https://www.w3.org/TR/HTTP-in-RDF10/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AtomGraph.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-01T23:47:57.000Z","updated_at":"2022-11-26T20:45:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"a6e28d48-bdfa-45e6-b90a-3558d96106e7","html_url":"https://github.com/AtomGraph/HTTP-in-RDF","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtomGraph%2FHTTP-in-RDF","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtomGraph%2FHTTP-in-RDF/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtomGraph%2FHTTP-in-RDF/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtomGraph%2FHTTP-in-RDF/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AtomGraph","download_url":"https://codeload.github.com/AtomGraph/HTTP-in-RDF/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243345878,"owners_count":20275906,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["http-client","http-headers","http-in-rdf","linked-data","metadata-extractor","rdf"],"created_at":"2024-11-19T00:48:29.009Z","updated_at":"2025-03-13T05:18:39.312Z","avatar_url":"https://github.com/AtomGraph.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HTTP-in-RDF\n\nBasic [HTTP Vocabulary in RDF 1.0](https://www.w3.org/TR/HTTP-in-RDF10/) processor.\n\n## Usage\n\n    java -jar http-in-rdf-1.0.0-SNAPSHOT-jar-with-dependencies.jar URI AcceptHeader\n\n## Example\n\nCommand:\n\n    java -jar http-in-rdf-1.0.0-SNAPSHOT-jar-with-dependencies.jar https://atomgraph.com \"text/turtle\"\n\nResult as Turtle:\n\n```turtle\n_:b0    a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Link\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"\u003chttps://atomgraph.com/ns/templates#Root\u003e; rel=type\" .\n\n_:b1    a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Date\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"Tue, 13 Aug 2019 10:00:10 GMT\" .\n\n[ a       \u003chttp://www.w3.org/2011/http#Connection\u003e ;\n  \u003chttp://www.w3.org/2011/http#requests\u003e\n          ( _:b2 )\n] .\n\n_:b3    a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Transfer-Encoding\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"chunked\" .\n\n_:b4    a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Server\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"Apache-Coyote/1.1\" .\n\n_:b5    a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Link\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"\u003chttps://atomgraph.com/\u003e; rel=https://www.w3.org/ns/ldt#base\" .\n\n_:b6    a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Content-Type\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"text/turtle;charset=UTF-8\" .\n\n_:b7    a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Cache-Control\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"max-age=3600, public\" .\n\n_:b8    a       \u003chttp://www.w3.org/2011/http#RequestHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Accept\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"text/turtle\" .\n\n_:b9    a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"ETag\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"\\\"df2baeb2b4986da5\\\"\" .\n\n_:b10   a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Link\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"\u003chttps://atomgraph.com/ns#\u003e; rel=https://www.w3.org/ns/ldt#ontology\" .\n\n_:b2    a       \u003chttp://www.w3.org/2011/http#Request\u003e ;\n        \u003chttp://www.w3.org/2011/http#absolutePath\u003e\n                \"\" ;\n        \u003chttp://www.w3.org/2011/http#headers\u003e\n                ( _:b11 _:b8 ) ;\n        \u003chttp://www.w3.org/2011/http#methodName\u003e\n                \"GET\" ;\n        \u003chttp://www.w3.org/2011/http#mthd\u003e\n                \u003chttp://www.w3.org/2011/http-methods#GET\u003e ;\n        \u003chttp://www.w3.org/2011/http#resp\u003e\n                [ \u003chttp://www.w3.org/2011/http#headers\u003e\n                          ( _:b3 _:b7 _:b12 _:b4 _:b9 _:b13 _:b14 _:b1 _:b5 _:b10 _:b0 _:b6 ) ;\n                  \u003chttp://www.w3.org/2011/http#reasonPhrase\u003e\n                          \"OK\" ;\n                  \u003chttp://www.w3.org/2011/http#statusCodeValue\u003e\n                          \"200\"^^\u003chttp://www.w3.org/2001/XMLSchema#long\u003e\n                ] .\n\n_:b14   a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Expires\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"Thu, 01 Jan 1970 01:00:00 CET\" .\n\n_:b11   a       \u003chttp://www.w3.org/2011/http#RequestHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Host\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"atomgraph.com\" .\n\n_:b12   a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Cache-Control\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"private\" .\n\n_:b13   a       \u003chttp://www.w3.org/2011/http#ResponseHeader\u003e ;\n        \u003chttp://www.w3.org/2011/http#fieldName\u003e\n                \"Vary\" ;\n        \u003chttp://www.w3.org/2011/http#fieldValue\u003e\n                \"Accept-Charset,Accept\" .\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatomgraph%2Fhttp-in-rdf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatomgraph%2Fhttp-in-rdf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatomgraph%2Fhttp-in-rdf/lists"}