Time |
2022-05-20 19:44:47.426051 |
Endpoint |
bd4nrg_test
|
Success |
False |
Endpoint url |
https://httpbin.org/post |
Input format |
xml |
Output format |
turtle |
|
Errors
element decl. '{http://ontology.tno.nl/interconnect/datapoint#}inXSDDateTimeStamp', attribute 'type': The QName value '{http://www.w3.org/2001/XMLSchema}dateTimeStamp' does not resolve to a(n) type definition., line 27
|
Time |
2022-02-26 14:35:53.875648 |
Endpoint |
Example event attendees
|
Success |
True |
Endpoint url |
https://httpbin.org/post |
Input format |
xml |
Output format |
turtle |
|
Response from https://httpbin.org/post
{
"args": {},
"data": "{\"payload\": \"@prefix setu: <http://ontology.setu.nl#> .\\n\\n<http://mapping.the-example-event.org/Bos> a setu:Person;\\n setu:dateOfBirth \\\"1974-04-07\\\";\\n setu:officialLastName \\\"Bos\\\" .\\n\\n<http://mapping.the-example-event.org/Verwaaij> a setu:Person;\\n setu:dateOfBirth \\\"1990-12-03\\\";\\n setu:officialLastName \\\"Verwaaij\\\" .\\n\"}",
"files": {},
"form": {},
"headers": {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Content-Length": "333",
"Content-Type": "application/json",
"Host": "httpbin.org",
"User-Agent": "python-requests/2.24.0",
"X-Amzn-Trace-Id": "Root=1-621a3ac9-012990d53ac536f8411f58b1"
},
"json": {
"payload": "@prefix setu: <http://ontology.setu.nl#> .\n\n<http://mapping.the-example-event.org/Bos> a setu:Person;\n setu:dateOfBirth \"1974-04-07\";\n setu:officialLastName \"Bos\" .\n\n<http://mapping.the-example-event.org/Verwaaij> a setu:Person;\n setu:dateOfBirth \"1990-12-03\";\n setu:officialLastName \"Verwaaij\" .\n"
},
"origin": "34.90.124.163",
"url": "https://httpbin.org/post"
}
|
Request
<?xml version="1.0"?>
<Attendees>
<Attendee>
<Name>Verwaaij</Name>
<Birthdate>1990-12-03</Birthdate>
</Attendee>
<Attendee>
<Name>Bos</Name>
<Birthdate>1974-04-07</Birthdate>
</Attendee>
</Attendees>
|
Transformed into
@prefix setu: <http://ontology.setu.nl#> .
<http://mapping.the-example-event.org/Bos> a setu:Person;
setu:dateOfBirth "1974-04-07";
setu:officialLastName "Bos" .
<http://mapping.the-example-event.org/Verwaaij> a setu:Person;
setu:dateOfBirth "1990-12-03";
setu:officialLastName "Verwaaij" .
|