Get all entity schema definition links

get

/PASService/rest/services/v1/schemas

Gets all schema definition links.

Request

There are no request parameters for this operation.

There's no request body for this operation.

Back to Top

Response

200 Response

This operation fetches all the entity schema definition links successfully.
Back to Top

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 "Content-Type: application/json" \
    -u 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
    -L "http://server:port/PASService/rest/services/v1/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": "schema/addresses"
        },
        "phones": {
            "refLink": "schema/phones"
        },
        "groupCustomers": {
            "refLink": "schema/groupCustomers"
        },
        "policies": {
            "refLink": "schema/policies"
        },
        "segments": {
            "refLink": "schema/segments"
        },
        "segmentRoles": {
            "refLink": "schema/segmentRoles"
        },
        "roles": {
            "refLink": "schema/roles"
        },
        "requirements": {
            "refLink": "schema/requirements"
        },
        "cases": {
            "refLink": "schema/cases"
        },
        "clients": {
            "refLink": "schema/clients"
        },
        "outboundApplications": {
            "refLink": "schema/outboundApplications"
        },
        "outboundSecurities": {
            "refLink": "schema/outboundSecurities"
        }
    }
}
Back to Top