$
curl -s -X GET http://localhost:8080/ords/sodauser/soda/latest/TestCollection1/
| python3 -mjson.tool
{
"items": [
{
"id": "2589D8780F66402287C6344CCEC9E11B",
"etag": "E96BA3AC0D83D4F3322FB94A814ADEB417A1FF3C77A373BED5B75B32510D8D2C",
"lastModified": "2020-08-21T09:04:37.035894000Z",
"created": "2020-08-21T09:04:37.035894000Z",
"links": [
{
"rel": "self",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1/2589D8780F66402287C6344CCEC9E11B"
}
],
"value": {
"employee_number": 7369,
"employee_name": "SMITH",
"department_number": 20
}
},
{
"id": "3AF6A7B2220E4D4AAF7AC01601A7B0E4",
"etag": "E4580B4E249164CDBA95690BDCF573676DE3416BB35F163D23E8399CBDE31FD4",
"lastModified": "2020-08-21T09:04:03.367461000Z",
"created": "2020-08-21T09:04:03.367461000Z",
"links": [
{
"rel": "self",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1/3AF6A7B2220E4D4AAF7AC01601A7B0E4"
}
],
"value": {
"department": {
"department_number": 10,
"department_name": "ACCOUNTING",
"employees": [
{
"employee_number": 7782,
"employee_name": "CLARK"
},
{
"employee_number": 7839,
"employee_name": "KING"
},
{
"employee_number": 7934,
"employee_name": "MILLER"
}
]
},
"metadata": {
"published_date": "04-APR-2016",
"publisher": "oracle-base.com"
}
}
},
{
"id": "3EFD1AC4F0A443F18A61ED065C49FBCF",
"etag": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
"lastModified": "2020-08-21T09:03:39.715866000Z",
"created": "2020-08-21T09:03:39.715866000Z",
"links": [
{
"rel": "self",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1/3EFD1AC4F0A443F18A61ED065C49FBCF"
}
]
},
{
"id": "444B8485D3C2443D8796EFD3F0BBC69D",
"etag": "505C57CA1579BE91DA5C059B2FFC55669FF12B56AB480E164B10109FC76140B7",
"lastModified": "2020-08-21T09:04:37.035894000Z",
"created": "2020-08-21T09:04:37.035894000Z",
"links": [
{
"rel": "self",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1/444B8485D3C2443D8796EFD3F0BBC69D"
}
],
"value": {
"employee_number": 7499,
"employee_name": "ALLEN",
"department_number": 30
}
}
],
"hasMore": false,
"count": 4,
"offset": 0,
"limit": 100,
"totalResults": 4,
"links": [
{
"rel": "query",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1?action=query",
"method": "POST"
},
{
"rel": "bulk-create",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1?action=insert",
"method": "POST"
},
{
"rel": "replace",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1?action=replace",
"method": "POST"
},
{
"rel": "delete-matching",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1?action=delete",
"method": "POST"
},
{
"rel": "patch-matching",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1?action=update",
"method": "POST"
},
{
"rel": "create-index",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1?action=index",
"method": "POST"
},
{
"rel": "delete-index",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1?action=unindex",
"method": "POST"
}
]
}
$
$
curl -s -X GET http://localhost:8080/ords/sodauser/soda/latest/TestCollection1/444B8485D3C2443D8796EFD3F0BBC69D
| python3 -mjson.tool
{
"employee_number": 7499,
"employee_name": "ALLEN",
"department_number": 30
}
$
{ "department.employees.employee_name": "KING" }
$
curl -s -X POST \
--data-binary @filter.json \
-H "Content-Type: application/json" \
http://localhost:8080/ords/sodauser/soda/latest/TestCollection1?action=query
| python3 -mjson.tool
{
"items": [
{
"id": "3AF6A7B2220E4D4AAF7AC01601A7B0E4",
"etag": "E4580B4E249164CDBA95690BDCF573676DE3416BB35F163D23E8399CBDE31FD4",
"lastModified": "2020-08-21T09:04:03.367461000Z",
"created": "2020-08-21T09:04:03.367461000Z",
"links": [
{
"rel": "self",
"href": "http://localhost:8080/ords/sodauser/soda/latest/TestCollection1/3AF6A7B2220E4D4AAF7AC01601A7B0E4"
}
],
"value": {
"department": {
"department_number": 10,
"department_name": "ACCOUNTING",
"employees": [
{
"employee_number": 7782,
"employee_name": "CLARK"
},
{
"employee_number": 7839,
"employee_name": "KING"
},
{
"employee_number": 7934,
"employee_name": "MILLER"
}
]
},
"metadata": {
"published_date": "04-APR-2016",
"publisher": "oracle-base.com"
}
}
}
],
"hasMore": false,
"count": 1
}
$