Retrieve Configuration Data Type

get

/services/{version}/config/types/{type}

Retrieve a configuration data type.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Configuration data type retrieved successfully.

Body ()
Root Schema : Oracle GoldenGate Configuration Data Type
Type: object
Title: Oracle GoldenGate Configuration Data Type
Additional Properties Allowed: true
Show Source
  • Allowed Values: [ "http://json-schema.org/draft-04/schema#" ]
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/config/types/custom:config",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/config/types/custom:config",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/type",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"http://json-schema.org/draft-04/schema#",
        "additionalProperties":false,
        "id":"custom:config",
        "properties":{
            "$schema":{
                "enum":[
                    "custom:config"
                ]
            },
            "lines":{
                "items":{
                    "maxLength":4095,
                    "minLength":0,
                    "type":"string"
                },
                "maxItems":32767,
                "minItems":0,
                "type":"array"
            }
        },
        "required":[
            "lines"
        ],
        "title":"Custom Configuration Data",
        "type":"object"
    }
}
Back to Top