Fields
Gateway prefix: ${API_BASE}/metadata/fields/...
DTO fields (FieldDto)
idstring (returned)entityIdstring, ID of the owning entitynamestring, field nametypestring, field type (for exampleSTRING,INT,DECIMAL,TIMESTAMP)nullableboolean, whether nullabledescriptionstring, description
Paginated query fields by entity ID
- GET
/fields?entityId=...&page=...&pageSize=...
Example:
curl "${API_BASE}/metadata/fields?entityId=en-5001&page=0&pageSize=20"
Get by field ID
- GET
/fields/{id}
Example:
curl -X GET "${API_BASE}/metadata/fields/fd-9001"