構成データ型の取得

get

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

必要なロール: ユーザー

構成データ型を取得します。

リクエスト

パス・パラメータ
先頭に戻る

レスポンス

サポートされるメディア・タイプ

200レスポンス

構成データ型が正常に取得されました。

本文()
ルート・スキーマ: Oracle GoldenGate Configuration Data Type
型: object
タイトル: Oracle GoldenGate Configuration Data Type
使用可能な追加プロパティ: true
ソースの表示
レスポンスの例(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"
    }
}
先頭に戻る