{"openapi":"3.0.0","paths":{"/v2/work-orders":{"get":{"description":"Returns a paginated list of Work Orders. Supports filtering and sorting via query parameters.","operationId":"/v2/work-orders_get","parameters":[{"name":"page","required":false,"in":"query","description":"Page number.","schema":{"type":"number"}},{"name":"limit","required":false,"in":"query","description":"Define how many items will be received in the payload per request.(default 20 items, max 1000 items)","schema":{"type":"number"}},{"name":"relatedOrganizationNumber","required":false,"in":"query","description":"Filter by specifying a related organization number.","schema":{"type":"string"}},{"name":"parentWorkOrderExternalReference","required":false,"in":"query","description":"Filter by specifying the parent work order external reference (ERP Reference). Provide either this or the parentWorkOrderId.","schema":{"type":"string"}},{"name":"parentWorkOrderId","required":false,"in":"query","description":"Filter by specifying the parent work order internal ID. Provide either this or the parentWorkOrderExternalReference","schema":{"type":"string"}},{"name":"statusReference","required":false,"in":"query","description":"Filter by the status reference of the work order.","schema":{"type":"string"}},{"name":"typeReference","required":false,"in":"query","description":"Filter by the type reference of the work order.","schema":{"type":"string"}},{"name":"statusCompleted","required":false,"in":"query","description":"Filter by the completed state of the work order.","schema":{"type":"boolean"}},{"name":"updatedAtFrom","required":false,"in":"query","description":"Filter by updatedAt date FROM the provided value as an ISO UTC string. Inclusive.","schema":{"format":"date-time","example":"2023-12-10T10:00:00.000Z","type":"string"}},{"name":"updatedAtUntil","required":false,"in":"query","description":"Filter by a updatedAt date UNTIL the provided value as an ISO UTC string. Inclusive.","schema":{"format":"date-time","example":"2023-12-10T10:00:00.000Z","type":"string"}},{"name":"createdAtFrom","required":false,"in":"query","description":"Filter by createdAt date FROM the provided value as an ISO UTC string. Inclusive.","schema":{"format":"date-time","example":"2023-12-10T10:00:00.000Z","type":"string"}},{"name":"createdAtUntil","required":false,"in":"query","description":"Filter by a createdAt date UNTIL the provided value as an ISO UTC string. Inclusive.","schema":{"format":"date-time","example":"2023-12-10T10:00:00.000Z","type":"string"}},{"name":"dueDateFrom","required":false,"in":"query","description":"Filter by dueDate FROM the provided value as an ISO UTC string. Inclusive.","schema":{"format":"date-time","example":"2023-12-10T10:00:00.000Z","type":"string"}},{"name":"dueDateUntil","required":false,"in":"query","description":"Filter by a dueDate UNTIL the provided value as an ISO UTC string. Inclusive.","schema":{"format":"date-time","example":"2023-12-10T10:00:00.000Z","type":"string"}}],"responses":{"200":{"description":"List of Work Orders objects","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrdersCfaFindManyResponseDto"}}}},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"}},"security":[{"authorization":[]}],"summary":"Get a list of Work Orders","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"},"post":{"description":"Creates a new Work Order with the provided properties and returns its ID.","operationId":"/v2/work-orders_post","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaCreateOneBodyDto"}}}},"responses":{"201":{"description":"Resource created","content":{"application/json":{"schema":{"type":"string"}}}},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"}},"security":[{"authorization":[]}],"summary":"Create a new WorkOrder","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/{id}":{"get":{"description":"Returns a single Work Order identified by its internal ID, including all its properties and optional populated references.","operationId":"/v2/work-orders/{id}_get","parameters":[{"name":"id","required":true,"in":"path","description":"The Work Order's internal ID","schema":{"type":"string"}},{"name":"associations","required":false,"in":"query","description":"Define which associations should be included in the response.","schema":{"type":"array","items":{"type":"string","enum":["relatedOrganization","relatedAssets","customProperties"]}}}],"responses":{"200":{"description":"Work Order retrieved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaResponseDto"}}}},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}},"security":[{"authorization":[]}],"summary":"Get a Work Order by its internal ID","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"},"patch":{"description":"Partially updates an existing Work Order identified by its internal ID. Only the fields provided in the request body will be modified.","operationId":"/v2/work-orders/{id}_patch","parameters":[{"name":"id","required":true,"in":"path","description":"The internal ID of the work order","schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaUpdateOneBodyDto"}}}},"responses":{"204":{"description":"Resource updated","content":{"application/json":{"schema":{"type":"string"}}}},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}},"security":[{"authorization":[]}],"summary":"Update a Work Order by its internal ID","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"},"delete":{"description":"Permanently deletes an existing Work Order identified by its internal ID. This action cannot be undone.","operationId":"/v2/work-orders/{id}_delete","parameters":[{"name":"id","required":true,"in":"path","description":"The Work Order's internal ID","schema":{"type":"string"}}],"responses":{"204":{"description":"Work Order deleted"},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"409":{"description":"More than one Work Order with the same external reference (ERP reference) was found"}},"security":[{"authorization":[]}],"summary":"Delete an Work Order by its internal ID","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/erp/{externalReference}":{"get":{"description":"Returns a single Work Order identified by its external reference (ERP reference), including all its properties and optional populated references. Returns 409 if multiple Work Orders share the same external reference.","operationId":"/v2/work-orders/erp/{externalReference}_get","parameters":[{"name":"externalReference","required":true,"in":"path","description":"The Work Order's external reference (ERP reference). Must be URL encoded.","schema":{"example":"\"#ext ref\" should be queried as \"%23ext%20ref\"","type":"string"}},{"name":"associations","required":false,"in":"query","description":"Define which associations should be included in the response.","schema":{"type":"array","items":{"type":"string","enum":["relatedOrganization","relatedAssets","customProperties"]}}}],"responses":{"200":{"description":"Work Order retrieved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaResponseDto"}}}},"403":{"description":"Forbidden"},"404":{"description":"Not Found"},"409":{"description":"More than one Work Order with the same external reference (ERP reference) was found"}},"security":[{"authorization":[]}],"summary":"Get a Work Order by its external reference (ERP Reference)","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"},"patch":{"description":"Partially updates an existing Work Order identified by its external reference (ERP reference). Only the fields provided in the request body will be modified. Returns 409 if multiple Work Orders share the same external reference.","operationId":"/v2/work-orders/erp/{externalReference}_patch","parameters":[{"name":"externalReference","required":true,"in":"path","description":"The Work Order's external reference (ERP reference). Must be URL encoded.","schema":{"example":"\"#ext ref\" should be queried as \"%23ext%20ref\"","type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaUpdateOneBodyDto"}}}},"responses":{"204":{"description":"Resource updated","content":{"application/json":{"schema":{"type":"string"}}}},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"},"409":{"description":"Conflict (e.g., invalid updates or duplicate references)"}},"security":[{"authorization":[]}],"summary":"Update a Work Order by its external reference (ERP reference)","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"},"delete":{"description":"Permanently deletes an existing Work Order identified by its external reference (ERP reference). Returns 409 if multiple Work Orders share the same external reference. This action cannot be undone.","operationId":"/v2/work-orders/erp/{externalReference}_delete","parameters":[{"name":"externalReference","required":true,"in":"path","description":"The Work Order's external reference (ERP reference). Must be URL encoded.","schema":{"example":"\"#ext ref\" should be queried as \"%23ext%20ref\"","type":"string"}}],"responses":{"204":{"description":"Work Order deleted"},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"409":{"description":"More than one Work Order with the same external reference (ERP reference) was found"}},"security":[{"authorization":[]}],"summary":"Delete an Work Order by its external reference (ERP reference)","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/{id}/checklist":{"post":{"description":"Adds one or more checklist items to an existing Work Order identified by its internal ID.","operationId":"/v2/work-orders/{id}/checklist_post","parameters":[{"name":"id","required":true,"in":"path","description":"The internal ID of the work order","schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaCreateManyChecklistItemsBodyDto"}}}},"responses":{"201":{"description":"Resources created","content":{"application/json":{"schema":{"type":"string"}}}},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}},"security":[{"authorization":[]}],"summary":"Add checklist items to a Work Order by its internal ID","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/erp/{externalReference}/checklist":{"post":{"description":"Adds one or more checklist items to an existing Work Order identified by its external reference (ERP reference). Returns 409 if multiple Work Orders share the same external reference.","operationId":"/v2/work-orders/erp/{externalReference}/checklist_post","parameters":[{"name":"externalReference","required":true,"in":"path","description":"The Work Order's external reference (ERP reference). Must be URL encoded.","schema":{"example":"\"#ext ref\" should be queried as \"%23ext%20ref\"","type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaCreateManyChecklistItemsBodyDto"}}}},"responses":{"201":{"description":"Resources created","content":{"application/json":{"schema":{"type":"string"}}}},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}},"security":[{"authorization":[]}],"summary":"Add checklist items to a Work Order by its external Reference (ERP reference)","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/{id}/times":{"get":{"description":"Returns the time entries associated with a Work Order identified by its internal ID.","operationId":"/v2/work-orders/{id}/times_get","parameters":[{"name":"id","required":true,"in":"path","description":"The internal ID of the work order","schema":{"type":"string"}}],"responses":{"200":{"description":"Work Order times retrieved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderTimesCfaResponseDto"}}}},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}},"security":[{"authorization":[]}],"summary":"Get time entries for a Work Order","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/{id}/stock-changes":{"get":{"description":"Returns a paginated list of part stock changes associated with a Work Order identified by its internal ID.","operationId":"/v2/work-orders/{id}/stock-changes_get","parameters":[{"name":"id","required":true,"in":"path","description":"The internal ID of the work order","schema":{"type":"string"}},{"name":"page","required":false,"in":"query","description":"Page number","schema":{"default":0,"type":"number"}},{"name":"limit","required":false,"in":"query","description":"Number of items per page (default 20, max 1000)","schema":{"default":20,"type":"number"}}],"responses":{"200":{"description":"Stock changes retrieved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrdersCfaPartStockChangesFindManyResponseDto"}}}},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}},"security":[{"authorization":[]}],"summary":"Get stock changes for a Work Order by its internal ID","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"},"post":{"description":"Creates a new part stock change entry (e.g. planned, reserved, or taken) for the Work Order identified by its internal ID.","operationId":"/v2/work-orders/{id}/stock-changes_post","parameters":[{"name":"id","required":true,"in":"path","description":"The Work Order's internal ID","schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrdersCfaPartStockChangeCreateOneBodyDto"}}}},"responses":{"201":{"description":"Stock change created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrdersCfaPartStockChangeCreateOneResponseDto"}}}},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"}},"security":[{"authorization":[]}],"summary":"Create a PartStockChange for a Work Order by its internal ID","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/erp/{externalReference}/stock-changes":{"get":{"description":"Returns a paginated list of part stock changes associated with a Work Order identified by its external reference (ERP reference). Returns 409 if multiple Work Orders share the same external reference.","operationId":"/v2/work-orders/erp/{externalReference}/stock-changes_get","parameters":[{"name":"externalReference","required":true,"in":"path","description":"The Work Order's external reference (ERP reference). Must be URL encoded.","schema":{"example":"\"#ext ref\" should be queried as \"%23ext%20ref\"","type":"string"}},{"name":"page","required":false,"in":"query","description":"Page number","schema":{"default":0,"type":"number"}},{"name":"limit","required":false,"in":"query","description":"Number of items per page (default 20, max 1000)","schema":{"default":20,"type":"number"}}],"responses":{"200":{"description":"Stock changes retrieved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrdersCfaPartStockChangesFindManyResponseDto"}}}},"403":{"description":"Forbidden"},"404":{"description":"Not Found"},"409":{"description":"More than one Work Order with the same external reference (ERP reference) was found"}},"security":[{"authorization":[]}],"summary":"Get stock changes for a Work Order by its external reference (ERP Reference)","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"},"post":{"description":"Creates a new part stock change entry (e.g. planned, reserved, or taken) for the Work Order identified by its external reference (ERP reference). Returns 409 if multiple Work Orders share the same external reference.","operationId":"/v2/work-orders/erp/{externalReference}/stock-changes_post","parameters":[{"name":"externalReference","required":true,"in":"path","description":"The Work Order's external reference (ERP reference). Must be URL encoded.","schema":{"example":"\"#ext ref\" should be queried as \"%23ext%20ref\"","type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrdersCfaPartStockChangeCreateOneBodyDto"}}}},"responses":{"201":{"description":"Stock change created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrdersCfaPartStockChangeCreateOneResponseDto"}}}},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"},"409":{"description":"More than one Work Order with the same external reference (ERP reference) was found"}},"security":[{"authorization":[]}],"summary":"Create a PartStockChange for a Work Order by its external reference (ERP Reference)","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/{id}/procedures":{"post":{"description":"Adds a Procedure Template as a new procedure instance to an existing Work Order identified by its internal ID. Per-type procedure limits are enforced by the Work Order. Returns the id of the created procedure instance.","operationId":"/v2/work-orders/{id}/procedures_post","parameters":[{"name":"id","required":true,"in":"path","description":"The Work Order's internal ID","schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaAddProcedureBodyDto"}}}},"responses":{"201":{"description":"Procedure added","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaAddProcedureResponseDto"}}}},"400":{"description":"Bad Request (malformed id, or per-type procedure limit reached)"},"403":{"description":"Forbidden"},"404":{"description":"Not Found (missing Work Order or Procedure Template)"}},"security":[{"authorization":[]}],"summary":"Add a procedure to a Work Order by its internal ID","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/erp/{externalReference}/procedures":{"post":{"description":"Adds a Procedure Template as a new procedure instance to an existing Work Order identified by its external reference (ERP reference). Per-type procedure limits are enforced by the Work Order. Returns 409 if multiple Work Orders share the same external reference.","operationId":"/v2/work-orders/erp/{externalReference}/procedures_post","parameters":[{"name":"externalReference","required":true,"in":"path","description":"The Work Order's external reference (ERP reference). Must be URL encoded.","schema":{"example":"\"#ext ref\" should be queried as \"%23ext%20ref\"","type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaAddProcedureBodyDto"}}}},"responses":{"201":{"description":"Procedure added","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkOrderCfaAddProcedureResponseDto"}}}},"400":{"description":"Bad Request (malformed id, or per-type procedure limit reached)"},"403":{"description":"Forbidden"},"404":{"description":"Not Found (missing Work Order or Procedure Template)"},"409":{"description":"More than one Work Order with the same external reference (ERP reference) was found"}},"security":[{"authorization":[]}],"summary":"Add a procedure to a Work Order by its external reference (ERP reference)","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/{id}/procedures/{procedureInstanceId}":{"delete":{"description":"Removes a procedure instance from an existing Work Order identified by its internal ID. Idempotent: returns 204 even if the procedure instance is not attached to the Work Order.","operationId":"/v2/work-orders/{id}/procedures/{procedureInstanceId}_delete","parameters":[{"name":"id","required":true,"in":"path","description":"The Work Order's internal ID","schema":{"type":"string"}},{"name":"procedureInstanceId","required":true,"in":"path","description":"The internal ID of the procedure instance to remove","schema":{"type":"string"}}],"responses":{"204":{"description":"Procedure removed"},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"404":{"description":"Not Found (missing Work Order)"}},"security":[{"authorization":[]}],"summary":"Remove a procedure from a Work Order by its internal ID","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}},"/v2/work-orders/erp/{externalReference}/procedures/{procedureInstanceId}":{"delete":{"description":"Removes a procedure instance from an existing Work Order identified by its external reference (ERP reference). Idempotent: returns 204 even if the procedure instance is not attached to the Work Order. Returns 409 if multiple Work Orders share the same external reference.","operationId":"/v2/work-orders/erp/{externalReference}/procedures/{procedureInstanceId}_delete","parameters":[{"name":"externalReference","required":true,"in":"path","description":"The Work Order's external reference (ERP reference). Must be URL encoded.","schema":{"example":"\"#ext ref\" should be queried as \"%23ext%20ref\"","type":"string"}},{"name":"procedureInstanceId","required":true,"in":"path","description":"The internal ID of the procedure instance to remove","schema":{"type":"string"}}],"responses":{"204":{"description":"Procedure removed"},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"404":{"description":"Not Found (missing Work Order)"},"409":{"description":"More than one Work Order with the same external reference (ERP reference) was found"}},"security":[{"authorization":[]}],"summary":"Remove a procedure from a Work Order by its external reference (ERP reference)","tags":["work-orders"],"x-controller-class":"WorkOrdersCfaController"}}},"info":{"title":"Work Orders","description":"The remberg work order API description","version":"v2","contact":{}},"tags":[],"servers":[{"url":"https://api.remberg.de"}],"components":{"securitySchemes":{"authorization":{"type":"apiKey","in":"header","name":"authorization"}},"schemas":{"WorkOrderListItemCfaResponseDto":{"type":"object","properties":{"id":{"type":"string","description":"The work order's internal ID"},"createdAt":{"type":"string","format":"date-time","description":"The work order's creation date"},"createdByType":{"type":"string","enum":["user","apiKey","system","maintenancePlan","userViaWorkRequest","other"],"description":"Indicates how the work order was created","example":"userViaWorkRequest"},"updatedAt":{"type":"string","format":"date-time","description":"The work order's date of the last update as an ISO UTC string","example":"2025-01-15T10:00:00.000Z"},"counter":{"type":"string","description":"The work order's counter"},"subject":{"type":"string","description":"The work order's subject"},"parentWorkOrderId":{"type":"string","description":"The work order's parent work order internal ID"},"relatedOrganizationId":{"type":"string","description":"The work order's related organization internal ID"},"externalReference":{"type":"string","description":"The work order's external reference (ERP Reference)"},"statusReference":{"type":"string","description":"The work order's status reference"},"typeReference":{"type":"string","description":"The work order's type reference"},"dueDate":{"type":"object","description":"The work order's due date"}},"required":["id","createdAt","createdByType","updatedAt","counter","subject","statusReference"]},"WorkOrdersCfaFindManyResponseDto":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/WorkOrderListItemCfaResponseDto"}}},"required":["data"]},"ContactInfoCfaResponseDto":{"type":"object","properties":{"id":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"email":{"type":"string"}},"required":["id"]},"AddressCfaResponseDto":{"type":"object","properties":{"company":{"type":"string","description":"The name of the company or organization associated with the address."},"street":{"type":"string","description":"The name of the street for the address."},"streetNumber":{"type":"string","description":"The specific number or identifier for the location on the street."},"zipPostCode":{"type":"string","description":"The postal or ZIP code for the address."},"city":{"type":"string","description":"The name of the city where the address is located."},"countryProvince":{"type":"string","description":"The province or state within the country of the address."},"country":{"type":"string","description":"The name of the country for the address."},"other":{"type":"string","description":"Additional details or descriptions related to the address."}}},"OrganizationInfoCfaResponseDto":{"type":"object","properties":{"id":{"type":"string"},"organizationName":{"type":"string"},"organizationNumber":{"type":"string"}},"required":["id","organizationName"]},"AssetInfoCfaResponseDto":{"type":"object","properties":{"id":{"type":"string"},"assetNumber":{"type":"string"},"assetType":{"type":"string"}},"required":["id","assetNumber","assetType"]},"CustomPropertyValueCfaResponseDto":{"type":"object","properties":{"reference":{"type":"string","description":"The reference of the custom property the value is assigned to"},"value":{"type":"object","description":"The value of the custom property"},"associationValue":{"description":"The populated related object value if \"customProperties\" is present in \"associations\" query","type":"array","items":{"oneOf":[{"$ref":"#/components/schemas/AssetInfoCfaResponseDto"},{"$ref":"#/components/schemas/ContactInfoCfaResponseDto"},{"$ref":"#/components/schemas/OrganizationInfoCfaResponseDto"}]}}},"required":["reference","value"]},"WorkOrderProcedureValueCfaResponseDto":{"type":"object","properties":{"instanceId":{"type":"string","description":"The procedure's instance ID"},"templateId":{"type":"string","description":"The procedure's template ID"},"type":{"type":"string","enum":["safetyCheck","maintenance","validation"],"description":"The procedure's type"},"status":{"type":"string","enum":["open","inProgress","completed"],"description":"The procedure's status"},"totalFields":{"type":"number","description":"The procedure's total number of fields"},"completedFields":{"type":"number","description":"The procedure's number of completed fields"},"failedFields":{"type":"number","description":"The procedure's number of failed fields"}},"required":["instanceId","type","status","totalFields","completedFields","failedFields"]},"WorkOrderCfaResponseDto":{"type":"object","properties":{"id":{"type":"string","description":"The work order's internal ID"},"createdAt":{"type":"string","format":"date-time","description":"The work order's creation date"},"updatedAt":{"type":"string","format":"date-time","description":"The work order's date of the last update as an ISO UTC string","example":"2025-01-15T10:00:00.000Z"},"counter":{"type":"string","description":"The work order's counter"},"createdByType":{"type":"string","enum":["user","apiKey","system","maintenancePlan","userViaWorkRequest","other"],"description":"Indicates how the work order was created","example":"userViaWorkRequest"},"subject":{"type":"string","description":"The work order's subject"},"description":{"type":"string","description":"The work order's description"},"startDate":{"type":"string","format":"date-time","description":"The work order's planning start date as an ISO UTC string","example":"2025-01-15T10:00:00.000Z"},"endDate":{"type":"string","format":"date-time","description":"The work order's planning end date as an ISO UTC string","example":"2025-01-15T10:00:00.000Z"},"dueDate":{"type":"string","format":"date","description":"The work order's due date as an ISO 8601 string","example":"2025-01-15"},"parentWorkOrderId":{"type":"string","description":"The work order's parent work order internal ID"},"location":{"description":"The work order's location","allOf":[{"$ref":"#/components/schemas/AddressCfaResponseDto"}]},"priority":{"type":"string","enum":["000_low","010_normal","020_high","030_critical"],"description":"The work order's priority"},"externalReference":{"type":"string","description":"The work order's external reference"},"relatedOrganizationId":{"type":"string","description":"The asset's manufacturer organization internal ID"},"relatedOrganization":{"description":"The asset's manufacturer organization (only if relatedOrganization is included in associations)","allOf":[{"$ref":"#/components/schemas/OrganizationInfoCfaResponseDto"}]},"relatedAssetIds":{"description":"The work order's related asset internal IDs","type":"array","items":{"type":"string"}},"relatedAssets":{"description":"The work order's related assets (only if relatedAssets is included in associations)","type":"array","items":{"$ref":"#/components/schemas/AssetInfoCfaResponseDto"}},"relatedTicketId":{"type":"string","description":"The work order's related ticket internal ID"},"relatedCaseId":{"type":"string","description":"This field is deprecated, use relatedTicketId instead. The work order's related ticket internal ID."},"typeReference":{"type":"string","description":"The work order's type reference"},"statusReference":{"type":"string","description":"The work order's status reference"},"customPropertyValues":{"description":"The work order's custom properties","type":"array","items":{"$ref":"#/components/schemas/CustomPropertyValueCfaResponseDto"}},"assignedContactIds":{"description":"The work order's performing contact internal IDs","type":"array","items":{"type":"string"}},"assignedGroupIds":{"description":"The work order's performing group internal IDs","type":"array","items":{"type":"string"}},"responsibleGroupId":{"type":"string","description":"The work order's responsible group internal ID"},"responsibleContactId":{"type":"string","description":"The work order's responsible contact internal ID"},"totalDurationInSeconds":{"type":"number","description":"The work order's total duration in seconds"},"estimatedDurationInSeconds":{"type":"number","description":"The work order's estimated duration in seconds"},"procedureValues":{"description":"The work order's procedure summaries","type":"array","items":{"$ref":"#/components/schemas/WorkOrderProcedureValueCfaResponseDto"}}},"required":["id","createdAt","updatedAt","counter","createdByType","subject","statusReference","customPropertyValues","assignedContactIds","assignedGroupIds"]},"CustomPropertyValueCreateCfaBodyDto":{"type":"object","properties":{"reference":{"type":"string","description":"The reference of the custom property the value is assigned to"},"value":{"anyOf":[{"type":"string","format":"date","description":"Date value (DATE type). Format: YYYY-MM-DD (e.g., 2025-10-13)"},{"type":"string","format":"date-time","description":"DateTime value (DATETIME type). Format: ISO 8601 (e.g., 2025-10-13T16:49:00Z)"},{"type":"string","format":"uri","description":"URL value (URL type). Format: Valid URI (e.g., https://example.com/path)"},{"type":"string","description":"Text value (TEXT and TEXTAREA types). Plain text string of any length"},{"type":"number","description":"Numeric value (NUMBER type). Integer or decimal number"},{"type":"boolean","description":"Boolean value (CHECKBOX type). Accepts: true or false"},{"type":"array","items":{"type":"string"},"description":"Array of string IDs (SELECT, ASSET_SELECT, CONTACT_SELECT, ORGANIZATION_SELECT types). Format: [\"id1\", \"id2\", ...]"}],"description":"The value of the custom property"}},"required":["reference","value"]},"WorkOrderCfaCreateOneBodyDto":{"type":"object","properties":{"subject":{"type":"string","description":"The Work Order's subject"},"description":{"type":"string","description":"A detailed description of the Work Order"},"statusReference":{"type":"string","description":"The reference of the Work Order status."},"typeReference":{"type":"string","description":"The reference of the Work Order type."},"priority":{"type":"string","enum":["000_low","010_normal","020_high","030_critical"],"description":"The priority of the Work Order.","default":"000_low"},"dueDate":{"type":"string","description":"The due date of the Work Order.","format":"YYYY-MM-DD","example":"2025-01-31"},"externalReference":{"type":"string","description":"The external reference (ERP Reference) of the Work Order."},"parentWorkOrderExternalReference":{"type":"string","description":"The parent Work Order external reference (ERP Reference) of the Work Order. (Provide either this or the parentWorkOrderId)"},"parentWorkOrderId":{"type":"string","description":"The parent Work Order internal ID of the Work Order. (Provide either this or the parentWorkOrderExternalReference)"},"relatedOrganizationId":{"type":"string","description":"The related organization internal ID of the Work Order."},"relatedAssetIds":{"description":"The related asset internal IDs of the Work Order.","type":"array","items":{"type":"string"}},"customPropertyValues":{"description":"The custom property values of the Work Order.","type":"array","items":{"$ref":"#/components/schemas/CustomPropertyValueCreateCfaBodyDto"}},"startDate":{"type":"string","description":"The start date of the work order. Must be provided together with endDate.","format":"YYYY-MM-DDTHH:mm:ss.SSSZ","example":"2023-12-10T10:00:00.000Z"},"endDate":{"type":"string","description":"The end date of the work order. Must be provided together with startDate. Must be after startDate.","format":"YYYY-MM-DDTHH:mm:ss.SSSZ","example":"2023-12-10T18:00:00.000Z"},"isFullDay":{"type":"boolean","description":"Whether the work order is planned for the full day. This field is ignored if startDate and endDate are not provided. When true, startDate will be set to the beginning of the day and endDate to the end of the day in the specified timezone."},"tz":{"type":"string","enum":["Africa/Algiers","Atlantic/Cape_Verde","Africa/Ndjamena","Africa/Abidjan","Africa/Bamako","Africa/Banjul","Africa/Conakry","Africa/Dakar","Africa/Freetown","Africa/Lome","Africa/Nouakchott","Africa/Ouagadougou","Atlantic/St_Helena","Africa/Cairo","Africa/Accra","Africa/Bissau","Africa/Nairobi","Africa/Addis_Ababa","Africa/Asmara","Africa/Dar_es_Salaam","Africa/Djibouti","Africa/Kampala","Africa/Mogadishu","Indian/Antananarivo","Indian/Comoro","Indian/Mayotte","Africa/Monrovia","Africa/Tripoli","Indian/Mauritius","Africa/Casablanca","Africa/El_Aaiun","Africa/Maputo","Africa/Blantyre","Africa/Bujumbura","Africa/Gaborone","Africa/Harare","Africa/Kigali","Africa/Lubumbashi","Africa/Lusaka","Africa/Windhoek","Africa/Lagos","Africa/Bangui","Africa/Brazzaville","Africa/Douala","Africa/Kinshasa","Africa/Libreville","Africa/Luanda","Africa/Malabo","Africa/Niamey","Africa/Porto-Novo","Indian/Reunion","Africa/Sao_Tome","Indian/Mahe","Africa/Johannesburg","Africa/Maseru","Africa/Mbabane","Africa/Khartoum","Africa/Juba","Africa/Tunis","Antarctica/Casey","Antarctica/Davis","Antarctica/Mawson","Indian/Kerguelen","Antarctica/DumontDUrville","Antarctica/Syowa","Antarctica/Troll","Antarctica/Vostok","Antarctica/Rothera","Asia/Kabul","Asia/Yerevan","Asia/Baku","Asia/Dhaka","Asia/Thimphu","Indian/Chagos","Asia/Brunei","Asia/Yangon","Asia/Shanghai","Asia/Urumqi","Asia/Hong_Kong","Asia/Taipei","Asia/Macau","Asia/Nicosia","Asia/Famagusta","Europe/Nicosia","Asia/Tbilisi","Asia/Dili","Asia/Kolkata","Asia/Jakarta","Asia/Pontianak","Asia/Makassar","Asia/Jayapura","Asia/Tehran","Asia/Baghdad","Asia/Jerusalem","Asia/Tokyo","Asia/Amman","Asia/Almaty","Asia/Qyzylorda","Asia/Qostanay","Asia/Aqtobe","Asia/Aqtau","Asia/Atyrau","Asia/Oral","Asia/Bishkek","Asia/Seoul","Asia/Pyongyang","Asia/Beirut","Asia/Kuala_Lumpur","Asia/Kuching","Indian/Maldives","Asia/Hovd","Asia/Ulaanbaatar","Asia/Choibalsan","Asia/Kathmandu","Asia/Karachi","Asia/Gaza","Asia/Hebron","Asia/Manila","Asia/Qatar","Asia/Bahrain","Asia/Riyadh","Asia/Aden","Asia/Kuwait","Asia/Singapore","Asia/Colombo","Asia/Damascus","Asia/Dushanbe","Asia/Bangkok","Asia/Phnom_Penh","Asia/Vientiane","Asia/Ashgabat","Asia/Dubai","Asia/Muscat","Asia/Samarkand","Asia/Tashkent","Asia/Ho_Chi_Minh","Australia/Darwin","Australia/Perth","Australia/Eucla","Australia/Brisbane","Australia/Lindeman","Australia/Adelaide","Australia/Hobart","Australia/Currie","Australia/Melbourne","Australia/Sydney","Australia/Broken_Hill","Australia/Lord_Howe","Antarctica/Macquarie","Indian/Christmas","Indian/Cocos","Pacific/Fiji","Pacific/Gambier","Pacific/Marquesas","Pacific/Tahiti","Pacific/Guam","Pacific/Saipan","Pacific/Tarawa","Pacific/Enderbury","Pacific/Kiritimati","Pacific/Majuro","Pacific/Kwajalein","Pacific/Chuuk","Pacific/Pohnpei","Pacific/Kosrae","Pacific/Nauru","Pacific/Noumea","Pacific/Auckland","Pacific/Chatham","Antarctica/McMurdo","Pacific/Rarotonga","Pacific/Niue","Pacific/Norfolk","Pacific/Palau","Pacific/Port_Moresby","Pacific/Bougainville","Pacific/Pitcairn","Pacific/Pago_Pago","Pacific/Midway","Pacific/Apia","Pacific/Guadalcanal","Pacific/Fakaofo","Pacific/Tongatapu","Pacific/Funafuti","Pacific/Wake","Pacific/Efate","Pacific/Wallis","Africa/Asmera","Africa/Timbuktu","America/Argentina/ComodRivadavia","America/Atka","America/Buenos_Aires","America/Catamarca","America/Coral_Harbour","America/Cordoba","America/Ensenada","America/Fort_Wayne","America/Indianapolis","America/Jujuy","America/Knox_IN","America/Louisville","America/Mendoza","America/Montreal","America/Porto_Acre","America/Rosario","America/Santa_Isabel","America/Shiprock","America/Virgin","Antarctica/South_Pole","Asia/Ashkhabad","Asia/Calcutta","Asia/Chongqing","Asia/Chungking","Asia/Dacca","Asia/Harbin","Asia/Kashgar","Asia/Katmandu","Asia/Macao","Asia/Rangoon","Asia/Saigon","Asia/Tel_Aviv","Asia/Thimbu","Asia/Ujung_Pandang","Asia/Ulan_Bator","Atlantic/Faeroe","Atlantic/Jan_Mayen","Australia/ACT","Australia/Canberra","Australia/LHI","Australia/NSW","Australia/North","Australia/Queensland","Australia/South","Australia/Tasmania","Australia/Victoria","Australia/West","Australia/Yancowinna","Brazil/Acre","Brazil/DeNoronha","Brazil/East","Brazil/West","Canada/Atlantic","Canada/Central","Canada/Eastern","Canada/Mountain","Canada/Newfoundland","Canada/Pacific","Canada/Saskatchewan","Canada/Yukon","Chile/Continental","Chile/EasterIsland","Etc/UCT","Etc/UTC","Europe/Belfast","Europe/Tiraspol","Mexico/BajaNorte","Mexico/BajaSur","Mexico/General","Pacific/Johnston","Pacific/Ponape","Pacific/Samoa","Pacific/Truk","Pacific/Yap","US/Alaska","US/Aleutian","US/Arizona","US/Central","US/East-Indiana","US/Eastern","US/Hawaii","US/Indiana-Starke","US/Michigan","US/Mountain","US/Pacific","US/Samoa","Europe/London","Europe/Jersey","Europe/Guernsey","Europe/Isle_of_Man","Europe/Dublin","Europe/Tirane","Europe/Andorra","Europe/Vienna","Europe/Minsk","Europe/Brussels","Europe/Sofia","Europe/Prague","Europe/Copenhagen","Atlantic/Faroe","America/Danmarkshavn","America/Scoresbysund","America/Godthab","America/Thule","Europe/Tallinn","Europe/Helsinki","Europe/Mariehamn","Europe/Paris","Europe/Berlin","Europe/Busingen","Europe/Gibraltar","Europe/Athens","Europe/Budapest","Atlantic/Reykjavik","Europe/Rome","Europe/Vatican","Europe/San_Marino","Europe/Riga","Europe/Vaduz","Europe/Vilnius","Europe/Luxembourg","Europe/Malta","Europe/Chisinau","Europe/Monaco","Europe/Amsterdam","Europe/Oslo","Arctic/Longyearbyen","Europe/Warsaw","Europe/Lisbon","Atlantic/Azores","Atlantic/Madeira","Europe/Bucharest","Europe/Kaliningrad","Europe/Moscow","Europe/Simferopol","Europe/Astrakhan","Europe/Volgograd","Europe/Saratov","Europe/Kirov","Europe/Samara","Europe/Ulyanovsk","Asia/Yekaterinburg","Asia/Omsk","Asia/Barnaul","Asia/Novosibirsk","Asia/Tomsk","Asia/Novokuznetsk","Asia/Krasnoyarsk","Asia/Irkutsk","Asia/Chita","Asia/Yakutsk","Asia/Vladivostok","Asia/Khandyga","Asia/Sakhalin","Asia/Magadan","Asia/Srednekolymsk","Asia/Ust-Nera","Asia/Kamchatka","Asia/Anadyr","Europe/Belgrade","Europe/Ljubljana","Europe/Podgorica","Europe/Sarajevo","Europe/Skopje","Europe/Zagreb","Europe/Bratislava","Europe/Madrid","Africa/Ceuta","Atlantic/Canary","Europe/Stockholm","Europe/Zurich","Europe/Istanbul","Asia/Istanbul","Europe/Kiev","Europe/Uzhgorod","Europe/Zaporozhye","America/New_York","America/Chicago","America/North_Dakota/Center","America/North_Dakota/New_Salem","America/North_Dakota/Beulah","America/Denver","America/Los_Angeles","America/Juneau","America/Sitka","America/Metlakatla","America/Yakutat","America/Anchorage","America/Nome","America/Adak","Pacific/Honolulu","America/Phoenix","America/Boise","America/Indiana/Indianapolis","America/Indiana/Marengo","America/Indiana/Vincennes","America/Indiana/Tell_City","America/Indiana/Petersburg","America/Indiana/Knox","America/Indiana/Winamac","America/Indiana/Vevay","America/Kentucky/Louisville","America/Kentucky/Monticello","America/Detroit","America/Menominee","America/St_Johns","America/Goose_Bay","America/Halifax","America/Glace_Bay","America/Moncton","America/Blanc-Sablon","America/Toronto","America/Thunder_Bay","America/Nipigon","America/Rainy_River","America/Atikokan","America/Winnipeg","America/Regina","America/Swift_Current","America/Edmonton","America/Vancouver","America/Dawson_Creek","America/Fort_Nelson","America/Creston","America/Pangnirtung","America/Iqaluit","America/Resolute","America/Rankin_Inlet","America/Cambridge_Bay","America/Yellowknife","America/Inuvik","America/Whitehorse","America/Dawson","America/Cancun","America/Merida","America/Matamoros","America/Monterrey","America/Mexico_City","America/Ojinaga","America/Chihuahua","America/Hermosillo","America/Mazatlan","America/Bahia_Banderas","America/Tijuana","America/Nassau","America/Barbados","America/Belize","Atlantic/Bermuda","America/Costa_Rica","America/Havana","America/Santo_Domingo","America/El_Salvador","America/Guatemala","America/Port-au-Prince","America/Tegucigalpa","America/Jamaica","America/Martinique","America/Managua","America/Panama","America/Cayman","America/Puerto_Rico","America/Miquelon","America/Grand_Turk","America/Argentina/Buenos_Aires","America/Argentina/Cordoba","America/Argentina/Salta","America/Argentina/Tucuman","America/Argentina/La_Rioja","America/Argentina/San_Juan","America/Argentina/Jujuy","America/Argentina/Catamarca","America/Argentina/Mendoza","America/Argentina/San_Luis","America/Argentina/Rio_Gallegos","America/Argentina/Ushuaia","America/Aruba","America/La_Paz","America/Noronha","America/Belem","America/Santarem","America/Fortaleza","America/Recife","America/Araguaina","America/Maceio","America/Bahia","America/Sao_Paulo","America/Campo_Grande","America/Cuiaba","America/Porto_Velho","America/Boa_Vista","America/Manaus","America/Eirunepe","America/Rio_Branco","America/Santiago","America/Punta_Arenas","Pacific/Easter","Antarctica/Palmer","America/Bogota","America/Curacao","America/Lower_Princes","America/Kralendijk","America/Guayaquil","Pacific/Galapagos","Atlantic/Stanley","America/Cayenne","America/Guyana","America/Asuncion","America/Lima","Atlantic/South_Georgia","America/Paramaribo","America/Port_of_Spain","America/Anguilla","America/Antigua","America/Dominica","America/Grenada","America/Guadeloupe","America/Marigot","America/Montserrat","America/St_Barthelemy","America/St_Kitts","America/St_Lucia","America/St_Thomas","America/St_Vincent","America/Tortola","America/Montevideo","America/Caracas"],"description":"The time zone for the planned work order. This field is ignored if startDate and endDate are not provided. If not provided, the tenant timezone will be used."},"assignedContactIds":{"description":"The performing contact internal IDs for the work order planning.","type":"array","items":{"type":"string"}},"assignedGroupIds":{"description":"The performing group internal IDs for the work order planning.","type":"array","items":{"type":"string"}},"responsibleGroupId":{"type":"string","description":"The responsible group internal ID for the work order."},"responsibleContactId":{"type":"string","description":"The responsible contact internal ID for the work order."},"estimatedDurationInSeconds":{"type":"number","description":"The estimated duration in seconds for the work order.","example":3600}},"required":["subject"]},"WorkOrderCfaCreateManyChecklistItemBodyDto":{"type":"object","properties":{"title":{"type":"string","description":"The title of the checklist item."},"description":{"type":"string","description":"The description of the checklist item."}},"required":["title"]},"WorkOrderCfaCreateManyChecklistItemsBodyDto":{"type":"object","properties":{"checklist":{"type":"array","items":{"$ref":"#/components/schemas/WorkOrderCfaCreateManyChecklistItemBodyDto"}}},"required":["checklist"]},"CustomPropertyValueUpdateCfaBodyDto":{"type":"object","properties":{"reference":{"type":"string","description":"The reference of the custom property the value is assigned to"},"value":{"anyOf":[{"type":"string","format":"date","description":"Date value (DATE type). Format: YYYY-MM-DD (e.g., 2025-10-13)"},{"type":"string","format":"date-time","description":"DateTime value (DATETIME type). Format: ISO 8601 (e.g., 2025-10-13T16:49:00Z)"},{"type":"string","format":"uri","description":"URL value (URL type). Format: Valid URI (e.g., https://example.com/path)"},{"type":"string","description":"Text value (TEXT and TEXTAREA types). Plain text string of any length"},{"type":"number","description":"Numeric value (NUMBER type). Integer or decimal number"},{"type":"boolean","description":"Boolean value (CHECKBOX type). Accepts: true or false"},{"type":"array","items":{"type":"string"},"description":"Array of string IDs (SELECT, ASSET_SELECT, CONTACT_SELECT, ORGANIZATION_SELECT types). Format: [\"id1\", \"id2\", ...]"}],"nullable":true,"description":"The value of the custom property (pass null to remove the custom property value)"}},"required":["reference","value"]},"WorkOrderCfaUpdateOneBodyDto":{"type":"object","properties":{"subject":{"type":"string","description":"The Work Order's subject"},"description":{"type":"string","description":"A detailed description of the Work Order"},"statusReference":{"type":"string","description":"The reference of the Work Order status."},"typeReference":{"type":"string","description":"The reference of the Work Order type."},"priority":{"type":"string","enum":["000_low","010_normal","020_high","030_critical"],"description":"The priority of the Work Order."},"dueDate":{"type":"string","description":"The due date of the Work Order.","format":"YYYY-MM-DD","example":"2025-01-31"},"externalReference":{"type":"string","description":"The external reference (ERP Reference) of the Work Order."},"parentWorkOrderExternalReference":{"type":"string","description":"The parent Work Order external reference (ERP Reference) of the Work Order. (Provide either this or the parentWorkOrderId)"},"parentWorkOrderId":{"type":"string","description":"The parent Work Order internal ID of the Work Order. (Provide either this or the parentWorkOrderExternalReference)"},"relatedOrganizationId":{"type":"string","description":"The related organization internal ID of the Work Order."},"relatedAssetIds":{"description":"The related asset internal IDs of the Work Order. Please note: all related asset ids are going to be replaced.","type":"array","items":{"type":"string"}},"customPropertyValues":{"description":"The custom property values of the Work Order.","type":"array","items":{"$ref":"#/components/schemas/CustomPropertyValueUpdateCfaBodyDto"}},"startDate":{"type":"string","description":"The start date of the work order. Must be provided together with endDate.","format":"YYYY-MM-DDTHH:mm:ss.SSSZ","example":"2023-12-10T10:00:00.000Z"},"endDate":{"type":"string","description":"The end date of the work order. Must be provided together with startDate. Must be after startDate.","format":"YYYY-MM-DDTHH:mm:ss.SSSZ","example":"2023-12-10T18:00:00.000Z"},"isFullDay":{"type":"boolean","description":"Whether the work order is planned for a full day. This field is ignored if startDate and endDate are not set.","example":false},"tz":{"type":"string","enum":["Africa/Algiers","Atlantic/Cape_Verde","Africa/Ndjamena","Africa/Abidjan","Africa/Bamako","Africa/Banjul","Africa/Conakry","Africa/Dakar","Africa/Freetown","Africa/Lome","Africa/Nouakchott","Africa/Ouagadougou","Atlantic/St_Helena","Africa/Cairo","Africa/Accra","Africa/Bissau","Africa/Nairobi","Africa/Addis_Ababa","Africa/Asmara","Africa/Dar_es_Salaam","Africa/Djibouti","Africa/Kampala","Africa/Mogadishu","Indian/Antananarivo","Indian/Comoro","Indian/Mayotte","Africa/Monrovia","Africa/Tripoli","Indian/Mauritius","Africa/Casablanca","Africa/El_Aaiun","Africa/Maputo","Africa/Blantyre","Africa/Bujumbura","Africa/Gaborone","Africa/Harare","Africa/Kigali","Africa/Lubumbashi","Africa/Lusaka","Africa/Windhoek","Africa/Lagos","Africa/Bangui","Africa/Brazzaville","Africa/Douala","Africa/Kinshasa","Africa/Libreville","Africa/Luanda","Africa/Malabo","Africa/Niamey","Africa/Porto-Novo","Indian/Reunion","Africa/Sao_Tome","Indian/Mahe","Africa/Johannesburg","Africa/Maseru","Africa/Mbabane","Africa/Khartoum","Africa/Juba","Africa/Tunis","Antarctica/Casey","Antarctica/Davis","Antarctica/Mawson","Indian/Kerguelen","Antarctica/DumontDUrville","Antarctica/Syowa","Antarctica/Troll","Antarctica/Vostok","Antarctica/Rothera","Asia/Kabul","Asia/Yerevan","Asia/Baku","Asia/Dhaka","Asia/Thimphu","Indian/Chagos","Asia/Brunei","Asia/Yangon","Asia/Shanghai","Asia/Urumqi","Asia/Hong_Kong","Asia/Taipei","Asia/Macau","Asia/Nicosia","Asia/Famagusta","Europe/Nicosia","Asia/Tbilisi","Asia/Dili","Asia/Kolkata","Asia/Jakarta","Asia/Pontianak","Asia/Makassar","Asia/Jayapura","Asia/Tehran","Asia/Baghdad","Asia/Jerusalem","Asia/Tokyo","Asia/Amman","Asia/Almaty","Asia/Qyzylorda","Asia/Qostanay","Asia/Aqtobe","Asia/Aqtau","Asia/Atyrau","Asia/Oral","Asia/Bishkek","Asia/Seoul","Asia/Pyongyang","Asia/Beirut","Asia/Kuala_Lumpur","Asia/Kuching","Indian/Maldives","Asia/Hovd","Asia/Ulaanbaatar","Asia/Choibalsan","Asia/Kathmandu","Asia/Karachi","Asia/Gaza","Asia/Hebron","Asia/Manila","Asia/Qatar","Asia/Bahrain","Asia/Riyadh","Asia/Aden","Asia/Kuwait","Asia/Singapore","Asia/Colombo","Asia/Damascus","Asia/Dushanbe","Asia/Bangkok","Asia/Phnom_Penh","Asia/Vientiane","Asia/Ashgabat","Asia/Dubai","Asia/Muscat","Asia/Samarkand","Asia/Tashkent","Asia/Ho_Chi_Minh","Australia/Darwin","Australia/Perth","Australia/Eucla","Australia/Brisbane","Australia/Lindeman","Australia/Adelaide","Australia/Hobart","Australia/Currie","Australia/Melbourne","Australia/Sydney","Australia/Broken_Hill","Australia/Lord_Howe","Antarctica/Macquarie","Indian/Christmas","Indian/Cocos","Pacific/Fiji","Pacific/Gambier","Pacific/Marquesas","Pacific/Tahiti","Pacific/Guam","Pacific/Saipan","Pacific/Tarawa","Pacific/Enderbury","Pacific/Kiritimati","Pacific/Majuro","Pacific/Kwajalein","Pacific/Chuuk","Pacific/Pohnpei","Pacific/Kosrae","Pacific/Nauru","Pacific/Noumea","Pacific/Auckland","Pacific/Chatham","Antarctica/McMurdo","Pacific/Rarotonga","Pacific/Niue","Pacific/Norfolk","Pacific/Palau","Pacific/Port_Moresby","Pacific/Bougainville","Pacific/Pitcairn","Pacific/Pago_Pago","Pacific/Midway","Pacific/Apia","Pacific/Guadalcanal","Pacific/Fakaofo","Pacific/Tongatapu","Pacific/Funafuti","Pacific/Wake","Pacific/Efate","Pacific/Wallis","Africa/Asmera","Africa/Timbuktu","America/Argentina/ComodRivadavia","America/Atka","America/Buenos_Aires","America/Catamarca","America/Coral_Harbour","America/Cordoba","America/Ensenada","America/Fort_Wayne","America/Indianapolis","America/Jujuy","America/Knox_IN","America/Louisville","America/Mendoza","America/Montreal","America/Porto_Acre","America/Rosario","America/Santa_Isabel","America/Shiprock","America/Virgin","Antarctica/South_Pole","Asia/Ashkhabad","Asia/Calcutta","Asia/Chongqing","Asia/Chungking","Asia/Dacca","Asia/Harbin","Asia/Kashgar","Asia/Katmandu","Asia/Macao","Asia/Rangoon","Asia/Saigon","Asia/Tel_Aviv","Asia/Thimbu","Asia/Ujung_Pandang","Asia/Ulan_Bator","Atlantic/Faeroe","Atlantic/Jan_Mayen","Australia/ACT","Australia/Canberra","Australia/LHI","Australia/NSW","Australia/North","Australia/Queensland","Australia/South","Australia/Tasmania","Australia/Victoria","Australia/West","Australia/Yancowinna","Brazil/Acre","Brazil/DeNoronha","Brazil/East","Brazil/West","Canada/Atlantic","Canada/Central","Canada/Eastern","Canada/Mountain","Canada/Newfoundland","Canada/Pacific","Canada/Saskatchewan","Canada/Yukon","Chile/Continental","Chile/EasterIsland","Etc/UCT","Etc/UTC","Europe/Belfast","Europe/Tiraspol","Mexico/BajaNorte","Mexico/BajaSur","Mexico/General","Pacific/Johnston","Pacific/Ponape","Pacific/Samoa","Pacific/Truk","Pacific/Yap","US/Alaska","US/Aleutian","US/Arizona","US/Central","US/East-Indiana","US/Eastern","US/Hawaii","US/Indiana-Starke","US/Michigan","US/Mountain","US/Pacific","US/Samoa","Europe/London","Europe/Jersey","Europe/Guernsey","Europe/Isle_of_Man","Europe/Dublin","Europe/Tirane","Europe/Andorra","Europe/Vienna","Europe/Minsk","Europe/Brussels","Europe/Sofia","Europe/Prague","Europe/Copenhagen","Atlantic/Faroe","America/Danmarkshavn","America/Scoresbysund","America/Godthab","America/Thule","Europe/Tallinn","Europe/Helsinki","Europe/Mariehamn","Europe/Paris","Europe/Berlin","Europe/Busingen","Europe/Gibraltar","Europe/Athens","Europe/Budapest","Atlantic/Reykjavik","Europe/Rome","Europe/Vatican","Europe/San_Marino","Europe/Riga","Europe/Vaduz","Europe/Vilnius","Europe/Luxembourg","Europe/Malta","Europe/Chisinau","Europe/Monaco","Europe/Amsterdam","Europe/Oslo","Arctic/Longyearbyen","Europe/Warsaw","Europe/Lisbon","Atlantic/Azores","Atlantic/Madeira","Europe/Bucharest","Europe/Kaliningrad","Europe/Moscow","Europe/Simferopol","Europe/Astrakhan","Europe/Volgograd","Europe/Saratov","Europe/Kirov","Europe/Samara","Europe/Ulyanovsk","Asia/Yekaterinburg","Asia/Omsk","Asia/Barnaul","Asia/Novosibirsk","Asia/Tomsk","Asia/Novokuznetsk","Asia/Krasnoyarsk","Asia/Irkutsk","Asia/Chita","Asia/Yakutsk","Asia/Vladivostok","Asia/Khandyga","Asia/Sakhalin","Asia/Magadan","Asia/Srednekolymsk","Asia/Ust-Nera","Asia/Kamchatka","Asia/Anadyr","Europe/Belgrade","Europe/Ljubljana","Europe/Podgorica","Europe/Sarajevo","Europe/Skopje","Europe/Zagreb","Europe/Bratislava","Europe/Madrid","Africa/Ceuta","Atlantic/Canary","Europe/Stockholm","Europe/Zurich","Europe/Istanbul","Asia/Istanbul","Europe/Kiev","Europe/Uzhgorod","Europe/Zaporozhye","America/New_York","America/Chicago","America/North_Dakota/Center","America/North_Dakota/New_Salem","America/North_Dakota/Beulah","America/Denver","America/Los_Angeles","America/Juneau","America/Sitka","America/Metlakatla","America/Yakutat","America/Anchorage","America/Nome","America/Adak","Pacific/Honolulu","America/Phoenix","America/Boise","America/Indiana/Indianapolis","America/Indiana/Marengo","America/Indiana/Vincennes","America/Indiana/Tell_City","America/Indiana/Petersburg","America/Indiana/Knox","America/Indiana/Winamac","America/Indiana/Vevay","America/Kentucky/Louisville","America/Kentucky/Monticello","America/Detroit","America/Menominee","America/St_Johns","America/Goose_Bay","America/Halifax","America/Glace_Bay","America/Moncton","America/Blanc-Sablon","America/Toronto","America/Thunder_Bay","America/Nipigon","America/Rainy_River","America/Atikokan","America/Winnipeg","America/Regina","America/Swift_Current","America/Edmonton","America/Vancouver","America/Dawson_Creek","America/Fort_Nelson","America/Creston","America/Pangnirtung","America/Iqaluit","America/Resolute","America/Rankin_Inlet","America/Cambridge_Bay","America/Yellowknife","America/Inuvik","America/Whitehorse","America/Dawson","America/Cancun","America/Merida","America/Matamoros","America/Monterrey","America/Mexico_City","America/Ojinaga","America/Chihuahua","America/Hermosillo","America/Mazatlan","America/Bahia_Banderas","America/Tijuana","America/Nassau","America/Barbados","America/Belize","Atlantic/Bermuda","America/Costa_Rica","America/Havana","America/Santo_Domingo","America/El_Salvador","America/Guatemala","America/Port-au-Prince","America/Tegucigalpa","America/Jamaica","America/Martinique","America/Managua","America/Panama","America/Cayman","America/Puerto_Rico","America/Miquelon","America/Grand_Turk","America/Argentina/Buenos_Aires","America/Argentina/Cordoba","America/Argentina/Salta","America/Argentina/Tucuman","America/Argentina/La_Rioja","America/Argentina/San_Juan","America/Argentina/Jujuy","America/Argentina/Catamarca","America/Argentina/Mendoza","America/Argentina/San_Luis","America/Argentina/Rio_Gallegos","America/Argentina/Ushuaia","America/Aruba","America/La_Paz","America/Noronha","America/Belem","America/Santarem","America/Fortaleza","America/Recife","America/Araguaina","America/Maceio","America/Bahia","America/Sao_Paulo","America/Campo_Grande","America/Cuiaba","America/Porto_Velho","America/Boa_Vista","America/Manaus","America/Eirunepe","America/Rio_Branco","America/Santiago","America/Punta_Arenas","Pacific/Easter","Antarctica/Palmer","America/Bogota","America/Curacao","America/Lower_Princes","America/Kralendijk","America/Guayaquil","Pacific/Galapagos","Atlantic/Stanley","America/Cayenne","America/Guyana","America/Asuncion","America/Lima","Atlantic/South_Georgia","America/Paramaribo","America/Port_of_Spain","America/Anguilla","America/Antigua","America/Dominica","America/Grenada","America/Guadeloupe","America/Marigot","America/Montserrat","America/St_Barthelemy","America/St_Kitts","America/St_Lucia","America/St_Thomas","America/St_Vincent","America/Tortola","America/Montevideo","America/Caracas"],"description":"The time zone for the planned work order. This field is ignored if startDate and endDate are not set.","example":"Europe/Berlin"},"assignedContactIds":{"description":"The performing contact internal IDs for the work order planning. Please note: all performing contact ids are going to be replaced by the provided values.","type":"array","items":{"type":"string"}},"assignedGroupIds":{"description":"The performing group internal IDs for the work order planning. Please note: all performing group ids are going to be replaced by the provided values.","type":"array","items":{"type":"string"}},"responsibleGroupId":{"type":"string","description":"The responsible group internal ID of the Work Order."},"responsibleContactId":{"type":"string","description":"The responsible contact internal ID of the Work Order."},"estimatedDurationInSeconds":{"type":"number","description":"The estimated duration of the work order in seconds.","example":3600}}},"WorkOrderTimeEntryCfaResponseDto":{"type":"object","properties":{"performingPersonId":{"type":"string","description":"The internal ID of the performing person."},"startTime":{"type":"string","format":"date-time","description":"The start date and time of the time entry."},"endTime":{"type":"string","format":"date-time","description":"The end date and time of the time entry."},"durationInSeconds":{"type":"number","description":"The duration of the time entry in seconds."}},"required":["performingPersonId","startTime","endTime","durationInSeconds"]},"WorkOrderTimesCfaResponseDto":{"type":"object","properties":{"totalDurationInSeconds":{"type":"number","description":"The total duration of the time entries in seconds."},"timeEntries":{"type":"array","items":{"$ref":"#/components/schemas/WorkOrderTimeEntryCfaResponseDto"}}},"required":["totalDurationInSeconds","timeEntries"]},"PartTypeInfoCfaResponseDto":{"type":"object","properties":{"id":{"type":"string","description":"The part's internal ID."},"partNumber":{"type":"string","description":"The part's unique number."},"externalReference":{"type":"string","description":"The part's external reference."},"name":{"type":"string","description":"The part's name."}},"required":["id","partNumber","name"]},"WorkOrderCfaPartStockChangeResponseDto":{"type":"object","properties":{"id":{"type":"string","description":"The stock change's internal ID."},"createdAt":{"type":"string","format":"date-time","description":"The creation date of the stock change"},"updatedAt":{"type":"string","format":"date-time","description":"The last update date of the stock change"},"change":{"type":"number","description":"The change amount"},"action":{"type":"string","enum":["created","added","taken","reserved","reservationCanceled","planned","plannedCanceled"],"description":"The action type of the stock change"},"partType":{"description":"The part type associated with this stock change","allOf":[{"$ref":"#/components/schemas/PartTypeInfoCfaResponseDto"}]},"storageAsset":{"description":"The storage asset where the stock change occurred","allOf":[{"$ref":"#/components/schemas/AssetInfoCfaResponseDto"}]}},"required":["id","createdAt","updatedAt","change","action"]},"WorkOrdersCfaPartStockChangesFindManyResponseDto":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/WorkOrderCfaPartStockChangeResponseDto"}},"count":{"type":"object"}},"required":["data","count"]},"WorkOrdersCfaPartStockChangeCreateOneBodyDto":{"type":"object","properties":{"partTypeNumber":{"type":"string","description":"The part number"},"storageAssetNumber":{"type":"string","description":"The storage asset number"},"change":{"type":"number","description":"The change amount"},"comment":{"type":"string","description":"Optional comment for the stock change"},"action":{"type":"string","enum":["created","added","taken","reserved","reservationCanceled","planned","plannedCanceled"],"default":"planned","description":"The type of stock change action. Defaults to planned."}},"required":["partTypeNumber","storageAssetNumber","change"]},"WorkOrdersCfaPartStockChangeCreateOneResponseDto":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the created part stock change"}},"required":["id"]},"WorkOrderCfaAddProcedureBodyDto":{"type":"object","properties":{"procedureTemplateId":{"type":"string","description":"The internal ID of the Procedure Template to add to the Work Order. A new procedure instance is created from it. Per-type procedure limits are enforced by the Work Order."}},"required":["procedureTemplateId"]},"WorkOrderCfaAddProcedureResponseDto":{"type":"object","properties":{"id":{"type":"string","description":"The ID of the created procedure instance"}},"required":["id"]},"InputNumberCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"number"},"valuePopulated":{"type":"number"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"InputTextCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"string"},"valuePopulated":{"type":"string"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"CheckboxCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"boolean"},"valuePopulated":{"type":"boolean"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"AssetBasicResponseDto":{"type":"object","properties":{"_id":{"type":"string"},"serialNumber":{"type":"string"},"assetTypeId":{"type":"string"},"assetTypeName":{"type":"string"},"status":{"type":"string","enum":["new","running","warning","stopped","inactive"]},"criticality":{"type":"string","enum":["010_nonCritical","020_important","030_coreProcess","040_safety"]},"name":{"type":"string"},"assetTypeImageId":{"type":"string"},"imageId":{"type":"string"},"customerId":{"type":"string"},"ancestorIds":{"type":"array","items":{"type":"string"}},"assetTypeCategory":{"type":"object"},"floorPlanAssetId":{"type":"string"}},"required":["_id","serialNumber","assetTypeId","assetTypeName","status","criticality","ancestorIds","assetTypeCategory"]},"UnknownObjectResponseDto":{"type":"object","properties":{"_id":{"type":"string"},"_type":{"type":"object"}},"required":["_id","_type"]},"RembergAssetSelectCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"array","items":{"type":"string"}},"valuePopulated":{"items":{"oneOf":[{"$ref":"#/components/schemas/AssetBasicResponseDto"},{"$ref":"#/components/schemas/UnknownObjectResponseDto"}]},"type":"array"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"PhoneNumberResponseDto":{"type":"object","properties":{"number":{"type":"string","pattern":"^[0-9 (,),/, ,-]*$"},"countryPrefix":{"type":"string","pattern":"^[0-9]{1,3}$"}}},"DateBasedHourlyRateResponseDto":{"type":"object","properties":{"rate":{"type":"number"},"effectiveFrom":{"type":"object"},"effectiveFromUtc":{"type":"object"}},"required":["rate","effectiveFrom","effectiveFromUtc"]},"ContactCostConfigResponseDto":{"type":"object","properties":{"fallbackRate":{"type":"number"},"dateBasedRates":{"type":"array","items":{"$ref":"#/components/schemas/DateBasedHourlyRateResponseDto"}}},"required":["dateBasedRates"]},"ContactBasicResponseDto":{"type":"object","properties":{"_id":{"type":"string"},"firstName":{"type":"string"},"lastName":{"type":"string"},"organizationId":{"type":"string"},"primaryEmail":{"type":"string"},"position":{"type":"string"},"primaryPhoneNumber":{"$ref":"#/components/schemas/PhoneNumberResponseDto"},"profilePictureId":{"type":"string"},"rembergUserId":{"type":"string"},"currentHourlyRate":{"type":"number"},"costConfig":{"$ref":"#/components/schemas/ContactCostConfigResponseDto"}},"required":["_id","firstName","lastName","organizationId"]},"RembergContactSelectCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"array","items":{"type":"string"}},"valuePopulated":{"items":{"oneOf":[{"$ref":"#/components/schemas/ContactBasicResponseDto"},{"$ref":"#/components/schemas/UnknownObjectResponseDto"}]},"type":"array"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"RembergDateCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"object"},"valuePopulated":{"type":"string"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"RembergDatetimeCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"object"},"valuePopulated":{"type":"string"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"PhoneNumberEntryResponseDto":{"type":"object","properties":{"id":{"type":"number"},"label":{"type":"string"},"phoneNumber":{"$ref":"#/components/schemas/PhoneNumberResponseDto"}},"required":["id","label","phoneNumber"]},"GeocodingResultResponseDto":{"type":"object","properties":{"geocodingFailure":{"type":"boolean"},"geocodingQuery":{"type":"string"},"geocodingError":{"type":"object"},"geocodingData":{"type":"object"}}},"AddressResponseDto":{"type":"object","properties":{"company":{"type":"string"},"other":{"type":"string"},"street":{"type":"string"},"streetNumber":{"type":"string"},"zipPostCode":{"type":"string"},"city":{"type":"string"},"countryProvince":{"type":"string"},"country":{"type":"string"},"geocodingResult":{"$ref":"#/components/schemas/GeocodingResultResponseDto"},"latitude":{"type":"number"},"longitude":{"type":"number"}}},"OrganizationBasicResponseDto":{"type":"object","properties":{"_id":{"type":"string"},"name":{"type":"string"},"logoFileId":{"type":"string"},"phoneNumbers":{"type":"array","items":{"$ref":"#/components/schemas/PhoneNumberEntryResponseDto"}},"shippingAddress":{"type":"array","items":{"$ref":"#/components/schemas/AddressResponseDto"}},"externalReference":{"type":"string"},"customTagIds":{"type":"array","items":{"type":"string"}},"websiteUrl":{"type":"string"},"ownerContactId":{"type":"string"}},"required":["_id","name","customTagIds"]},"RembergOrganizationSelectCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"array","items":{"type":"string"}},"valuePopulated":{"items":{"oneOf":[{"$ref":"#/components/schemas/OrganizationBasicResponseDto"},{"$ref":"#/components/schemas/UnknownObjectResponseDto"}]},"type":"array"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"SelectCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"array","items":{"type":"string"}},"valuePopulated":{"type":"array","items":{"type":"string"}},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"TextareaCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"string"},"valuePopulated":{"type":"string"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"UrlCustomPropertyValueResponseDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"string"},"valuePopulated":{"type":"string"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value","reference"]},"CustomPropertyValueCreateOrUpdateBodyDto":{"type":"object","properties":{"customPropertyId":{"type":"string"},"propertyType":{"type":"string","enum":["INPUT_TEXT","TEXTAREA","CHECKBOX","SELECT","URL","INPUT_NUMBER","REMBERG_ASSET_SELECT","REMBERG_ORGANIZATION_SELECT","REMBERG_CONTACT_SELECT","REMBERG_DATE","REMBERG_DATETIME"]},"value":{"type":"object"},"reference":{"type":"string"}},"required":["customPropertyId","propertyType","value"]}}}}