API endpoint that allows CustomProperties to be viewed or edited.

» click to learn about Filtering, Ordering and more...

Accepted filters:

- id: ID (exact)
- created: Created (exact)
- modified: Modified (exact)
- name: Name starts with (istartswith)
- description: Description contains (icontains)
- query: Search filter on the name property (exact)
- owner: Owner Username (exact)
- owned_by: Filter on list of owned by group names [OR] (exact)
- public: Public (exact)
- type: Type (exact)
- label: Label (exact)
- model_name: Model name (exact)
- mandatory: Mandatory (exact)
- created_by: Created by Username (exact)
- modified_by: Modified by Username (exact)
- model_type: Model type (exact)

Advanced Filtering

You can also filter using a json object to process all search parameters. Currently this filter supports the syntax as produced/used by the http://summitroute.github.io/react-structured-filter/ search UI.

Example

?query_expression={"category":"name","operator":"contains","value":"Y00"},
       {"category":"amount","operator":">","value":"10"},
       {"category":"type__name","operator":"exact","value":"ANTIBODY"}
» more info about the query_expression param..

Preset mappings

- created_by: created_by__username
- modified_by: modified_by__username
- owner: owner__username
- owned_by: owned_by__name
- deleted: <function filter_deleted at 0x7f45063b6710>
- deleted_by: deleted_by__username
- notes: notes__content
- cv_category: cv_category__name
- field_meta: field_meta__name
- mandatory_owned_by: mandatory_owned_by__name
- user: user__username
- credential: credential__name
- workflowversion: workflowversion__name
- workflowrun: workflowrun__name
- dataset: dataset__name

Operators

- ==
- =
- >=
- >
- <=
- <
- contains
- icontains
- exact
- iexact
- startswith
- istartswith
- endswith
- iendswith

Permission filtering

Based on the current logged in user you can filter for objects that have a particular permission set:

- can_change: True/False, show objects that you can change
- can_delete: True/False, show objects that you can delete

# not applicable - will raise NotAcceptable:
- can_view: as this is always True, you can only view items you are allowed to see

Ordering

You can order on practically any field even spanning relations.

# reverse order on owner username
?ordering=-owner

# order on related field
?ordering=category__version
API endpoint that allows CustomProperties to be viewed or edited.

None

The default modelviewset used in this project


Add JSONPatch like functionality to bulk update items.


### Bulk Delete

This view also allows for one to bulk delete items. The url needs to be appended by ``/bulk_delete/`` and the ids
need to be given by multiple query_params:

