curl --location --request POST '/project//model//attributes' \
--header 'Content-Type: application/json' \
--data-raw '{
"attributes": [
{
"name": "Budget",
"type": "number",
"value": "100000"
},
{
"name": "Start Date",
"type": "date",
"value": "2025-06-01"
},
{
"name": "Manager",
"type": "string",
"value": "Alice Johnson"
}
]
}'
{}