---
title: "Update Properties"
method: PATCH
path: "/api/v1/ontology/entities/{entity_id}/properties"
tags: ["ontology-entities"]
---

# Update Properties

`PATCH /api/v1/ontology/entities/{entity_id}/properties`

Bulk update property display names, descriptions, and order.

## Path parameters

- `entity_id` string, uuid, required

## Request body

- PropertyBulkUpdate — Input for PATCH /ontology/entities/{id}/properties.
  - `properties` PropertyUpdate[], required
    - `id` string, uuid, required
    - `display_name` string, nullable
    - `description` string, nullable
    - `order` integer, nullable
    - `rules` FieldRules — Declared value rules for one entity field. Empty instance = no rules.
      - `allowed_values` string[], nullable
      - `required` boolean
      - `format` FieldFormat — Type-specific value constraints. All optional; only set what applies.
        - `min` number, nullable
        - `max` number, nullable
        - `regex` string, nullable
        - `max_length` integer, nullable
        - `date_min` string, nullable
        - `date_max` string, nullable
        - `allowed_mime` string[], nullable
        - `max_size_bytes` integer, nullable
    - `file_folder_id` string, uuid, nullable

## Response `200`

Successful Response

- EntityPropertyRead[]
  - `id` string, uuid, required
  - `column_name` string, required
  - `display_name` string, required
  - `description` string, required
  - `data_type` string, required
  - `is_primary_key` boolean, required
  - `order` integer, required
  - `rules` FieldRules — Declared value rules for one entity field. Empty instance = no rules.
    - `allowed_values` string[], nullable
    - `required` boolean
    - `format` FieldFormat — Type-specific value constraints. All optional; only set what applies.
      - `min` number, nullable
      - `max` number, nullable
      - `regex` string, nullable
      - `max_length` integer, nullable
      - `date_min` string, nullable
      - `date_max` string, nullable
      - `allowed_mime` string[], nullable
      - `max_size_bytes` integer, nullable
  - `origin` string
  - `managed_default` unknown
  - `file_folder_id` string, uuid, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/netter/apis/dmi-backend.md) · [All operations](https://skmtc.net/netter/apis/dmi-backend/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/netter/dmi-backend/versions/a59877bf911b/schema)