```
{current_url}/bulk_delete/?id=<id_1>,id=<id_2>
```
GET /api/v2/custompropertytypes/?format=api&ordering=-type
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "previous": null,
    "next": "https://labid-demo.embl.de/api/v2/custompropertytypes/?format=api&ordering=-type&page=2",
    "current": 1,
    "total": 67,
    "total_pages": 4,
    "results": [
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/8f16ca3b-e1b0-4aef-8ea0-3708d33907e3/?format=api",
            "id": "8f16ca3b-e1b0-4aef-8ea0-3708d33907e3",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.243548+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.243644+01:00",
                "category": "property"
            },
            "name": "stocks_slide_surface_type",
            "choice_label": "stocks_slide_surface_type",
            "description": "Surface type of this slide.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Surface Type",
            "help_text": "Surface type of this slide.",
            "default": "unknown",
            "has_default": true,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "446feab3-c3a8-4e51-926f-1b9f22200413",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=446feab3-c3a8-4e51-926f-1b9f22200413&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "SLIDE",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/2d89a7a3-aec7-4964-a6f4-cf67de4cf745/?format=api",
            "id": "2d89a7a3-aec7-4964-a6f4-cf67de4cf745",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.430460+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.430538+01:00",
                "category": "property"
            },
            "name": "stocks_cnidaria_genetic_modification_technique",
            "choice_label": "stocks_cnidaria_genetic_modification_technique",
            "description": "The genetic modification technique for genetically modified organisms (GMO).",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Genetic Modification Technique",
            "help_text": "The genetic modification technique for genetically modified organisms (GMO).",
            "default": "",
            "has_default": false,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "a5ac2c39-5bdd-4877-ab56-884e948ee8ed",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=a5ac2c39-5bdd-4877-ab56-884e948ee8ed&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.specimen",
            "model_type": "CNIDARIA",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/4830a088-66fe-48a2-a744-da6319090e50/?format=api",
            "id": "4830a088-66fe-48a2-a744-da6319090e50",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.229571+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.229659+01:00",
                "category": "property"
            },
            "name": "stocks_slide_application_type",
            "choice_label": "stocks_slide_application_type",
            "description": "Application type of this slide.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Application Type",
            "help_text": "Application type of this slide.",
            "default": "TIRF",
            "has_default": true,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "5b1f6f30-c807-46fd-bbd9-9e47425d4855",
            "mandatory": true,
            "validations": [
                {
                    "name": "required",
                    "arguments": [],
                    "error_message": "This field is mandatory."
                }
            ],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=5b1f6f30-c807-46fd-bbd9-9e47425d4855&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "SLIDE",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/9e9ff510-2498-46dc-bfd0-23cba71ae653/?format=api",
            "id": "9e9ff510-2498-46dc-bfd0-23cba71ae653",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.236489+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.236567+01:00",
                "category": "property"
            },
            "name": "stocks_slide_technology_type",
            "choice_label": "stocks_slide_technology_type",
            "description": "Technology type of this slide.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Technology Type",
            "help_text": "Technology type of this slide.",
            "default": "unknown",
            "has_default": true,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "607f7482-c830-4046-95a4-aba576f57164",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=607f7482-c830-4046-95a4-aba576f57164&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "SLIDE",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/ad4541d4-6850-4f17-afea-e9eaee72e8a2/?format=api",
            "id": "ad4541d4-6850-4f17-afea-e9eaee72e8a2",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.290623+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.290707+01:00",
                "category": "property"
            },
            "name": "stocks_slide_attachment_type",
            "choice_label": "stocks_slide_attachment_type",
            "description": "Attachment type of this slide.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Attachment Type",
            "help_text": "Attachment type of this slide.",
            "default": "unknown",
            "has_default": true,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "52ee2054-bf50-4fda-9601-fd5b9d31c4e3",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=52ee2054-bf50-4fda-9601-fd5b9d31c4e3&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "SLIDE",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/fb7770f3-08b4-453a-98cc-ce04af28f1d2/?format=api",
            "id": "fb7770f3-08b4-453a-98cc-ce04af28f1d2",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.297347+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.297423+01:00",
                "category": "property"
            },
            "name": "stocks_slide_substrate_type",
            "choice_label": "stocks_slide_substrate_type",
            "description": "Substrate type of this slide.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Substrate Type",
            "help_text": "Substrate type of this slide.",
            "default": "unknown",
            "has_default": true,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "4b0009b3-f02b-462c-bc2f-b2a3d6dfa6a0",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=4b0009b3-f02b-462c-bc2f-b2a3d6dfa6a0&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "SLIDE",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/d3ecb94b-cfef-4b15-b6e5-573418f16ef3/?format=api",
            "id": "d3ecb94b-cfef-4b15-b6e5-573418f16ef3",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.198692+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.198771+01:00",
                "category": "property"
            },
            "name": "stocks_oligo_purification",
            "choice_label": "stocks_oligo_purification",
            "description": "Select one.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Purifications",
            "help_text": "Select one.",
            "default": "",
            "has_default": false,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "56fa42df-2ffe-4345-abcd-f61f539d1a50",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "OPTIONAL",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=56fa42df-2ffe-4345-abcd-f61f539d1a50&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "OLIGO",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/b279b0b6-1d45-4aeb-a8f2-b6f98a5021ef/?format=api",
            "id": "b279b0b6-1d45-4aeb-a8f2-b6f98a5021ef",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.205222+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.205300+01:00",
                "category": "property"
            },
            "name": "stocks_oligo_applications",
            "choice_label": "stocks_oligo_applications",
            "description": "Select one or more.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Applications",
            "help_text": "Select one or more.",
            "default": "(q)PCR Primer",
            "has_default": true,
            "multiple": true,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "d65b7ad5-6226-4c72-86fe-b37a93dc5357",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=d65b7ad5-6226-4c72-86fe-b37a93dc5357&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "OLIGO",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/906f9ca1-6081-47e1-9158-3341626d7ce3/?format=api",
            "id": "906f9ca1-6081-47e1-9158-3341626d7ce3",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:22:51.100751+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:22:51.100887+01:00",
                "category": "property"
            },
            "name": "base_material",
            "choice_label": "base_material",
            "description": "",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Base Material",
            "help_text": "",
            "default": "",
            "has_default": false,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "f2e3ee3b-f454-4e35-81c7-357e7524b45e",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=f2e3ee3b-f454-4e35-81c7-357e7524b45e&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "EMGRID",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/2ea838f2-fad7-4d73-b892-7568b4465514/?format=api",
            "id": "2ea838f2-fad7-4d73-b892-7568b4465514",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:22:51.116976+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:22:51.117059+01:00",
                "category": "property"
            },
            "name": "additional_film",
            "choice_label": "additional_film",
            "description": "",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Additional Film",
            "help_text": "",
            "default": "",
            "has_default": false,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "906c09a2-8534-4991-93f0-5037090c2f52",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=906c09a2-8534-4991-93f0-5037090c2f52&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "EMGRID",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/6720a3b0-4a9f-49f6-80c6-2706d80fe2e7/?format=api",
            "id": "6720a3b0-4a9f-49f6-80c6-2706d80fe2e7",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.032032+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.032110+01:00",
                "category": "property"
            },
            "name": "stocks_antibody_application",
            "choice_label": "stocks_antibody_application",
            "description": "Select one.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Application",
            "help_text": "Select one.",
            "default": "",
            "has_default": false,
            "multiple": true,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "1815c000-9c89-4e04-8b19-a0838233c638",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "OPTIONAL",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=1815c000-9c89-4e04-8b19-a0838233c638&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "ANTIBODY",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/bc9017bf-9684-4d6c-afcd-383e5a2c670a/?format=api",
            "id": "bc9017bf-9684-4d6c-afcd-383e5a2c670a",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:22:51.106313+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:22:51.106401+01:00",
                "category": "property"
            },
            "name": "support_film",
            "choice_label": "support_film",
            "description": "",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Support Film",
            "help_text": "",
            "default": "",
            "has_default": false,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "2d488eb0-5d33-4255-9afe-8028114a9996",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=2d488eb0-5d33-4255-9afe-8028114a9996&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "EMGRID",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/d601ae36-0ea1-4492-8c59-5a26836a9a52/?format=api",
            "id": "d601ae36-0ea1-4492-8c59-5a26836a9a52",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.002621+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.002711+01:00",
                "category": "property"
            },
            "name": "stocks_antibody_isotype",
            "choice_label": "stocks_antibody_isotype",
            "description": "Isotype of this Antibody.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Isotype",
            "help_text": "Isotype of this Antibody.",
            "default": "",
            "has_default": false,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "6a7a3dae-1092-4a46-b5dd-809e00aab5ae",
            "mandatory": true,
            "validations": [
                {
                    "name": "required",
                    "arguments": [],
                    "error_message": "This field is mandatory."
                }
            ],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "OPTIONAL",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=6a7a3dae-1092-4a46-b5dd-809e00aab5ae&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "ANTIBODY",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/36b82292-75f3-41db-9643-58167079ce48/?format=api",
            "id": "36b82292-75f3-41db-9643-58167079ce48",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.117723+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.117805+01:00",
                "category": "property"
            },
            "name": "stocks_enzyme_category",
            "choice_label": "stocks_enzyme_category",
            "description": "Category or type of this enzyme.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Category",
            "help_text": "Category or type of this enzyme.",
            "default": "Polymerase",
            "has_default": true,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "66252dc2-7d24-4fb8-8068-083216dda958",
            "mandatory": true,
            "validations": [
                {
                    "name": "required",
                    "arguments": [],
                    "error_message": "This field is mandatory."
                }
            ],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=66252dc2-7d24-4fb8-8068-083216dda958&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "ENZYME",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/3996da29-e4c0-436d-8709-d2361693ab8b/?format=api",
            "id": "3996da29-e4c0-436d-8709-d2361693ab8b",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.009152+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.009230+01:00",
                "category": "property"
            },
            "name": "stocks_antibody_clonality",
            "choice_label": "stocks_antibody_clonality",
            "description": "Select one.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Clonality",
            "help_text": "Select one.",
            "default": "",
            "has_default": false,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "cea444a9-df98-4a6e-b6b8-19c9aeae5544",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=cea444a9-df98-4a6e-b6b8-19c9aeae5544&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "ANTIBODY",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/a672dce3-d5e0-42fa-8d27-02b8e3da4f5f/?format=api",
            "id": "a672dce3-d5e0-42fa-8d27-02b8e3da4f5f",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:22:51.111640+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:22:51.111734+01:00",
                "category": "property"
            },
            "name": "hole_geometry",
            "choice_label": "hole_geometry",
            "description": "",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Hole Geometry",
            "help_text": "",
            "default": "",
            "has_default": false,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "922cedc4-ce3d-4b8f-995b-c8d44cebb82e",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=922cedc4-ce3d-4b8f-995b-c8d44cebb82e&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "EMGRID",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/84ba63ef-c37c-4cf3-9d54-af682948c62d/?format=api",
            "id": "84ba63ef-c37c-4cf3-9d54-af682948c62d",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.015899+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.015977+01:00",
                "category": "property"
            },
            "name": "stocks_antibody_ig_species",
            "choice_label": "stocks_antibody_ig_species",
            "description": "Organism in which the antibody/immunoglobulin was raised.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Ig Organism",
            "help_text": "Organism in which the antibody/immunoglobulin was raised.",
            "default": "Mouse",
            "has_default": true,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "ecb49b95-a517-4019-884f-d9736d9583f4",
            "mandatory": true,
            "validations": [
                {
                    "name": "required",
                    "arguments": [],
                    "error_message": "This field is mandatory."
                }
            ],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "OPTIONAL",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=ecb49b95-a517-4019-884f-d9736d9583f4&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "ANTIBODY",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/0602cca6-fec8-4af5-9c30-77fa44054e8b/?format=api",
            "id": "0602cca6-fec8-4af5-9c30-77fa44054e8b",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.186764+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.186843+01:00",
                "category": "property"
            },
            "name": "stocks_oligo_polymer_type",
            "choice_label": "stocks_oligo_polymer_type",
            "description": "Polymer type, e.g. DNA",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Polymer Type",
            "help_text": "Polymer type, e.g. DNA",
            "default": "DNA",
            "has_default": true,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "45cf38b8-dbd4-4965-8f9c-11b4fcdfbeb1",
            "mandatory": true,
            "validations": [
                {
                    "name": "required",
                    "arguments": [],
                    "error_message": "This field is mandatory."
                }
            ],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "OPTIONAL",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=45cf38b8-dbd4-4965-8f9c-11b4fcdfbeb1&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "OLIGO",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/e031696a-1041-4976-9983-185b91444d42/?format=api",
            "id": "e031696a-1041-4976-9983-185b91444d42",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.020809+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.020888+01:00",
                "category": "property"
            },
            "name": "stocks_antibody_target_species",
            "choice_label": "stocks_antibody_target_species",
            "description": "List of organisms specifically targetted by this antibody/immunoglobulin.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Target Organisms",
            "help_text": "List of organisms specifically targetted by this antibody/immunoglobulin.",
            "default": "",
            "has_default": false,
            "multiple": true,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "ecb49b95-a517-4019-884f-d9736d9583f4",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "OPTIONAL",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=ecb49b95-a517-4019-884f-d9736d9583f4&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.consumable",
            "model_type": "ANTIBODY",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        },
        {
            "url": "https://labid-demo.embl.de/api/v2/custompropertytypes/d2beca02-44bb-46b4-9715-6cc519f19edd/?format=api",
            "id": "d2beca02-44bb-46b4-9715-6cc519f19edd",
            "created_by": "admin",
            "modified_by": "admin",
            "created": {
                "name": "created",
                "value": "2025-12-16T09:31:32.488447+01:00",
                "category": "property"
            },
            "modified": {
                "name": "modified",
                "value": "2025-12-16T09:31:32.488527+01:00",
                "category": "property"
            },
            "name": "stocks_cnidaria_transgenic_material_donor",
            "choice_label": "stocks_cnidaria_transgenic_material_donor",
            "description": "The donor organism of the transgenic material inserted in this specimen.",
            "public": false,
            "permissions": {
                "public": false,
                "actions": {}
            },
            "unit_choices_api": null,
            "type": "VOCABULARYTERM",
            "label": "Transgenic Material Donor",
            "help_text": "The donor organism of the transgenic material inserted in this specimen.",
            "default": "",
            "has_default": false,
            "multiple": false,
            "is_protocol_parameter": false,
            "autocomplete": "",
            "searchable": true,
            "readonly": false,
            "sortable": true,
            "cv_category": "ecb49b95-a517-4019-884f-d9736d9583f4",
            "mandatory": false,
            "validations": [],
            "visibility": "ALWAYS",
            "edit_visibility": "ALWAYS",
            "list_visibility": "ALWAYS",
            "value_choices": null,
            "choices_value": "id",
            "choices_label": "label",
            "choices_api": "https://labid-demo.embl.de/api/v2/vocabularies/terms/?category_id=ecb49b95-a517-4019-884f-d9736d9583f4&fields=id%2Clabel&ordering=name&page_size=20&response_format=flat",
            "preferred_view_widget": "CVVIEW",
            "preferred_edit_widget": "CVEDIT",
            "preferred_list_widget": "CSVTEXT",
            "field_meta": "ad0a3aab-0680-4e2b-b943-987013ba376b",
            "model_name": "stocks.specimen",
            "model_type": "CNIDARIA",
            "owner": "admin",
            "owned_by": "SYSTEM_GROUP"
        }
    ]
}