post http://<host>:9100/api/versioned/v1/projects//attributeConfigurations
Create an attribute configuration for a project
This endpoint allows configuration of machine learning details for a unified attribute. It cannot be used to update an already configured attribute. The POST
body must specify the attribute using the attributeName
field. For example, the post body:
{
"attributeName": "myAttribute",
"similarityFunction": "JACCARD",
"enabledForMl": true,
"tokenizer": "DEFAULT"
}
will specify the configuration for myAttribute
. Note that any field not specified will revert to the default.
Response Fields
Returns an attribute configuration object describing the attribute configuration that has been created.