> For the complete documentation index, see [llms.txt](https://developer.collibra.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.collibra.com/api/references/external-profiling/profiling.md).

# Profiling

Data profiling operations

## Updates column profiles.

> A value is updated only if the relative property is supplied.\
> In order to delete a value, its property must be set to null in the request.

```json
{"openapi":"3.0.3","info":{"title":"Collibra Catalog External Profiling Upload API","version":"1.0"},"tags":[{"name":"Profiling","description":"Data profiling operations"}],"servers":[{"url":"/rest/catalog/1.0","variables":{}}],"security":[{"basicAuth":[]}],"components":{"securitySchemes":{"basicAuth":{"type":"http","scheme":"basic"}},"schemas":{"DataProfilingRequest":{"type":"object","properties":{"columnProfiles":{"type":"array","items":{"$ref":"#/components/schemas/ColumnProfile"}}}},"ColumnProfile":{"required":["assetIdentifier"],"type":"object","properties":{"assetIdentifier":{"$ref":"#/components/schemas/AssetIdentifier"},"columnName":{"type":"string"},"technicalDataType":{"type":"string"},"dataType":{"type":"string"},"columnPosition":{"type":"integer","format":"int64"},"counts":{"$ref":"#/components/schemas/Counts"},"samples":{"$ref":"#/components/schemas/Samples"},"statistics":{"$ref":"#/components/schemas/Statistics"},"databaseMetadata":{"$ref":"#/components/schemas/DatabaseMetadata"},"categoricalMetadata":{"$ref":"#/components/schemas/CategoricalMetadata"},"quantiles":{"$ref":"#/components/schemas/Quantiles"},"distributions":{"$ref":"#/components/schemas/Distributions"}}},"AssetIdentifier":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"assetName":{"type":"string"},"domainId":{"type":"string","format":"uuid"},"communityName":{"type":"string"},"domainName":{"type":"string"}}},"Counts":{"type":"object","properties":{"rowCount":{"type":"integer","format":"int64"},"emptyValuesCount":{"type":"integer","format":"int64"},"distinctValuesCount":{"type":"integer","format":"int64"},"mode":{"type":"string"}}},"Samples":{"type":"object","properties":{"samples":{"type":"array","items":{"type":"string"}}}},"Statistics":{"type":"object","properties":{"mean":{"type":"number","format":"double"},"variance":{"type":"number","format":"double"},"standardDeviation":{"type":"number","format":"double"},"minimum":{"type":"string"},"maximum":{"type":"string"},"minimumTextLength":{"type":"integer","format":"int64"},"maximumTextLength":{"type":"integer","format":"int64"}}},"DatabaseMetadata":{"type":"object","properties":{"defaultValue":{"type":"string"},"numberOfDecimalDigits":{"type":"integer","format":"int64"},"charOctetLength":{"type":"integer","format":"int64"},"columnSize":{"type":"integer","format":"int64"},"primaryKeyName":{"type":"string"},"isNullable":{"type":"boolean"},"isAutoIncremented":{"type":"boolean"},"isGenerated":{"type":"boolean"},"isPrimaryKey":{"type":"boolean"}}},"CategoricalMetadata":{"type":"object","properties":{"categorical":{"type":"boolean"},"categoriesFrequencies":{"type":"object","additionalProperties":{"type":"integer","format":"int64"}}}},"Quantiles":{"type":"object","properties":{"percentile1":{"type":"string"},"percentile5":{"type":"string"},"decile1":{"type":"string"},"quartile1":{"type":"string"},"median":{"type":"string"},"quartile3":{"type":"string"},"decile9":{"type":"string"},"percentile95":{"type":"string"},"percentile99":{"type":"string"}}},"Distributions":{"type":"object","properties":{"distributionDensityEstimation":{"type":"array","items":{"$ref":"#/components/schemas/Point"}},"histogram":{"type":"array","items":{"$ref":"#/components/schemas/HistogramBin"}}}},"Point":{"type":"object","properties":{"x":{"type":"number","format":"double"},"y":{"type":"number","format":"double"}}},"HistogramBin":{"type":"object","properties":{"lowerBound":{"type":"string"},"upperBound":{"type":"string"},"frequency":{"type":"integer","format":"int64"},"lowerBoundInISODateFormat":{"type":"string"},"upperBoundInISODateFormat":{"type":"string"}}},"DataProfilingResponse":{"type":"object","properties":{"updatedColumnsCount":{"type":"integer","format":"int32"},"errors":{"type":"array","items":{"type":"string"}}}}}},"paths":{"/profiling/columns":{"patch":{"tags":["Profiling"],"summary":"Updates column profiles.","description":"A value is updated only if the relative property is supplied.\nIn order to delete a value, its property must be set to null in the request.","operationId":"updateColumnsProfilingData","requestBody":{"description":"The column profiles to update.\nIf a property is not set it's ignored (not updated)\nIf a property is set to null it's deleted.\n\nA valid assetIdentifer contains one of the following combinations:\n- id\n- assetName, domainId\n- communityName, assetName, domainName\n\nStrings containing numeric value must use `.` as decimal separator.\nNo thousands separator should be used.\nIn scientific notation, an `E` should separate the mantissa from the exponent,\nwith no other extra character.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataProfilingRequest"}}}},"responses":{"200":{"description":"The profile(s) update was successful.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataProfilingResponse"}}}},"422":{"description":"Errors occurred, no column profile was updated.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DataProfilingResponse"}}}}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.collibra.com/api/references/external-profiling/profiling.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
