0

アセット URL (ADC 内のテーブルの場所) を使用して、テーブルの説明に注釈を付けることができます。

私が使用しているHTTPリクエストは次のとおりです。

{table_location_url}/descriptions?api-version=2016-03-30

Json オブジェクトは次のとおりです。

    private static string DescriptionJson(string description)
    {
        return string.Format(@"
        {{
            ""properties"" : {{
                ""key"": ""{0}"",
                ""fromSourceSystem"": false,
                ""description"": ""{1}""
            }}
        }}
        ", Guid.NewGuid().ToString("N"), description);
    }

テーブルの説明に注釈が付けられました。

今、列のタグに注釈を付けようとしています。

    Http request:  {table_location_url}/columnTags?api-version=2016-03-30

    static string SampleAnnotationJson(string name)
    {
        return string.Format(@"
        {{
            ""properties"" : {{                    
                ""key"": ""{0}"",
                ""fromSourceSystem"": false,
                ""columnName"": ""on_hold_text_key"",
                ""termId"": ""https://1194df16-3ae0-49aa-b48b-5c4da6e13689-imss-data-catalog.api.datacatalog.azure.com/catalogs/IMSS-Data-Catalog/glossaries/IMSS-Data-Catalog/terms/4b8fe89d-c92a-4aee-abe1-691a2cd52458"",
             }}             
        ", Guid.NewGuid().ToString("N"));
    }

不正なリクエスト エラー (400) が発生しています。

何か不足していますか?

4

1 に答える 1

1

問題は json リクエストにあり、花の括弧が正しく閉じられていません。補正でうまくいきます。

于 2016-12-26T09:56:23.307 に答える