Get list of locales for field content analysis

get/fieldContentLocale
Internal-Use Only

Returns a list of all available locale with corresponding language and country that support field content analysis.

Request Samples

1

Response Samples

1{
2 "links": [
3 {
4 "method": "GET",
5 "rel": "collection",
6 "href": "/dataQuality/fieldContentLocale",
7 "uri": "/dataQuality/fieldContentLocale",
8 "type": "application/vnd.sas.collection",
9 "itemType": "application/vnd.sas.data.quality.field.content.locale"
10 },
11 {
12 "method": "GET",
13 "rel": "self",
14 "href": "/dataQuality/fieldContentLocale?sortBy=language&start=0&limit=10",
15 "uri": "/dataQuality/fieldContentLocale?sortBy=language&start=0&limit=10",
16 "type": "application/vnd.sas.collection",
17 "itemType": "application/vnd.sas.data.quality.field.content.locale"
18 },
19 {
20 "method": "GET",
21 "rel": "up",
22 "href": "/dataQuality/",
23 "uri": "/dataQuality/",
24 "type": "application/vnd.sas.api"
25 },
26 {
27 "method": "POST",
28 "rel": "create",
29 "href": "/dataQuality/fieldContentLocale",
30 "uri": "/dataQuality/fieldContentLocale",
31 "type": "application/vnd.sas.data.quality.field.content.locale",
32 "responseType": "application/vnd.sas.data.quality.field.content.locale"
33 }
34 ],
35 "name": "fieldContentLocale",
36 "accept": "application/vnd.sas.data.quality.field.content.locale",
37 "items": [
38 {
39 "version": 1,
40 "locale": "ENUSA",
41 "language": "English",
42 "country": "United States",
43 "isBootstrappedLocale": "Y",
44 "creationTimeStamp": "2022-01-04T18:48:58.737781Z",
45 "modifiedTimeStamp": "2022-01-04T18:48:58.737801Z",
46 "links": [
47 {
48 "method": "GET",
49 "rel": "self",
50 "href": "/dataQuality/fieldContentLocale/ENUSA",
51 "uri": "/dataQuality/fieldContentLocale/ENUSA",
52 "type": "application/vnd.sas.data.quality.field.content.locale"
53 },
54 {
55 "method": "GET",
56 "rel": "up",
57 "href": "/dataQuality/fieldContentLocale",
58 "uri": "/dataQuality/fieldContentLocale",
59 "type": "application/vnd.sas.collection",
60 "itemType": "application/vnd.sas.data.quality.field.content.locale"
61 },
62 {
63 "method": "PUT",
64 "rel": "update",
65 "href": "/dataQuality/fieldContentLocale/ENUSA",
66 "uri": "/dataQuality/fieldContentLocale/ENUSA",
67 "type": "application/vnd.sas.data.quality.field.content.locale",
68 "responseType": "application/vnd.sas.data.quality.field.content.locale"
69 },
70 {
71 "method": "DELETE",
72 "rel": "delete",
73 "href": "/dataQuality/fieldContentLocale/ENUSA",
74 "uri": "/dataQuality/fieldContentLocale/ENUSA"
75 }
76 ]
77 }
78 ],
79 "version": 2
80}

Query Parameters

NameTypeRequiredDescription
filter
string<filter-criteria>
false

Specifies filter criteria for the returned locale. Filtering is supported on the language field. The supported functions are and, or, not, in, eq, lt, le, gt, ge, contains, startsWith, endsWith, and isNull. Some sample queries Filter based on language starting with 'Eng': /dataQuality/fieldContentLocale?filter=startsWith(language, 'Eng') Filter by language: /dataQuality/fieldContentLocale?filter=eq(language, 'English') Filter for multiple languages: /dataQuality/fieldContentLocale?filter=in(language, 'English', 'French', 'German')

limit
integer
false

Specifies the maximum number of locale to return in one page of results. The actual number of returned locale can be less if the collection has been exhausted. Defaults to 10.

sortBy
string<sort-criteria>
false

Specifies sort criteria for the returned field content locale. Sorting is supported on the language field. The default sort order is ascending on the language field. Some sample sorts Sort ascending by language /dataQuality/fieldContentLocale?sortBy=language:ascending Sort descending by language /dataQuality/fieldContentLocale?sortBy=language:descending

start
integer
false

Provides 0-based index of the first locale to return. Defaults to 0.

Responses

StatusMeaningDescription
200OKThe request succeeded. A list of available field content locale is returned.Schema