Get all entity schema definition links
get
/PASService/rest/services/schemas
Gets all schema definition links
Request
There are no request parameters for this operation.
Back to TopResponse
Supported Media Types
- application/json
Default Response
successful operation
Examples
This example describes how to get all schema definition links.
Example cURL Command
Use the following cURL command to submit a request on the REST resource:
curl -X GET -H "Accept: application/json" -u username:password "server:port/PASService/rest/schemas"
Example Response Body
The following shows an example of the response body in JSON format:
"{ "type": "object", "id": "urn:jsonschema:com:oracle:service:model:SchemasResourceModel", "properties": { "addresses": { "refLink": "schemas/addresses" }, "phones": { "refLink": "schemas/phones" }, "groupCustomers": { "refLink": "schemas/groupCustomers" }, "policies": { "refLink": "schemas/policies" }, "segments": { "refLink": "schemas/segments" }, "segmentRoles": { "refLink": "schemas/segmentRoles" }, "roles": { "refLink": "schemas/roles" }, "requirements": { "refLink": "schemas/requirements" }, "cases": { "refLink": "schemas/cases" }, "clients": { "refLink": "schemas/clients" } } }"